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 in the buffer matching the current match is highlighted lazily using isearch lazy highlighting (see lazy-highlight-initial-delay and lazy-highlight-interval).

This variable was added, or its default value changed, in Emacs 22.1.

View in manual

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 in the buffer matching the current match
is highlighted lazily using isearch lazy highlighting (see
`lazy-highlight-initial-delay' and `lazy-highlight-interval')."
  :type 'boolean
  :group 'lazy-highlight
  :group 'matching
  :version "22.1")