Skip to content

Add projectile-find-file-all to find files ignoring VCS rules#1981

Open
bbatsov wants to merge 1 commit intomasterfrom
feature/1001-find-all-files
Open

Add projectile-find-file-all to find files ignoring VCS rules#1981
bbatsov wants to merge 1 commit intomasterfrom
feature/1001-find-all-files

Conversation

@bbatsov
Copy link
Owner

@bbatsov bbatsov commented Feb 15, 2026

Summary

  • Adds projectile-find-file-all command that lists all files under the project root, bypassing .gitignore, .projectile, and other ignore mechanisms
  • Uses projectile-generic-command (fd or find) which operates on the raw filesystem
  • Also added to the Projectile menu under Find

Closes #1001

Test plan

  • In a git project with .gitignore rules, run projectile-find-file — ignored files are excluded
  • Run projectile-find-file-all — all files appear, including those in .gitignore
  • Verify completion works and selecting a file opens it correctly

Closes #1001

Add a new command that lists all files under the project root using
a generic file listing command (fd or find), bypassing .gitignore,
.projectile, and other ignore mechanisms. This is useful when you
need to find files that are normally excluded from the project.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

how to find files regardless of their ignore state

1 participant

Comments