Variable: query-replace-lazy-highlight
query-replace-lazy-highlight is a customizable variable defined in
replace.el.gz.
Value
t
Documentation
Controls the lazy-highlighting during query replacements.
When non-nil, all text matching the current match that is
currently visible in the window is highlighted lazily using
isearch lazy highlighting (see lazy-highlight-initial-delay
and lazy-highlight-interval). Uses the lazy-highlight face
to highlight matching text.
This variable was added, or its default value changed, in Emacs 22.1.
Probably introduced at or before Emacs version 22.1.
Source Code
;; Defined in /usr/src/emacs/lisp/replace.el.gz
(defcustom query-replace-lazy-highlight t
"Controls the lazy-highlighting during query replacements.
When non-nil, all text matching the current match that is
currently visible in the window is highlighted lazily using
isearch lazy highlighting (see `lazy-highlight-initial-delay'
and `lazy-highlight-interval'). Uses the `lazy-highlight' face
to highlight matching text."
:type 'boolean
:group 'lazy-highlight
:group 'matching
:version "22.1")