[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: Add emacs-project-tab-groups.
From: |
guix-commits |
Subject: |
branch master updated: gnu: Add emacs-project-tab-groups. |
Date: |
Wed, 28 Feb 2024 08:54:56 -0500 |
This is an automated email from the git hooks/post-receive script.
rekado pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new a052882c03 gnu: Add emacs-project-tab-groups.
a052882c03 is described below
commit a052882c03f905218ff13fed8c851bdb80dd7a8f
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Wed Feb 28 14:54:09 2024 +0100
gnu: Add emacs-project-tab-groups.
* gnu/packages/emacs-xyz.scm (emacs-project-tab-groups): New variable.
Change-Id: If190fa02490ce952512ea3abf3dc4b3f990778a5
---
gnu/packages/emacs-xyz.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 6414c98fa9..1a6606252c 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -1378,6 +1378,30 @@ some utility functions, and commands using that
infrastructure.")
its mode line.")
(license license:gpl3+))))
+(define-public emacs-project-tab-groups
+ (let ((commit "2658405d5f3c539fbd9ccf95297a016a2c91816a")
+ (revision "1"))
+ (package
+ (name "emacs-project-tab-groups")
+ (version (git-version "0.1" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/fritzgrabo/project-tab-groups.git")
+ (commit commit)))
+ (sha256
+ (base32 "1zg9kxyjz942ib9lii0in67hwqil2xlz78vjm1qqypw3zaivhh7p"))))
+ (build-system emacs-build-system)
+ (home-page "https://github.com/fritzgrabo/project-tab-groups")
+ (synopsis "Support a \"one tab group per project\" workflow")
+ (description "This package provides a global minor mode that enhances the
+Emacs built-in @code{project.el} library to support keeping projects isolated
+in named tab groups. This package automates the steps you’d otherwise need to
+do manually if you wanted to keep the buffers of a project neatly isolated in
+separate, named tab groups.")
+ (license license:gpl3+))))
+
(define-public emacs-golden-ratio
(let ((commit "375c9f287dfad68829582c1e0a67d0c18119dab9")
(revision "0"))
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: Add emacs-project-tab-groups.,
guix-commits <=