-
-
Notifications
You must be signed in to change notification settings - Fork 2k
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
Glob: support for [^...] notation #663
Comments
Sorry, I got confused. RipGrep is supporting I am however not finding a standard that describes the |
Your second comment has it right. |
FYI, even though POSIX (2.13.1) leaves the behaviour undefined, most glob-pattern implementations actually do support Something worth considering? |
@okdana Cool, I didn't know that! I'm hopeful that it is a relatively simple addition to the |
Adds support for [^...] class negation in globs for parity with git, &al. Fixes BurntSushi#663
Adds support for [^...] class negation in globs for parity with git, &al. Fixes #663
It looks like RipGrep is already supporting the
[^...]
syntax for glob patterns which will match on a character-range with negation. Can the[!...]
syntax also be supported for the same purpose?From http://man7.org/linux/man-pages/man7/glob.7.html
The text was updated successfully, but these errors were encountered: