gnu: Add emacs-diff-hl.
* gnu/packages/emacs.scm (emacs-diff-hl): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
73138fd146
commit
42e891c27b
1 changed files with 22 additions and 0 deletions
|
@ -5084,6 +5084,28 @@ (define-public emacs-adaptive-wrap
|
|||
actually changing the buffer's text.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public emacs-diff-hl
|
||||
(package
|
||||
(name "emacs-diff-hl")
|
||||
(version "1.8.4")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "http://elpa.gnu.org/packages/diff-hl-"
|
||||
version ".tar"))
|
||||
(sha256
|
||||
(base32
|
||||
"0axhidc3cym7a2x4rpxf4745qss9s9ajyg4s9h5b4zn7v7fyp71n"))))
|
||||
(build-system emacs-build-system)
|
||||
(home-page "https://github.com/dgutov/diff-hl")
|
||||
(synopsis
|
||||
"Highlight uncommitted changes using VC")
|
||||
(description
|
||||
"@code{diff-hl-mode} highlights uncommitted changes on the side of the
|
||||
window (using the fringe, by default), allows you to jump between
|
||||
the hunks and revert them selectively.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public emacs-diminish
|
||||
(package
|
||||
(name "emacs-diminish")
|
||||
|
|
Loading…
Reference in a new issue