From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:34195) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fOery-0005jP-5F for guix-patches@gnu.org; Fri, 01 Jun 2018 03:53:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fOerv-0002aI-2W for guix-patches@gnu.org; Fri, 01 Jun 2018 03:53:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:48790) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fOeru-0002a6-UH for guix-patches@gnu.org; Fri, 01 Jun 2018 03:53:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fOeru-0004gh-NW for guix-patches@gnu.org; Fri, 01 Jun 2018 03:53:02 -0400 Subject: [bug#31515] [PATCH 12/21] gnu: Add emacs-helm-descbinds. References: <20180518184910.9987-17-ambrevar@gmail.com> In-Reply-To: <20180518184910.9987-17-ambrevar@gmail.com> Resent-Message-ID: From: Pierre Neidhardt Date: Fri, 1 Jun 2018 09:52:15 +0200 Message-Id: <20180601075215.29098-1-ambrevar@gmail.com> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 31515@debbugs.gnu.org * gnu/packages/emacs.scm (emacs-helm-descbinds): New variable. --- gnu/packages/emacs.scm | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index b582ce992..d96016073 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -10875,3 +10875,33 @@ 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 + (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 `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 +`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