Function: projectile-multi-occur

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

Signature

(projectile-multi-occur &optional NLINES)

Documentation

Do a multi-occur in the project's buffers.

With a prefix argument, show NLINES of context.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/projectile-20260310.858/projectile.el
;;;###autoload
(defun projectile-multi-occur (&optional nlines)
  "Do a `multi-occur' in the project's buffers.
With a prefix argument, show NLINES of context."
  (interactive "P")
  (let ((project (projectile-acquire-root)))
    (multi-occur (projectile-project-buffers project)
                 (car (occur-read-primary-args))
                 nlines)))