Created
December 2, 2020 22:11
-
-
Save dgowrie/c9022b05808632544a3472ceb961fbb0 to your computer and use it in GitHub Desktop.
VS Code user key bindings
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 override the defaultsauto[] | |
[ | |
{ | |
"key": "ctrl+cmd+g", | |
"command": "editor.action.selectHighlights", | |
"when": "editorFocus" | |
}, | |
{ | |
"key": "shift+cmd+l", | |
"command": "-editor.action.selectHighlights", | |
"when": "editorFocus" | |
}, | |
{ | |
"key": "ctrl+cmd+left", | |
"command": "workbench.action.terminal.focusPrevious", | |
"when": "terminalFocus && terminalProcessSupported" | |
}, | |
{ | |
"key": "ctrl+cmd+right", | |
"command": "workbench.action.terminal.focusNext", | |
"when": "terminalFocus && terminalProcessSupported" | |
}, | |
{ | |
"key": "shift+cmd+,", | |
"command": "workbench.action.toggleMaximizedPanel", | |
"when": "terminalFocus && terminalProcessSupported" | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment