Skip to content

fabiospampinato/vscode-open-multiple-files

Repository files navigation

Open Multiple Files

Logo

Open all files in a folder at once, optionally filtering by a glob.

You can read more about the supported glob syntax here.

Install

Follow the instructions in the Marketplace, or run the following in the command palette:

ext install fabiospampinato.vscode-open-multiple-files

Usage

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.

Settings

{
  "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
}

License

MIT © Fabio Spampinato