Function: corfu-first
corfu-first is an interactive and byte-compiled function defined in
corfu.el.
Signature
(corfu-first)
Documentation
Go to first candidate.
If the first candidate is already selected, go to the prompt.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/corfu-20260813.950/corfu.el
(defun corfu-first ()
"Go to first candidate.
If the first candidate is already selected, go to the prompt."
(interactive)
(corfu--goto (if (> corfu--index 0) 0 -1)))