Function: minibuffer-next-column-completion
minibuffer-next-column-completion is an interactive and byte-compiled
function defined in minibuffer.el.gz.
Signature
(minibuffer-next-column-completion &optional N)
Documentation
Move to the next completion column from the minibuffer.
This means to move to the completion candidate in the next column
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-column-completion (&optional n)
"Move to the next completion column from the minibuffer.
This means to move to the completion candidate in the next column
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")
(with-minibuffer-completions-window
(next-column-completion (or n 1))))