[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#47873] [PATCH] gnu: Add emacs-ibuffer-vc.
From: |
Alexandr Vityazev |
Subject: |
[bug#47873] [PATCH] gnu: Add emacs-ibuffer-vc. |
Date: |
Sun, 18 Apr 2021 15:52:43 +0000 |
---
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 1c449eb606..9074faf83b 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -27668,3 +27668,27 @@ quasi-prefix map, with many useful bindings. These
bindings are
shorter than usual, using mostly unprefixed keys.")
(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 VC project, or show VC status")
+ (description
+ "Adds functionality to ibuffer for grouping buffers by their parent
+vc root directory, and for displaying and/or sorting by the vc
+status of listed files.")
+ (license license:gpl3+)))
--
2.31.1
--
Alexandr Vityazev
- [bug#47873] [PATCH] gnu: Add emacs-ibuffer-vc.,
Alexandr Vityazev <=