Function: minibuffer-next-line-completion

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

Signature

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

Documentation

Move to the next completion line from the minibuffer.

This means to move to the completion candidate on the next 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-next-line-completion (&optional n)
  "Move to the next completion line from the minibuffer.
This means to move to the completion candidate on the next 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))