-
Notifications
You must be signed in to change notification settings - Fork 409
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
Support ignore files #350
Comments
We already have a FR of "Hide specified files or directories" noted in #51. But I don't want to impl it through |
Is it really that inefficient? It only needs to check and parse ignore files in the 2-3 visible panes right? fd does this and it's still the most efficient file list tool all around. |
I see ranger using a global regex to filter them. e.g.
|
Due to the necessity of recursively collecting all Introducing additional caching mechanisms is also required for this, necessitating an appropriate cache invalidation strategy. Maybe we could collect
Yea that would be an ideal approach, we could expand it further though |
Besides global filtering, I think it would be nice to have a way to hide files in specific directories, too. For example, Nautilus, Dolphin and Thunar use the |
This FR is already been in Feature Requests, closing in favor of that list |
I'm going to lock this issue because it has been closed for 30 days. ⏳ This helps our maintainers find and focus on the active issues. If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further. |
Is your feature request related to a problem? Please describe
It'd be nice to be able to automatically hide files in ignore files
Will you be willing to contribute this feature?
Describe the solution you'd like
Support ignore files. There's this snippet from
man fd
describing the types of ignore files that might be useful to support:I think supporting at least
.gitignore
and.ignore
would be reasonable.Describe alternatives you've considered
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: