Function: vertico-multiform-mode
vertico-multiform-mode is an autoloaded, interactive and byte-compiled
function defined in vertico-multiform.el.
Signature
(vertico-multiform-mode &optional ARG)
Documentation
Configure Vertico in various forms per command.
This is a global minor mode. If called interactively, toggle the
Vertico-Multiform mode mode. If the prefix argument is positive,
enable the mode, and if it is zero or negative, disable the mode.
If called from Lisp, toggle the mode if ARG is toggle. Enable the
mode if ARG is nil, omitted, or is a positive number. Disable the mode
if ARG is a negative number.
To check whether the minor mode is enabled in the current buffer,
evaluate (default-value \=vertico-multiform-mode)'.
The mode's hook is called both when the mode is enabled and when it is disabled.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/vertico-20260811.1003/vertico-multiform.el
;;;###autoload
(define-minor-mode vertico-multiform-mode
"Configure Vertico in various forms per command."
:global t :group 'vertico
(when (/= (recursion-depth) 0)
(warn "Vertico multiform must not be toggled from recursive minibuffers"))
(when vertico-multiform--stack
(warn "Vertico multiform state is inconsistent")
(setq vertico-multiform--stack nil))
(cl-callf2 rassq-delete-all vertico-multiform-map minor-mode-map-alist)
(when vertico-multiform-mode
(push `(vertico--input . ,vertico-multiform-map) minor-mode-map-alist)))