Last active
April 29, 2019 23:09
-
-
Save codeandcats/caf99e32fcfe2e2bb8a86686f0374b2c to your computer and use it in GitHub Desktop.
VSCode Custom 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
[ | |
{ | |
"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