Skip to content

Instantly share code, notes, and snippets.

@dgowrie
Created December 2, 2020 22:11
Show Gist options
  • Save dgowrie/c9022b05808632544a3472ceb961fbb0 to your computer and use it in GitHub Desktop.
Save dgowrie/c9022b05808632544a3472ceb961fbb0 to your computer and use it in GitHub Desktop.
VS Code user key bindings
// 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