Function: previous-completion
previous-completion is an interactive and byte-compiled function
defined in simple.el.gz.
Signature
(previous-completion N)
Documentation
Move to the previous item in the completions buffer.
With prefix argument N, move back N items (negative N means move forward).
Also see the completion-auto-wrap variable.
Probably introduced at or before Emacs version 19.29.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/simple.el.gz
(defun previous-completion (n)
"Move to the previous item in the completions buffer.
With prefix argument N, move back N items (negative N means move
forward).
Also see the `completion-auto-wrap' variable."
(interactive "p")
(next-completion (- n)))