Skip to content

Instantly share code, notes, and snippets.

@lucasengel
Last active October 15, 2019 02:16
Show Gist options
  • Save lucasengel/2e4e5fecb2d3a3dd635f5535c8926eb1 to your computer and use it in GitHub Desktop.
Save lucasengel/2e4e5fecb2d3a3dd635f5535c8926eb1 to your computer and use it in GitHub Desktop.
VS Code Keybinding
// Place your key bindings in this file to overwrite the defaults
[
{
"key": "ctrl+shift+tab",
"command": "workbench.action.previousEditor"
}, {
"key": "ctrl+tab",
"command": "workbench.action.nextEditor"
}, {
"key": "ctrl+tab",
"command": "workbench.action.nextEditor"
}, {
"key": "ctrl+shift+tab",
"command": "workbench.action.previousEditor"
}, {
"key": "ctrl+tab",
"command": "workbench.action.nextSideBarView",
"when": "sideBarFocus"
}, {
"key": "ctrl+shift+tab",
"command": "workbench.action.previousSideBarView",
"when": "sideBarFocus"
}, {
"key": "ctrl+tab",
"command": "workbench.action.nextPanelView",
"when": "panelFocus"
}, {
"key": "ctrl+shift+tab",
"command": "workbench.action.previousPanelView",
"when": "panelFocus"
}, {
"key": "ctrl+tab",
"command": "workbench.action.terminal.focusNextPane",
"when": "terminalFocus"
}, {
"key": "ctrl+shift+tab",
"command": "workbench.action.terminal.focusPreviousPane",
"when": "terminalFocus"
}, {
"key": "cmd+w",
"command": "workbench.action.terminal.kill",
"when": "terminalFocus"
},
{
"key": "shift+alt+cmd+w",
"command": "editor.emmet.action.wrapWithAbbreviation"
},
{
"key": "alt+z",
"command": "-editor.action.toggleWordWrap"
},
{
"key": "shift+alt+w",
"command": "editor.emmet.action.wrapIndividualLinesWithAbbreviation"
},
{
"key": "alt+tab",
"command": "extension.jumpy-word",
"when": "editorTextFocus"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment