https://github.com/will-wow/vscode-open-buffers
Quickly search your open buffers in VS Code
https://github.com/will-wow/vscode-open-buffers
buffers vscode vscode-extension
Last synced: 23 days ago
JSON representation
Quickly search your open buffers in VS Code
- Host: GitHub
- URL: https://github.com/will-wow/vscode-open-buffers
- Owner: will-wow
- License: mit
- Created: 2018-05-29T09:59:35.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-05-29T10:25:23.000Z (over 7 years ago)
- Last Synced: 2025-03-30T13:12:16.489Z (6 months ago)
- Topics: buffers, vscode, vscode-extension
- Language: TypeScript
- Size: 47.9 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# vscode-open-buffers README
It's nice that VS Code has a list of open files in the file explorer, but I'd like to fuzzy search that like I can Cmd/Ctrl-P. This lets you do that.
If you're used to using vim `buffers`, particular with `fzf`, this may be for you.
Note that with this, you may want to turn off the open files list with
```json
"explorer.openEditors.visible": 0,
```You might also want to turn off the "preview" functionality that makes single-clicking a file, then single-clicking another file, close the first file.
```json
"workbench.editor.enablePreview": false,
"workbench.editor.enablePreviewFromQuickOpen": false,
```## Features
To open a file list, press Ctrl-Shift-P (Cmd-Shift-P on Mac) to open the command pane, then type `Open Buffer` and press Enter. This will give you a list of currently open buffers. Select one to jump to it.
Closing a file with the X button will remove it from this list.
## Known Issues
- When VS Code opens with some files already open, Open Buffer won't list those files until you view them.
## Release Notes
### 0.0.1
- Added basic Open Buffer command