Function: isearch-query-replace-regexp

isearch-query-replace-regexp is an interactive and byte-compiled function defined in isearch.el.gz.

Signature

(isearch-query-replace-regexp &optional ARG)

Documentation

Start query-replace-regexp with string to replace from last search string.

See isearch-query-replace for more information.

As each match is found, the user must type a character saying what to do with it. Type SPC or y to replace the match, DEL or n to skip and go to the next match. For more directions, type <f1> (help-command) at that time.

View in manual

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/isearch.el.gz
(defun isearch-query-replace-regexp (&optional arg)
  "Start `query-replace-regexp' with string to replace from last search string.
See `isearch-query-replace' for more information.

As each match is found, the user must type a character saying
what to do with it.  Type SPC or `y' to replace the match,
DEL or `n' to skip and go to the next match.  For more directions,
type \\[help-command] at that time."
  (interactive
   (list current-prefix-arg))
  (isearch-query-replace arg t))