Variable: projectile-replace--rg-pattern
projectile-replace--rg-pattern is a buffer-local variable defined in
projectile.el.
Documentation
A ripgrep-syntax equivalent of this buffer's search, or nil.
Set by commands that build a non-literal search from a pattern they can
also express in ripgrep's regex syntax (projectile-todos), so the
read-only search reviewer's ripgrep fast-path can run for them too. Nil
means the fast-path is only available to a literal search. Cleared when
the search changes shape (the literal/regexp toggle), since the new
search has no known ripgrep equivalent.
Source Code
;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
(defvar-local projectile-replace--rg-pattern nil
"A ripgrep-syntax equivalent of this buffer's search, or nil.
Set by commands that build a non-literal search from a pattern they can
also express in ripgrep's regex syntax (`projectile-todos'), so the
read-only search reviewer's ripgrep fast-path can run for them too. Nil
means the fast-path is only available to a literal search. Cleared when
the search changes shape (the literal/regexp toggle), since the new
search has no known ripgrep equivalent.")