Variable: completion-cycle-threshold

completion-cycle-threshold is a customizable variable defined in minibuffer.el.gz.

Value

nil

Documentation

Number of completion candidates below which cycling is used.

Depending on this setting completion-in-region may use cycling, whereby invoking a completion command several times in a row completes to each of the candidates in turn, in a cyclic manner. If nil, cycling is never used. If t, cycling is always used. If an integer, cycling is used so long as there are not more completion candidates than this number.

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

View in manual

Probably introduced at or before Emacs version 24.1.

Source Code

;; Defined in /usr/src/emacs/lisp/minibuffer.el.gz
(defcustom completion-cycle-threshold nil
  "Number of completion candidates below which cycling is used.
Depending on this setting `completion-in-region' may use cycling,
whereby invoking a completion command several times in a row
completes to each of the candidates in turn, in a cyclic manner.
If nil, cycling is never used.
If t, cycling is always used.
If an integer, cycling is used so long as there are not more
completion candidates than this number."
  :version "24.1"
  :type completion--cycling-threshold-type)