Skip to content

Instantly share code, notes, and snippets.

@yoelrc88
Last active April 18, 2018 22:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yoelrc88/cd79fcd919cce88c1da07bea452bdae8 to your computer and use it in GitHub Desktop.
Save yoelrc88/cd79fcd919cce88c1da07bea452bdae8 to your computer and use it in GitHub Desktop.
VSCode Keyboard Setup
// Place your key bindings in this file to overwrite the defaults
[
{
"key": "ctrl+shift+[BracketLeft]",
"command": "editor.fold",
"when": "editorTextFocus"
},
{
"key": "ctrl+[",
"command": "-editor.fold",
"when": "editorTextFocus"
},
{
"key": "ctrl+shift+[BracketRight]",
"command": "editor.unfold",
"when": "editorFocus"
},
{
"key": "ctrl+]",
"command": "-editor.unfold",
"when": "editorFocus"
},
{
"key": "ctrl+`",
"command": "workbench.action.terminal.focus"
},
{
"key": "ctrl+`",
"command": "workbench.action.focusActiveEditorGroup",
"when": "terminalFocus"
},
{
"key": "escape",
"command": "workbench.action.terminal.toggleTerminal",
"when": "terminalFocus"
},
{
"key": "ctrl+shift+w",
"command": "workbench.action.terminal.kill",
"when": "terminalFocus"
},
{
"key": "ctrl+shift+o",
"command": "workbench.action.terminal.split",
"when": "terminalFocus"
},
{
"key": "ctrl+shift+j",
"command": "workbench.action.editor.previousChange",
"when": "editorFocus"
},
{
"key": "ctrl+shift+k",
"command": "workbench.action.editor.nextChange",
"when": "editorFocus"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment