Variable: vertico-reverse-map

vertico-reverse-map is a variable defined in vertico-reverse.el.

Value

     vertico-last
     vertico-next
     vertico-previous
C-n  vertico-previous
C-p  vertico-next
C-v  vertico-scroll-down
M-<  vertico-last
M->  vertico-first
M-v  vertico-scroll-up
M-{  vertico-next-group
M-}  vertico-previous-group

Documentation

Additional keymap activated in reverse mode.

Source Code

;; Defined in ~/.emacs.d/elpa/vertico-20260811.1003/vertico-reverse.el
(defvar-keymap vertico-reverse-map
  :doc "Additional keymap activated in reverse mode."
  "<remap> <beginning-of-buffer>" #'vertico-last
  "<remap> <minibuffer-beginning-of-buffer>" #'vertico-last
  "<remap> <end-of-buffer>" #'vertico-first
  "<remap> <scroll-down-command>" #'vertico-scroll-up
  "<remap> <scroll-up-command>" #'vertico-scroll-down
  "<remap> <next-line>" #'vertico-previous
  "<remap> <previous-line>" #'vertico-next
  "<remap> <next-line-or-history-element>" #'vertico-previous
  "<remap> <previous-line-or-history-element>" #'vertico-next
  "<remap> <backward-paragraph>" #'vertico-next-group
  "<remap> <forward-paragraph>" #'vertico-previous-group)