Skip to content

Instantly share code, notes, and snippets.

@jshbrntt
Created June 1, 2018 13:43
Show Gist options
  • Save jshbrntt/433e6c4541a35e87ac2784b6990f08bd to your computer and use it in GitHub Desktop.
Save jshbrntt/433e6c4541a35e87ac2784b6990f08bd to your computer and use it in GitHub Desktop.
VSCode Keybindings
// Place your key bindings in this file to overwrite the defaults
[
{
"key": "shift+cmd+]",
"command": "workbench.action.terminal.focusNext",
"when": "terminalFocus"
},
{
"key": "shift+cmd+[",
"command": "workbench.action.terminal.focusPrevious",
"when": "terminalFocus"
},
{
"key": "cmd+t",
"command": "workbench.action.terminal.new",
"when": "terminalFocus"
},
{
"key": "cmd+w",
"command": "workbench.action.terminal.kill",
"when": "terminalFocus"
},
{
"key": "ctrl+shift+up",
"command": "editor.action.insertCursorAbove",
"when": "editorTextFocus"
},
{
"key": "alt+cmd+up",
"command": "-editor.action.insertCursorAbove",
"when": "editorTextFocus"
},
{
"key": "ctrl+shift+down",
"command": "editor.action.insertCursorBelow",
"when": "editorTextFocus"
},
{
"key": "alt+cmd+down",
"command": "-editor.action.insertCursorBelow",
"when": "editorTextFocus"
},
{
"key": "ctrl+q",
"command": "-workbench.action.quickOpenView"
},
{
"key": "ctrl+q",
"command": "-workbench.action.quickOpenNavigateNextInViewPicker"
},
{
"key": "ctrl+shift+q",
"command": "workbench.action.toggleMaximizedPanel"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment