Function: projectile-replace-regexp-review

projectile-replace-regexp-review is an autoloaded, interactive and byte-compiled function defined in projectile.el.

Signature

(projectile-replace-regexp-review)

Documentation

Review and apply a project-wide regexp replacement.

Like projectile-replace-review, but the search term is an Emacs regexp and the replacement may reference capture groups (\1, \&). This is a non-blocking, previewable alternative to projectile-replace-regexp.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
;;;###autoload
(defun projectile-replace-regexp-review ()
  "Review and apply a project-wide regexp replacement.

Like `projectile-replace-review', but the search term is an Emacs
regexp and the replacement may reference capture groups (\\1, \\&).
This is a non-blocking, previewable alternative to
`projectile-replace-regexp'."
  (interactive)
  (projectile-replace--review nil))