Variable: completion-auto-wrap

completion-auto-wrap is a customizable variable defined in simple.el.gz.

Value

t

Documentation

Non-nil means to wrap around when selecting completion candidates.

This affects the commands next-completion, previous-completion, next-line-completion and previous-line-completion. When completion-auto-select is t, it wraps through the minibuffer for the commands bound to the TAB key.

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/simple.el.gz
(defcustom completion-auto-wrap t
  "Non-nil means to wrap around when selecting completion candidates.
This affects the commands `next-completion', `previous-completion',
`next-line-completion' and `previous-line-completion'.
When `completion-auto-select' is t, it wraps through the minibuffer
for the commands bound to the TAB key."
  :type 'boolean
  :version "29.1"
  :group 'completion)