Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/fabiospampinato/vscode-open-multiple-files
- Owner: fabiospampinato
- License: mit
- Created: 2018-03-12T22:21:44.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2024-03-30T16:30:13.000Z (10 months ago)
- Last Synced: 2024-11-28T04:02:55.501Z (2 months ago)
- Topics: extension, files, multiple, open, vscode
- Language: TypeScript
- Size: 800 KB
- Stars: 14
- Watchers: 3
- Forks: 3
- Open Issues: 4
-
Metadata Files:
- Readme: readme.md
- Changelog: changelog.md
- License: license
Awesome Lists containing this project
README
# Open Multiple Files
![]()
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