Variable: isearch-lazy-highlight
isearch-lazy-highlight is a customizable variable defined in
isearch.el.gz.
Value
t
Documentation
Controls the lazy-highlighting during incremental search.
When non-nil, all text currently visible on the screen
matching the current search string is highlighted lazily
(see lazy-highlight-initial-delay and lazy-highlight-interval).
When multiple windows display the current buffer, the
highlighting is displayed only on the selected window, unless
this variable is set to the symbol all-windows.
Probably introduced at or before Emacs version 21.1.
Source Code
;; Defined in /usr/src/emacs/lisp/isearch.el.gz
(defcustom isearch-lazy-highlight t
"Controls the lazy-highlighting during incremental search.
When non-nil, all text currently visible on the screen
matching the current search string is highlighted lazily
(see `lazy-highlight-initial-delay' and `lazy-highlight-interval').
When multiple windows display the current buffer, the
highlighting is displayed only on the selected window, unless
this variable is set to the symbol `all-windows'."
:type '(choice (const :tag "Off" nil)
(const :tag "On, and applied to current window" t)
(const :tag "On, and applied to all windows" all-windows))
:group 'lazy-highlight
:group 'isearch)