Function: projectile-find-file-in-sibling-projects

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

Signature

(projectile-find-file-in-sibling-projects)

Documentation

Jump to a file in the current project or any related to it.

Related is what projectile-switch-sibling-project means by it.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
;;;###autoload
(defun projectile-find-file-in-sibling-projects ()
  "Jump to a file in the current project or any related to it.
Related is what `projectile-switch-sibling-project' means by it."
  (interactive)
  (projectile-find-file-in-projects (projectile--sibling-group)
                                    "Find file in sibling projects: "))