Function: corfu-previous

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

Signature

(corfu-previous &optional N)

Documentation

Go backward N candidates.

Key Bindings

Source Code

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