Function: minibuffer-previous-completion

minibuffer-previous-completion is an interactive and byte-compiled function defined in minibuffer.el.gz.

Signature

(minibuffer-previous-completion &optional N)

Documentation

Move to the previous item in its completions window from the minibuffer.

When minibuffer-completion-auto-choose is non-nil, then also insert the selected completion candidate to the minibuffer.

View in manual

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/minibuffer.el.gz
(defun minibuffer-previous-completion (&optional n)
  "Move to the previous item in its completions window from the minibuffer.
When `minibuffer-completion-auto-choose' is non-nil, then also
insert the selected completion candidate to the minibuffer."
  (interactive "p")
  (minibuffer-next-completion (- (or n 1))))