Variable: type-break-keystroke-warning-intervals

type-break-keystroke-warning-intervals is a customizable variable defined in type-break.el.gz.

Value

(300 200 100 50)

Documentation

List of keystroke measurements for warnings about upcoming typing break.

At each of the intervals (specified in keystrokes) away from the upper keystroke threshold, print a warning in the echo area. If either this variable or the upper threshold is set, then no warnings will occur.

Source Code

;; Defined in /usr/src/emacs/lisp/type-break.el.gz
(defcustom type-break-keystroke-warning-intervals '(300 200 100 50)
  "List of keystroke measurements for warnings about upcoming typing break.
At each of the intervals (specified in keystrokes) away from the upper
keystroke threshold, print a warning in the echo area.
If either this variable or the upper threshold is set, then no warnings
will occur."
  :type '(repeat integer)
  :group 'type-break)