Skip to content

Instantly share code, notes, and snippets.

@icecreammatt
Last active June 26, 2018 17:30
Show Gist options
  • Save icecreammatt/aa2c8e2386b53836748002d545687103 to your computer and use it in GitHub Desktop.
Save icecreammatt/aa2c8e2386b53836748002d545687103 to your computer and use it in GitHub Desktop.
VSCode Bindings
// Place your key bindings in this file to overwrite the defaults
[
{
"key": "ctrl+h",
"command": "workbench.action.navigateLeft"
},
{
"key": "ctrl+l",
"command": "workbench.action.navigateRight"
},
{
"key": "ctrl+k",
"command": "workbench.action.navigateUp"
},
{
"key": "ctrl+j",
"command": "workbench.action.navigateDown"
},
{
"key": "ctrl+l",
"command": "workbench.action.terminal.clear",
"when": "terminalFocus"
},
{
"key": "ctrl+shift+j",
"command": "workbench.action.terminal.focusNext",
"when": "terminalFocus"
},
{
"key": "ctrl+shift+k",
"command": "workbench.action.terminal.focusPrevious",
"when": "terminalFocus"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment