Skip to content

Instantly share code, notes, and snippets.

@codeandcats
Last active April 29, 2019 23:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codeandcats/caf99e32fcfe2e2bb8a86686f0374b2c to your computer and use it in GitHub Desktop.
Save codeandcats/caf99e32fcfe2e2bb8a86686f0374b2c to your computer and use it in GitHub Desktop.
VSCode Custom Key Bindings
[
{
"key": "cmd+enter",
"command": "workbench.action.terminal.focus",
"when": "!terminalFocus"
},
{
"key": "cmd+enter",
"command": "workbench.action.terminal.toggleTerminal",
"when": "terminalFocus"
},
{
"key": "cmd+shift+enter",
"command": "workbench.action.terminal.new"
},
{
"key": "cmd+shift+k",
"command": "workbench.action.terminal.kill"
},
{
"key": "cmd+up",
"command": "workbench.action.terminal.focusPrevious",
"when": "terminalFocus"
},
{
"key": "cmd+down",
"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