From fa2be6c66ff2eb10b4b609832f25df49e90381af Mon Sep 17 00:00:00 2001 From: Daniel Mendler Date: Mon, 14 Oct 2024 11:15:21 +0200 Subject: Fix customization groups --- corfu.el | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/corfu.el b/corfu.el index feb6495..c465534 100644 --- a/corfu.el +++ b/corfu.el @@ -1354,7 +1354,8 @@ symbols or elements of the form (not modes). Examples: - Enable everywhere, except in Org: ((not org-mode) t). - Enable in programming modes except Python: ((not python-mode) prog-mode). - Enable only in text modes: (text-mode)." - :type '(choice (const t) (repeat sexp))) + :type '(choice (const t) (repeat sexp)) + :group 'corfu) ;; TODO use `:predicate' on Emacs 29 (defcustom global-corfu-minibuffer t @@ -1362,7 +1363,8 @@ symbols or elements of the form (not modes). Examples: The variable can either be t, nil or a custom predicate function. If the variable is set to t, Corfu is only enabled if the minibuffer has local `completion-at-point-functions'." - :type '(choice (const t) (const nil) function)) + :type '(choice (const t) (const nil) function) + :group 'corfu) ;;;###autoload (define-globalized-minor-mode global-corfu-mode -- cgit v1.0