gnu: Add emacs-helm-descbinds.

* gnu/packages/emacs.scm (emacs-helm-descbinds): New variable.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
Pierre Neidhardt 2018-06-01 09:52:15 +02:00 committed by Ludovic Courtès
parent 3540c6eb2b
commit 0b4e4efe97
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 28 additions and 0 deletions

View File

@ -10912,3 +10912,31 @@ on-line service.")
"This is a Helm interface to company-mode, a text completion
framework.")
(license license:gpl3+))))
(define-public emacs-helm-descbinds
(let ((commit "033be73f21778633813264ce1634a6e1ad873d8e"))
(package
(name "emacs-helm-descbinds")
(version (git-version "1.13" "1" commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/emacs-helm/helm-descbinds")
(commit commit)))
(file-name (string-append name "-" version "-checkout"))
(sha256
(base32
"1n89p56qwa243w1c85i5awnaf7piwjsvfi7nmnsrwm33hix5dknk"))))
(build-system emacs-build-system)
(propagated-inputs `(("emacs-helm" ,emacs-helm)))
(home-page "https://github.com/emacs-helm/helm-descbinds")
(synopsis "Convenient @code{describe-bindings} with Helm")
(description
"This package is a replacement of @code{describe-bindings} for Helm.
@code{describe-bindings} is replaced with @code{helm-descbinds}. As usual,
type @code{C-h b}, or any incomplete key sequence plus @code{C-h}, to run
@code{helm-descbinds}. The bindings are presented in a similar way as
@code{describe-bindings} does, but you can use completion to find the command
you searched for and execute it, or view its documentation.")
(license license:gpl3+))))