Variable: minibuffer-completion-confirm

minibuffer-completion-confirm is a variable defined in minibuf.c.

Value

nil

Documentation

Whether to demand confirmation of completion before exiting minibuffer.

If nil, confirmation is not required. If the value is confirm, the user may exit with an input that is not
 a valid completion alternative, but Emacs asks for confirmation.
If the value is confirm-after-completion, the user may exit with an
 input that is not a valid completion alternative, but Emacs asks for
 confirmation if the user submitted the input right after any of the
 completion commands listed in minibuffer-confirm-exit-commands.

View in manual

Source Code

// Defined in /usr/src/emacs/src/minibuf.c
  DEFVAR_LISP ("minibuffer-completion-confirm", Vminibuffer_completion_confirm,
	       doc: /* Whether to demand confirmation of completion before exiting minibuffer.
If nil, confirmation is not required.
If the value is `confirm', the user may exit with an input that is not
 a valid completion alternative, but Emacs asks for confirmation.
If the value is `confirm-after-completion', the user may exit with an
 input that is not a valid completion alternative, but Emacs asks for
 confirmation if the user submitted the input right after any of the
 completion commands listed in `minibuffer-confirm-exit-commands'.  */);