Created
July 30, 2018 14:10
-
-
Save wsmelton/27766fd0356a4f4f92d87238a820cb9b to your computer and use it in GitHub Desktop.
My key bindings for VS Code
This file contains 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": "alt+up", | |
"command": "workbench.action.navigateUp" | |
}, | |
{ | |
"key": "alt+down", | |
"command": "workbench.action.navigateDown" | |
}, | |
{ | |
"key": "ctrl+shift+i", | |
"command": "workbench.action.terminal.focus", | |
"when": "!terminalFocus" | |
}, | |
{ | |
"key": "ctrl+shift+i", | |
"command": "workbench.action.focusActiveEditorGroup", | |
"when": "terminalFocus" | |
}, | |
{ | |
"key": "alt+right", | |
"command": "workbench.action.terminal.focusNext" | |
}, | |
{ | |
"key": "ctrl+shift+r", | |
"command": "workbench.action.toggleMaximizedPanel" | |
}, | |
{ | |
"key": "ctrl+r", | |
"command": "workbench.action.terminal.toggleTerminal" | |
}, | |
{ | |
"key": "ctrl+`", | |
"command": "-workbench.action.terminal.toggleTerminal" | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment