Variable: global-corfu-mode
global-corfu-mode is a customizable variable defined in corfu.el.
Value
nil
Documentation
Non-nil if Global Corfu mode is enabled.
See the global-corfu-mode(var)/global-corfu-mode(fun) command
for a description of this minor mode.
Setting this variable directly does not take effect;
either customize it (see the info node (emacs)Easy Customization)
or call the function global-corfu-mode(var)/global-corfu-mode(fun).
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/corfu-20260813.950/corfu.el
;;;###autoload
(define-globalized-minor-mode global-corfu-mode
corfu-mode corfu--on
:group 'corfu
:predicate t
(remove-hook 'minibuffer-setup-hook #'corfu--minibuffer-on)
(when (and global-corfu-mode global-corfu-minibuffer)
(add-hook 'minibuffer-setup-hook #'corfu--minibuffer-on 100)))