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

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

[elpa] externals/corfu b9df364: define-minor-mode: Specify group


From: ELPA Syncer
Subject: [elpa] externals/corfu b9df364: define-minor-mode: Specify group
Date: Sat, 9 Oct 2021 13:57:12 -0400 (EDT)

branch: externals/corfu
commit b9df3648e30282a42b0c72158e3f354234fd41ff
Author: Daniel Mendler <mail@daniel-mendler.de>
Commit: Daniel Mendler <mail@daniel-mendler.de>

    define-minor-mode: Specify group
---
 corfu.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/corfu.el b/corfu.el
index 41b2374..51cb9fe 100644
--- a/corfu.el
+++ b/corfu.el
@@ -923,7 +923,7 @@ completion began less than that number of seconds ago."
 ;;;###autoload
 (define-minor-mode corfu-mode
   "Completion Overlay Region FUnction"
-  :global nil
+  :global nil :group 'corfu
   (if corfu-mode
       (progn
         (and corfu-auto (add-hook 'post-command-hook 
#'corfu--auto-post-command nil 'local))
@@ -932,7 +932,7 @@ completion began less than that number of seconds ago."
     (kill-local-variable 'completion-in-region-function)))
 
 ;;;###autoload
-(define-globalized-minor-mode corfu-global-mode corfu-mode corfu--on)
+(define-globalized-minor-mode corfu-global-mode corfu-mode corfu--on :group 
'corfu)
 
 (defun corfu--on ()
   "Turn `corfu-mode' on."



reply via email to

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