Last active
October 2, 2018 21:02
-
-
Save garretttaco/d70cd914e24a68af5ccf63d59666491b to your computer and use it in GitHub Desktop.
Windows keybindings for VSCode
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ "key": "capslock", "command": "extension.vim_escape" }, | |
{ | |
"key": "ctrl+j", | |
"command": "workbench.action.terminal.toggleTerminal" | |
}, | |
{ | |
"key": "ctrl+`", | |
"command": "workbench.action.focusActiveEditorGroup", | |
"when": "terminalFocus" | |
}, | |
{ | |
"key": "ctrl+`", | |
"command": "workbench.action.terminal.focus", | |
"when": "!terminalFocus" | |
}, | |
{ "key": "ctrl+w", "command": "workbench.action.closeActiveEditor" }, | |
{ | |
"key": "ctrl+SHIFT+]", | |
"command": "workbench.action.terminal.focusNext", | |
"when": "terminalFocus" | |
}, | |
{ | |
"key": "ctrl+SHIFT+[", | |
"command": "workbench.action.terminal.focusPrevious", | |
"when": "terminalFocus" | |
}, | |
{ | |
"key": "ctrl+SHIFT+]", | |
"command": "workbench.action.nextEditor", | |
"when": "!terminalFocus" | |
}, | |
{ | |
"key": "ctrl+SHIFT+[", | |
"command": "workbench.action.previousEditor", | |
"when": "!terminalFocus" | |
}, | |
{ | |
"key": "ctrl+d", | |
"command": "workbench.action.terminal.kill", | |
"when": "terminalFocus" | |
}, | |
{ | |
"key": "ctrl+n", | |
"command": "workbench.action.terminal.new", | |
"when": "terminalFocus" | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment