Skip to content

Instantly share code, notes, and snippets.

@rubberduck203
Created May 12, 2018 10:56
Show Gist options
  • Save rubberduck203/57770e164e6f5a62a49458fee3ad2ee3 to your computer and use it in GitHub Desktop.
Save rubberduck203/57770e164e6f5a62a49458fee3ad2ee3 to your computer and use it in GitHub Desktop.
VS Code Keybindings for running tests and switching terminal sessions
// 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