Open all files in a folder at once, optionally filtering by a glob.
You can read more about the supported glob syntax here.
Follow the instructions in the Marketplace, or run the following in the command palette:
ext install fabiospampinato.vscode-open-multiple-files
It adds 1 command to the command palette:
'Open Multiple Files' // Open all files at once, optionally filtering by a glob
You can also right click a folder in the explorer and only search in that folder.
{
"openMultipleFiles.exclude": null, // An array of globs to exclude, unless specificed it uses the "files.exclude" setting
"openMultipleFiles.ignore": [".gitignore"], // An array of names for .gitignore-like files to use
"openMultipleFiles.limit": 100 // Max number of files to open
}
MIT © Fabio Spampinato