Variable: vertico-mode
vertico-mode is a customizable variable defined in vertico.el.
Value
nil
Documentation
Non-nil if Vertico mode is enabled.
See the vertico-mode(var)/vertico-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 vertico-mode(var)/vertico-mode(fun).
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/vertico-20260811.1003/vertico.el
;;;###autoload
(define-minor-mode vertico-mode
"VERTical Interactive COmpletion."
:global t :group 'vertico
(dolist (fun '(completing-read-default completing-read-multiple))
(if vertico-mode
(advice-add fun :around #'vertico--advice)
(advice-remove fun #'vertico--advice))))