Variable: type-break-good-break-interval

type-break-good-break-interval is a customizable variable defined in type-break.el.gz.

Value

nil

Documentation

Number of seconds considered to be an adequate explicit typing rest.

When this variable is non-nil, its value is considered to be a "good" length (in seconds) for a break initiated by the command type-break, overriding type-break-good-rest-interval. This provides querying of break interruptions when type-break-good-rest-interval is nil.

Source Code

;; Defined in /usr/src/emacs/lisp/type-break.el.gz
(defcustom type-break-good-break-interval nil
  "Number of seconds considered to be an adequate explicit typing rest.

When this variable is non-nil, its value is considered to be a \"good\"
length (in seconds) for a break initiated by the command `type-break',
overriding `type-break-good-rest-interval'.  This provides querying of
break interruptions when `type-break-good-rest-interval' is nil."
  :type '(choice (const nil) integer)
  :group 'type-break)