Function: projectile-search--review

projectile-search--review is a byte-compiled function defined in projectile.el.

Signature

(projectile-search--review LITERAL)

Documentation

Gather matches for a project-wide search and pop the read-only results buffer.

LITERAL non-nil searches for a literal string; otherwise the term is an Emacs regexp. There is no replacement prompt.

This is projectile-search-in-projects over the one project you are in; the prompt is built here because only the single-project case can name the tool that will do the scanning.

Source Code

;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
(defun projectile-search--review (literal)
  "Gather matches for a project-wide search and pop the read-only results buffer.
LITERAL non-nil searches for a literal string; otherwise the term is an
Emacs regexp.  There is no replacement prompt.

This is `projectile-search-in-projects' over the one project you are in;
the prompt is built here because only the single-project case can name
the tool that will do the scanning."
  (projectile-search-in-projects
   (list (projectile-acquire-root)) literal
   (format "Search %s%s for"
           (projectile--search-tool-tag
            (if (and literal (projectile-search--rg-fastpath-p t))
                "ripgrep" "elisp"))
           (if literal "" " regexp"))))