Function: vertico--prepare

vertico--prepare is a byte-compiled function defined in vertico.el.

Signature

(vertico--prepare)

Documentation

Ensure that the state is prepared before running the next command.

Implementations

:before (vertico--prepare (NIL ((&context . vertico-indexed-mode) eql t))) in `vertico-indexed.el'.

Undocumented

(vertico--prepare) in `vertico.el'.

Undocumented

Source Code

;; Defined in ~/.emacs.d/elpa/vertico-20260811.1003/vertico.el
(cl-defgeneric vertico--prepare ()
  "Ensure that the state is prepared before running the next command."
  (when-let* ((cmd (and (symbolp this-command) (symbol-name this-command)))
              ((string-prefix-p "vertico-" cmd))
              ((not (and vertico--metadata (string-prefix-p "vertico-directory-" cmd)))))
    (vertico--update)))