-
Notifications
You must be signed in to change notification settings - Fork 382
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
[Feature Request] Ignore anything under a directory or in an ignore file #158
Comments
See #74 |
Wait, I'm a dingbat. Ignoring directories not tagging them (though they are perhaps related) |
No worries! Although, I hate to be the one to say that this is a duplicate of #14... |
I added this in my own notes just today as I play around with and explore the program and was going to suggest it as a feature, so an important thing to cast my vote on. The example I put in my notes was ignoring certain OS files by default, like all This could potentially be implemented as a simple exclusion list which contains folder & file extension entries, but if any item starts with some specific escape character, like say... a minus sign, than those are exceptions. Same could apply for an inclusion list too. For example:
Here every |
That feature is being tracked via #624 (formerly #14 which is now stale). I saw your comment over there as well, and your use cases should be able to be accomplished via a .gitignore style glob list mentioned there. (also please do not comment on old closed issues, this one was closed as being a duplicate and commenting here only serves to unnecessarily notify people and fragment the discussion of present issues.) |
I would love to be able to tag my coding projects, unfortunately, these are often large with thousands of tiny, repetitive, uninteresting files. I would love for the library search to just ignore these.
This can be somewhat automated, for example, a anything listed in a
.gitignore
can probably be ignored. Likewise, a number of project structures have a default "backups ignore these files" signal which can probably be identified.At the bare minimum, letting the user ignore batches of files would be great.
Also, it is important to note that, if you are ignoring a directory, there may be files IN that directory which the user may want to specify as to NOT ignore.
The text was updated successfully, but these errors were encountered: