Function: minibuffer-previous-line-completion

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

Signature

(minibuffer-previous-line-completion &optional N)

Documentation

Move to the previous completion line from the minibuffer.

This means to move to the completion candidate on the previous line in the *Completions* buffer while point stays in the minibuffer. When minibuffer-completion-auto-choose is non-nil, then also insert the selected completion candidate to the minibuffer.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/minibuffer.el.gz
(defun minibuffer-previous-line-completion (&optional n)
  "Move to the previous completion line from the minibuffer.
This means to move to the completion candidate on the previous line
in the *Completions* buffer while point stays in 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)) t))