Created
May 12, 2018 10:56
-
-
Save rubberduck203/57770e164e6f5a62a49458fee3ad2ee3 to your computer and use it in GitHub Desktop.
VS Code Keybindings for running tests and switching terminal sessions
This file contains 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
// Place your key bindings in this file to overwrite the defaults | |
[ | |
{ | |
"key": "shift+alt+t", | |
"command": "workbench.action.tasks.test" | |
}, | |
{ | |
"key":"alt+cmd+[ArrowDown]", | |
"command": "workbench.action.terminal.focusNext", | |
"when": "terminalFocus" | |
}, | |
{ | |
"key":"alt+cmd+[ArrowUp]", | |
"command": "workbench.action.terminal.focusPrevious", | |
"when": "terminalFocus" | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment