We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
It seems that vscod.workspace.findFiles doesn't support extended patterns such as:
vscod.workspace.findFiles
**/+(gulpfile.js|package.json) or '**/@(node_modules|jspm_packages|bower_components)/**'
**/+(gulpfile.js|package.json)
'**/@(node_modules|jspm_packages|bower_components)/**'
http://www.linuxjournal.com/content/bash-extended-globbing
it is quite limiting.
The text was updated successfully, but these errors were encountered:
Or another proposal is to add ability for mult-pattern so it would be possible to pass array of simple patterns.
BTW findFIles works quite slowly is it because it checks all the nested folders and tests all files against exclude pattern?
findFIles
Sorry, something went wrong.
Unlikely given that we now depend on RipGrep glob handling, but I let @roblourens decide
I opened this issue to allow passing an array of patterns: #38545. I much prefer that over supporting extended glob syntax.
roblourens
No branches or pull requests
It seems that
vscod.workspace.findFiles
doesn't support extended patterns such as:**/+(gulpfile.js|package.json)
or'**/@(node_modules|jspm_packages|bower_components)/**'
http://www.linuxjournal.com/content/bash-extended-globbing
it is quite limiting.
The text was updated successfully, but these errors were encountered: