Function: projectile-dispatch-search-siblings
projectile-dispatch-search-siblings is an interactive and
byte-compiled function defined in projectile.el.
Signature
(projectile-dispatch-search-siblings)
Documentation
Sibling-project search honouring the search switches.
--regexp reads the term as an Emacs regexp, --case-sensitive seeds
the search case-sensitive and --word matches whole words; all can still
be flipped (x/c/w) in the results buffer.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
(defun projectile-dispatch-search-siblings ()
"Sibling-project search honouring the search switches.
`--regexp' reads the term as an Emacs regexp, `--case-sensitive' seeds
the search case-sensitive and `--word' matches whole words; all can still
be flipped (`x'/`c'/`w') in the results buffer."
(interactive)
(let* ((switches (projectile-dispatch--args))
(case-fold-search (if (member "--case-sensitive" switches)
nil case-fold-search))
(projectile-search-whole-word
(if (member "--word" switches) t projectile-search-whole-word)))
(projectile-search-in-sibling-projects (and (member "--regexp" switches) t))))