Function: projectile-search-review
projectile-search-review is an autoloaded, interactive and
byte-compiled function defined in projectile.el.
Signature
(projectile-search-review)
Documentation
Search the project for a literal string and review the matches read-only.
Prompts for a literal search string (defaulting to the symbol or region
at point), gathers every match across the project into a read-only
*projectile-search* buffer grouped by file, and lets you navigate,
filter and reshape the search. Use r (projectile-search--to-replace) to turn it into a
reviewable replacement. This is the read-only sibling of
projectile-replace-review.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
;;;###autoload
(defun projectile-search-review ()
"Search the project for a literal string and review the matches read-only.
Prompts for a literal search string (defaulting to the symbol or region
at point), gathers every match across the project into a read-only
`*projectile-search*' buffer grouped by file, and lets you navigate,
filter and reshape the search. Use \\<projectile-search-mode-map>\\[projectile-search--to-replace] to turn it into a
reviewable replacement. This is the read-only sibling of
`projectile-replace-review'."
(interactive)
(projectile-search--review t))