Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/fabiospampinato/vscode-open-multiple-files

Open all files in a folder at once, optionally filtering by a glob.
https://github.com/fabiospampinato/vscode-open-multiple-files

extension files multiple open vscode

Last synced: 2 months ago
JSON representation

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

Awesome Lists containing this project

README

        

# 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](https://github.com/fabiospampinato/zeptomatch).

## Install

Follow the instructions in the [Marketplace](https://marketplace.visualstudio.com/items?itemName=fabiospampinato.vscode-open-multiple-files), or run the following in the command palette:

```shell
ext install fabiospampinato.vscode-open-multiple-files
```

## Usage

It adds 1 command to the command palette:

```js
'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

```js
{
"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