From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54960) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fJkSK-00085l-KI for guix-patches@gnu.org; Fri, 18 May 2018 14:50:21 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fJkSJ-0000r6-Bu for guix-patches@gnu.org; Fri, 18 May 2018 14:50:20 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:60522) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fJkSJ-0000qu-70 for guix-patches@gnu.org; Fri, 18 May 2018 14:50:19 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fJkSJ-0001V1-0P for guix-patches@gnu.org; Fri, 18 May 2018 14:50:19 -0400 Subject: [bug#31515] [PATCH 12/21] gnu: emacs-helm-descbinds: New variable. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:54448) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fJkRW-0006fA-KL for guix-patches@gnu.org; Fri, 18 May 2018 14:49:31 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fJkRV-00005k-MF for guix-patches@gnu.org; Fri, 18 May 2018 14:49:30 -0400 Received: from mail-wm0-x232.google.com ([2a00:1450:400c:c09::232]:54818) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fJkRV-000050-Fz for guix-patches@gnu.org; Fri, 18 May 2018 14:49:29 -0400 Received: by mail-wm0-x232.google.com with SMTP id f6-v6so15648572wmc.4 for ; Fri, 18 May 2018 11:49:29 -0700 (PDT) Received: from mimimi.home (2a01cb040a37a0005adf9a0845f647b3.ipv6.abo.wanadoo.fr. [2a01:cb04:a37:a000:5adf:9a08:45f6:47b3]) by smtp.gmail.com with ESMTPSA id q2-v6sm8369863wrj.57.2018.05.18.11.49.27 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 18 May 2018 11:49:27 -0700 (PDT) From: Pierre Neidhardt Date: Fri, 18 May 2018 20:49:06 +0200 Message-Id: <20180518184910.9987-17-ambrevar@gmail.com> In-Reply-To: <20180518184910.9987-1-ambrevar@gmail.com> References: <20180518184910.9987-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 | 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. +@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