Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fabiospampinato/vscode-search-open-all-results
Open all search results at once with a single command.
https://github.com/fabiospampinato/vscode-search-open-all-results
all extension open results search vscode
Last synced: about 1 month ago
JSON representation
Open all search results at once with a single command.
- Host: GitHub
- URL: https://github.com/fabiospampinato/vscode-search-open-all-results
- Owner: fabiospampinato
- License: mit
- Created: 2018-03-19T16:11:01.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2024-03-12T21:27:24.000Z (10 months ago)
- Last Synced: 2024-05-01T12:39:31.689Z (8 months ago)
- Topics: all, extension, open, results, search, vscode
- Language: TypeScript
- Size: 3.1 MB
- Stars: 5
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: readme.md
- Changelog: changelog.md
- License: license
Awesome Lists containing this project
README
# Search - Open All Results
Open all search results at once with a single command.
This extension will loop through all the available search results and open the respective files.
There isn't really a proper API for implementing this, therefor the way this works is a bit hacky, you might find some bugs with it. Try to use this on search queries that produce 1, or very few, results per file.
## Install
Follow the instructions in the [Marketplace](https://marketplace.visualstudio.com/items?itemName=fabiospampinato.vscode-search-open-all-results), or run the following in the command palette:
```shell
ext install fabiospampinato.vscode-search-open-all-results
```## Usage
It adds 1 command, available only when the search pane is visible, to the command palette:
```js
'Search: Open All Results' // Open all search results at once
```## Settings
```js
{
"searchOpenAllResults.delay": 150, // Delay, in milliseconds, between file openings
"searchOpenAllResults.fileResultsLimit": 10, // Maximum number of supported results per file
"searchOpenAllResults.resultsLimit": 250 // Maximum number of results to open
}
```## License
MIT © Fabio Spampinato