Function: vertico-previous

vertico-previous is an interactive and byte-compiled function defined in vertico.el.

Signature

(vertico-previous &optional N)

Documentation

Go backward N candidates.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/vertico-20260811.1003/vertico.el
(defun vertico-previous (&optional n)
  "Go backward N candidates."
  (interactive "p")
  (vertico-next (- (or n 1))))