Variable: vertico-reverse-mode
vertico-reverse-mode is a customizable variable defined in
vertico-reverse.el.
Value
nil
Documentation
Non-nil if Vertico-Reverse mode is enabled.
See the vertico-reverse-mode(var)/vertico-reverse-mode(fun) command
for a description of this minor mode.
Setting this variable directly does not take effect;
either customize it (see the info node (emacs)Easy Customization)
or call the function vertico-reverse-mode(var)/vertico-reverse-mode(fun).
Key Bindings
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)))