Function: projectile-find-file-all
projectile-find-file-all is an autoloaded, interactive and
byte-compiled function defined in projectile.el.
Signature
(projectile-find-file-all)
Documentation
Jump to any file in the project, ignoring VCS and projectile ignore rules.
This lists all files under the project root using a generic file listing
command (fd or find), bypassing .gitignore, .projectile, and other
ignore mechanisms.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/projectile-20260310.858/projectile.el
;;;###autoload
(defun projectile-find-file-all ()
"Jump to any file in the project, ignoring VCS and projectile ignore rules.
This lists all files under the project root using a generic file listing
command (fd or find), bypassing `.gitignore', `.projectile', and other
ignore mechanisms."
(interactive)
(let* ((project-root (projectile-acquire-root))
(all-files (projectile-files-via-ext-command project-root projectile-generic-command))
(file (projectile-completing-read "Find file (all): " all-files
:caller 'projectile-read-file)))
(when file
(find-file (expand-file-name file project-root))
(run-hooks 'projectile-find-file-hook))))