Variable: jit-lock-stealth-time

jit-lock-stealth-time is a customizable variable defined in jit-lock.el.gz.

Value

nil

Documentation

Time in seconds to wait before beginning stealth fontification.

Stealth fontification occurs if there is no input within this time. If nil, stealth fontification is never performed.

The value of this variable is used when JIT Lock mode is turned on.

Probably introduced at or before Emacs version 22.1.

Source Code

;; Defined in /usr/src/emacs/lisp/jit-lock.el.gz
(defcustom jit-lock-stealth-time nil
  "Time in seconds to wait before beginning stealth fontification.
Stealth fontification occurs if there is no input within this time.
If nil, stealth fontification is never performed.

The value of this variable is used when JIT Lock mode is turned on."
  :type '(choice (const :tag "never" nil)
		 (number :tag "seconds" :value 16)))