Variable: blink-matching-paren-on-screen
blink-matching-paren-on-screen is a customizable variable defined in
simple.el.gz.
Value
t
Documentation
Non-nil means show matching open-paren when it is on screen.
If nil, don't show it (but the open-paren can still be shown in the echo area when it is off screen).
This variable has no effect if blink-matching-paren is nil.
(In that case, the open-paren is never shown.)
It is also ignored if show-paren-mode(var)/show-paren-mode(fun) is enabled.
Source Code
;; Defined in /usr/src/emacs/lisp/simple.el.gz
(defcustom blink-matching-paren-on-screen t
"Non-nil means show matching open-paren when it is on screen.
If nil, don't show it (but the open-paren can still be shown
in the echo area when it is off screen).
This variable has no effect if `blink-matching-paren' is nil.
\(In that case, the open-paren is never shown.)
It is also ignored if `show-paren-mode' is enabled."
:type 'boolean
:group 'paren-blinking)