Last active
April 18, 2018 22:13
-
-
Save yoelrc88/cd79fcd919cce88c1da07bea452bdae8 to your computer and use it in GitHub Desktop.
VSCode Keyboard Setup
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
// 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