Function: vertico-previous-group

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

Signature

(vertico-previous-group &optional N)

Documentation

Cycle N groups backward.

When the prefix argument is 0, the group order is reset.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/vertico-20260811.1003/vertico.el
(defun vertico-previous-group (&optional n)
  "Cycle N groups backward.
When the prefix argument is 0, the group order is reset."
  (interactive "p")
  (vertico-next-group (- (or n 1))))