-
-
Notifications
You must be signed in to change notification settings - Fork 581
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
projectile-find-file not working for .gitignored directories despite them being unignored #1475
Comments
I just ran into this. It does not seem like unignoring is supposed to work in alien mode. See the documentation for projectile-indexing-method. However, hybrid mode doesn't work either. There is a mistake in projectile-keep-ignored-directories. I'm working on a pull request. |
When using hybrid mode and unignoring files that are ignored by git, the settings in .projectile would not work. The arguments to internal function projectile-get-repo-ignored-directory were in the wrong order. So it would return nil instead of the desired list of git ignored files. The issue is caught by the projectile-add-unignored test.
When using hybrid mode and unignoring files that are ignored by git, the settings in .projectile would not work. The arguments to internal function projectile-get-repo-ignored-directory were in the wrong order. So it would return nil instead of the desired list of git ignored files. The issue is caught by the projectile-add-unignored test.
When using hybrid mode and unignoring files that are ignored by git, the settings in .projectile would not work. The arguments to internal function projectile-get-repo-ignored-directory were in the wrong order. So it would return nil instead of the desired list of git ignored files. The issue is caught by the projectile-add-unignored test.
I can't make this work for the life of me. It's driving me crazy. I'm using projectile with Doom Emacs. I've the variable, I can see that it's set when I inspect vars, but still can't find a file located in my |
projectile-globally-unignored-directories is a variable defined in ‘projectile.el’.
Its value is ("/vendor/")
(tried vendor/ and vendor too)
vendor is gitignored and I have tried to enable it as a search candidate by using the setting above. Indexing is off and indexing method is, if relevant, set to alien in case its used elsewhere for search algorithms.
So: how do I enable projectile to search gitgnored subdirectories. In this case I want it to search the symfony vendor subdirectory.
The text was updated successfully, but these errors were encountered: