Skip to content

Instantly share code, notes, and snippets.

@felixheck
Created November 26, 2020 14:19
Show Gist options
  • Save felixheck/0538e2de019e09136235b5a71a544936 to your computer and use it in GitHub Desktop.
Save felixheck/0538e2de019e09136235b5a71a544936 to your computer and use it in GitHub Desktop.
VS Code Terminal Shortcuts
[
{
"key": "ctrl+alt+o",
"command": "workbench.action.openRecent"
},
{
"key": "ctrl+alt+w",
"command": "workbench.action.closeFolder"
},
{
"key": "ctrl+shift+[Backquote]",
"command": "workbench.action.terminal.toggleTerminal"
},
{
"key": "ctrl+alt+[Backquote]",
"command": "workbench.action.terminal.new",
"when": "editorIsOpen"
},
{
"key": "alt+cmd+left",
"command": "workbench.action.terminal.focusPrevious",
"when": "terminalFocus"
},
{
"key": "alt+cmd+right",
"command": "workbench.action.terminal.focusNext",
"when": "terminalFocus"
},
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment