Function: projectile-find-file-in-projects

projectile-find-file-in-projects is an autoloaded and byte-compiled function defined in projectile.el.

Signature

(projectile-find-file-in-projects PROJECTS &optional PROMPT)

Documentation

Jump to a file in any of PROJECTS.

PROMPT overrides the completion prompt.

Source Code

;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
;;;###autoload
(defun projectile-find-file-in-projects (projects &optional prompt)
  "Jump to a file in any of PROJECTS.
PROMPT overrides the completion prompt."
  (find-file (projectile-completing-read
              (or prompt "Find file in projects: ")
              (projectile-project-group-files
               (projectile--project-group projects "projects"))
              :caller 'projectile-read-file)))