Variable: vertico-reverse-mode-hook
vertico-reverse-mode-hook is a customizable variable defined in
vertico-reverse.el.
Value
nil
Documentation
Hook run after entering or leaving vertico-reverse-mode(var)/vertico-reverse-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-reverse.el
;;;###autoload
(define-minor-mode vertico-reverse-mode
"Reverse the Vertico display."
:global t :group 'vertico
;; Reset overlays
(dolist (buf (buffer-list))
(when-let* ((ov (buffer-local-value 'vertico--candidates-ov buf)))
(overlay-put ov 'before-string nil)))
(cl-callf2 rassq-delete-all vertico-reverse-map minor-mode-map-alist)
(when vertico-reverse-mode
(push `(vertico--input . ,vertico-reverse-map) minor-mode-map-alist)))