diff options
author | Alexandr Vityazev <avityazev@posteo.org> | 2021-04-18 15:52:43 +0000 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2021-04-23 10:48:49 +0200 |
commit | d64a62a0059894d9afebd31410556a414152abc8 (patch) | |
tree | da13d1394eeb8fafb09c1c05da8589b579bc1103 /gnu/packages/emacs-xyz.scm | |
parent | fe6e477dfbcf39d5a6a3a11bf0bf86651a60fa7c (diff) | |
download | guix-d64a62a0059894d9afebd31410556a414152abc8.tar guix-d64a62a0059894d9afebd31410556a414152abc8.tar.gz |
gnu: Add emacs-ibuffer-vc.
* gnu/packages/emacs-xyz.scm (emacs-ibuffer-vc): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Diffstat (limited to 'gnu/packages/emacs-xyz.scm')
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 5efa470470..f7839cf6e6 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -17332,6 +17332,28 @@ within Emacs.") grouping buffers by their projectile root directory.") (license license:gpl3+))) +(define-public emacs-ibuffer-vc + (package + (name "emacs-ibuffer-vc") + (version "0.11") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/purcell/ibuffer-vc") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1mgn7b786j4hwq1ks012hxxgvrfn5rz90adi2j190gmjz60rc5g5")))) + (build-system emacs-build-system) + (home-page "https://github.com/purcell/ibuffer-vc") + (synopsis "Group Ibuffer's list by revision control system indications") + (description + "Ibuffer-VC adds functionality to Ibuffer for grouping buffers by their +parent revision control system root directory, and for displaying, or sorting, +by the status of listed files.") + (license license:gpl3+))) + (define-public emacs-elm-mode (package (name "emacs-elm-mode") @@ -27711,4 +27733,3 @@ complementary packages.") quasi-prefix map, with many useful bindings. These bindings are shorter than usual, using mostly unprefixed keys.") (license license:gpl3+))) - |