Variable: minibuffer-completion-auto-choose

minibuffer-completion-auto-choose is a customizable variable defined in minibuffer.el.gz.

Value

t

Documentation

Non-nil means to automatically insert completions to the minibuffer.

When non-nil, then minibuffer-next-completion and minibuffer-previous-completion will insert the completion selected by these commands to the minibuffer.

This variable was added, or its default value changed, in Emacs 29.1.

View in manual

Probably introduced at or before Emacs version 29.1.

Source Code

;; Defined in /usr/src/emacs/lisp/minibuffer.el.gz
(defcustom minibuffer-completion-auto-choose t
  "Non-nil means to automatically insert completions to the minibuffer.
When non-nil, then `minibuffer-next-completion' and
`minibuffer-previous-completion' will insert the completion
selected by these commands to the minibuffer."
  :type 'boolean
  :version "29.1")