guix-patches
[Top][All Lists]
Advanced

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

[bug#31515] [PATCH 12/21] gnu: emacs-helm-descbinds: New variable.


From: Pierre Neidhardt
Subject: [bug#31515] [PATCH 12/21] gnu: emacs-helm-descbinds: New variable.
Date: Fri, 18 May 2018 20:49:06 +0200

* gnu/packages/emacs.scm (emacs-helm-descbinds): New variable.
---
 gnu/packages/emacs.scm | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 9f86dd6c7..87b4acab9 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -10782,3 +10782,32 @@ for more details.")
      (define-key company-mode-map (kbd \"C-:\") 'helm-company)
      (define-key company-active-map (kbd \"C-:\") 'helm-company)))}")
     (license license:gpl3+)))
+
+(define-public emacs-helm-descbinds
+  (package
+    (name "emacs-helm-descbinds")
+    (version "20180429.756")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append
+             "https://melpa.org/packages/helm-descbinds-";
+             version
+             ".el"))
+       (sha256
+        (base32
+         "0ibmxps9qmlri2m7dl05fkzm9v5mbvpqfddx713fkhzmgc3k0y33"))))
+    (build-system emacs-build-system)
+    (propagated-inputs `(("emacs-helm" ,emacs-helm)))
+    (home-page
+     "https://github.com/emacs-helm/helm-descbinds";)
+    (synopsis
+     "Convenient `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
+`describe-bindings ' does, but you can use completion to find the command you
+searched for and execute it, or view it's documentation.")
+    (license license:gpl3+)))
-- 
2.17.0






reply via email to

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