Variable: vertico-mode-hook

vertico-mode-hook is a customizable variable defined in vertico.el.

Value

(#[0 "\300\301!\207"
    [vertico-mouse-mode 1]
    2])

Documentation

Hook run after entering or leaving vertico-mode(var)/vertico-mode(fun).

No problems result if this variable is not bound. add-hook automatically binds it. (This is true for all hook variables.)

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))))