Function: projectile-search-regexp-review
projectile-search-regexp-review is an autoloaded, interactive and
byte-compiled function defined in projectile.el.
Signature
(projectile-search-regexp-review)
Documentation
Search the project for an Emacs regexp and review the matches read-only.
Like projectile-search-review, but the search term is an Emacs regexp,
so full Emacs regexp syntax (e.g. symbol boundaries like \_<foo\_>)
is honored.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
;;;###autoload
(defun projectile-search-regexp-review ()
"Search the project for an Emacs regexp and review the matches read-only.
Like `projectile-search-review', but the search term is an Emacs regexp,
so full Emacs regexp syntax (e.g. symbol boundaries like `\\_<foo\\_>')
is honored."
(interactive)
(projectile-search--review nil))