Function: projectile-replace-review
projectile-replace-review is an autoloaded, interactive and
byte-compiled function defined in projectile.el.
Signature
(projectile-replace-review)
Documentation
Review and apply a literal project-wide replacement.
Prompts for a literal search string and a replacement, gathers every
match across the project into a *projectile-replace* buffer, and lets
you toggle which matches to apply before committing them. This is a
non-blocking, previewable alternative to projectile-replace.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
;;;###autoload
(defun projectile-replace-review ()
"Review and apply a literal project-wide replacement.
Prompts for a literal search string and a replacement, gathers every
match across the project into a `*projectile-replace*' buffer, and lets
you toggle which matches to apply before committing them. This is a
non-blocking, previewable alternative to `projectile-replace'."
(interactive)
(projectile-replace--review t))