-
Notifications
You must be signed in to change notification settings - Fork 30.7k
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
findTextInFiles fails on redundant glob #104889
Comments
Should it be wrapped in |
We use |
Yeah but I think that if you want that second argument to be parsed as a list, it needs to be wrapped in curly braces. |
As in |
Yeah |
Ok. Is that something we should do for all patterns? That is, change
to
|
I believe so. Are they working as is? |
Yea, it works in general, just not this case. I'll give it a shot. |
It seems like ripgrep doesn't like that, |
This also seems to fail if the pattern |
Refs #104648 (comment)
There's an outfile pattern that we compile to
new RelativePattern('<workspaceFolder>', 'dist/**/*.js, dist/*.js')
. This fails to match anything, butnew RelativePattern('<workspaceFolder>', 'dist/**/*.js')
works.Complete options:
The text was updated successfully, but these errors were encountered: