diff options
| author | Daniel Mendler <mail@daniel-mendler.de> | 2024-10-14 11:15:21 +0200 |
|---|---|---|
| committer | Daniel Mendler <mail@daniel-mendler.de> | 2024-10-14 11:15:21 +0200 |
| commit | fa2be6c66ff2eb10b4b609832f25df49e90381af (patch) | |
| tree | 38a343b35cb5287f1dc0ef3ed355850560a87f32 | |
| parent | 05889f194fd044223a1ddc7cfb2f96c752df5559 (diff) | |
Fix customization groups
| -rw-r--r-- | corfu.el | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -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 |
