guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

07/11: gnu: Add emacs-helm-descbinds.


From: Ludovic Courtès
Subject: 07/11: gnu: Add emacs-helm-descbinds.
Date: Fri, 8 Jun 2018 11:04:33 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit 0b4e4efe972d808db1a9eba04822d9da9d5887c6
Author: Pierre Neidhardt <address@hidden>
Date:   Fri Jun 1 09:52:15 2018 +0200

    gnu: Add emacs-helm-descbinds.
    
    * gnu/packages/emacs.scm (emacs-helm-descbinds): New variable.
    
    Signed-off-by: Ludovic Courtès <address@hidden>
---
 gnu/packages/emacs.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 96bb8cb..d4fda8e 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -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.
address@hidden is replaced with @code{helm-descbinds}.  As usual,
+type @code{C-h b}, or any incomplete key sequence plus @code{C-h}, to run
address@hidden  The bindings are presented in a similar way as
address@hidden does, but you can use completion to find the command
+you searched for and execute it, or view its documentation.")
+    (license license:gpl3+))))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]