Variable: repeat-exit-timeout

repeat-exit-timeout is a customizable variable defined in repeat.el.gz.

Value

nil

Documentation

Break the repetition chain of keys after specified amount of idle time.

When a number, exit the transient repeating mode after idle time of the specified number of seconds. You can also set the property repeat-exit-timeout on the command symbol. This property can override the value of this variable.

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

View in manual

Probably introduced at or before Emacs version 28.1.

Source Code

;; Defined in /usr/src/emacs/lisp/repeat.el.gz
(defcustom repeat-exit-timeout nil
  "Break the repetition chain of keys after specified amount of idle time.
When a number, exit the transient repeating mode after idle time
of the specified number of seconds.
You can also set the property `repeat-exit-timeout' on the command symbol.
This property can override the value of this variable."
  :type '(choice (const :tag "No timeout to exit repeating sequence" nil)
                 (number :tag "Timeout in seconds to exit repeating"))
  :group 'repeat
  :version "28.1")