Skip to content

Instantly share code, notes, and snippets.

@bh-schmidt
Last active May 4, 2020 20:27
Show Gist options
  • Save bh-schmidt/e9ecd619b22a842eacfde045c84e3240 to your computer and use it in GitHub Desktop.
Save bh-schmidt/e9ecd619b22a842eacfde045c84e3240 to your computer and use it in GitHub Desktop.
vscode-shortcuts
[
{
"key": "ctrl+tab",
"command":"workbench.action.nextEditor"
},
{
"key": "ctrl+shift+tab",
"command": "workbench.action.previousEditor"
},
{
"key": "ctrl+alt+c",
"command": "workbench.files.action.collapseExplorerFolders"
},
{
"key": "ctrl+k ctrl+w",
"command": "-workbench.action.closeAllEditors"
},
{
"key": "shift+alt+f",
"command": "explorer.newFolder"
},
{
"key": "shift+alt+f",
"command": "editor.action.format",
"when": "editorFocus"
},
{
"key": "shift+alt+c",
"command": "explorer.newFile"
},
{
"key": "ctrl+shift+w",
"command": "editor.action.addSelectionToNextFindMatch",
"when": "editorFocus"
},
{
"key": "ctrl+d",
"command": "-editor.action.addSelectionToNextFindMatch",
"when": "editorFocus"
}
]
Select current word
CTRL+D
Remove unused imports
ALT+SHIFT+O
Go to explorer
CTRL+SHIFT+E
Collapse all explorer folders
CTRL+ALT+C
Keep tab open
CTRL+K ENTER
Togle word wrap
ALT+Z
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment