-
Notifications
You must be signed in to change notification settings - Fork 11
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
Improving inverted match #13
Comments
That's a good idea. You can submit a patch. |
to match dirs, I used Not sure it is completely correct, but it worked for me. |
I believe this ^^ directory-matching technique solves the problem |
That works, but it also matches files that are called "subDir1". |
I've made a patch that appends a slash when matching directories in #31. It will however break existing filters, please suggest how to make it backwards-compatible? The other option that would work for me (since I want to allow all directories) is to add DIR to the list of filetypes to match: |
I'd like to show only .jpg (or .JPG) files in a multilevel directory tree.
Unfortunately, from what I understand it's not currently possible to match dirs specifically.
What if dirs were matched with a trailing slash, as in:
This way it would be easy to create a regex to match jpgs or folders.
What do you think of this?
The text was updated successfully, but these errors were encountered: