Function: projectile-multi-occur-in-sibling-projects

projectile-multi-occur-in-sibling-projects is an autoloaded, interactive and byte-compiled function defined in projectile.el.

Signature

(projectile-multi-occur-in-sibling-projects &optional NLINES)

Documentation

Do a multi-occur in the buffers of the current project and related ones.

Related is what projectile-switch-sibling-project means by it. With a prefix argument, show NLINES of context.

Note this searches the buffers you have open, not the projects on disk - projectile-search-in-sibling-projects is the one that reads files.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
;;;###autoload
(defun projectile-multi-occur-in-sibling-projects (&optional nlines)
  "Do a `multi-occur' in the buffers of the current project and related ones.
Related is what `projectile-switch-sibling-project' means by it.  With a
prefix argument, show NLINES of context.

Note this searches the buffers you have open, not the projects on disk -
`projectile-search-in-sibling-projects' is the one that reads files."
  (interactive "P")
  (multi-occur (projectile-project-group-buffers (projectile--sibling-group))
               (car (occur-read-primary-args))
               nlines))