emacs-elpa-diffs
[Top][All Lists]
Advanced

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

[nongnu] elpa/helm f97b280cb5 2/2: Remove unneeded :group in helm-comman


From: ELPA Syncer
Subject: [nongnu] elpa/helm f97b280cb5 2/2: Remove unneeded :group in helm-command defcustoms
Date: Thu, 7 Jul 2022 11:59:38 -0400 (EDT)

branch: elpa/helm
commit f97b280cb543fc37583f475b09e3194f3ab0ccbf
Author: Thierry Volpiatto <thievol@posteo.net>
Commit: Thierry Volpiatto <thievol@posteo.net>

    Remove unneeded :group in helm-command defcustoms
---
 helm-command.el | 21 +++++++++------------
 1 file changed, 9 insertions(+), 12 deletions(-)

diff --git a/helm-command.el b/helm-command.el
index 73fb976c3f..9569d44cc2 100644
--- a/helm-command.el
+++ b/helm-command.el
@@ -24,38 +24,35 @@
 (require 'helm-elisp)
 
 
+(defvar helm-M-x-map
+  (let ((map (make-sparse-keymap)))
+    (set-keymap-parent map helm-comp-read-map)
+    (define-key map (kbd "C-u") nil)
+    (define-key map (kbd "C-u") #'helm-M-x-universal-argument)
+    (define-key map (kbd "C-]") #'helm-M-x-toggle-short-doc)
+    map))
+
+
 (defgroup helm-command nil
   "Emacs command related Applications and libraries for Helm."
   :group 'helm)
 
 (defcustom helm-M-x-always-save-history nil
   "`helm-M-x' save command in `extended-command-history' even when it fails."
-  :group 'helm-command
   :type  'boolean)
 
 (defcustom helm-M-x-reverse-history nil
   "The history source of `helm-M-x' appear in second position when non-nil."
-  :group 'helm-command
   :type 'boolean)
 
 (defcustom helm-M-x-fuzzy-match t
   "Helm-M-x fuzzy matching when non nil."
-  :group 'helm-command
   :type 'boolean)
 
-(defvar helm-M-x-map
-  (let ((map (make-sparse-keymap)))
-    (set-keymap-parent map helm-comp-read-map)
-    (define-key map (kbd "C-u") nil)
-    (define-key map (kbd "C-u") #'helm-M-x-universal-argument)
-    (define-key map (kbd "C-]") #'helm-M-x-toggle-short-doc)
-    map))
-
 (defcustom helm-M-x-show-short-doc nil
   "Show short docstring of command when non nil.
 This value can be toggled with
 \\<helm-M-x-map>\\[helm-M-x-toggle-short-doc] while in helm-M-x session."
-  :group 'helm-command
   :type 'boolean)
 
 



reply via email to

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