Variable: show-paren-delay
show-paren-delay is a customizable variable defined in paren.el.gz.
Value
0.125
Documentation
Time in seconds to delay before showing a matching paren.
If you change this without using customize while show-paren-mode(var)/show-paren-mode(fun) is
active, you must toggle the mode off and on again for this to take effect.
Source Code
;; Defined in /usr/src/emacs/lisp/paren.el.gz
(defcustom show-paren-delay 0.125
"Time in seconds to delay before showing a matching paren.
If you change this without using customize while `show-paren-mode' is
active, you must toggle the mode off and on again for this to take effect."
:type '(number :tag "seconds")
:initialize 'custom-initialize-default
:set (lambda (sym val)
(if (not show-paren-mode)
(set sym val)
(show-paren-mode -1)
(set sym val)
(show-paren-mode 1))))