Variable: vertico-multiform-commands

vertico-multiform-commands is a customizable variable defined in vertico-multiform.el.

Value

nil

Documentation

Alist of commands/regexps and list of settings to turn on per command.

Takes precedence over vertico-multiform-categories. A setting can either be a mode symbol, a function, an inverted mode symbol or function, or a cons cell of variable name and value. The key t can be used to specify catch all/default settings. The value of this-command is used as key for the lookup.

Source Code

;; Defined in ~/.emacs.d/elpa/vertico-20260811.1003/vertico-multiform.el
(defcustom vertico-multiform-commands nil
  "Alist of commands/regexps and list of settings to turn on per command.
Takes precedence over `vertico-multiform-categories'.  A setting
can either be a mode symbol, a function, an inverted mode symbol
or function, or a cons cell of variable name and value.  The key
t can be used to specify catch all/default settings.  The value
of `this-command' is used as key for the lookup."
  :group 'vertico
  :type '(alist :key-type (choice symbol regexp (const t)) :value-type (repeat sexp)))