Skip to content

Instantly share code, notes, and snippets.

@xsnpdngv
Created December 2, 2020 15:52
Show Gist options
  • Save xsnpdngv/f941fe9d0023e70752cde437138bf82d to your computer and use it in GitHub Desktop.
Save xsnpdngv/f941fe9d0023e70752cde437138bf82d to your computer and use it in GitHub Desktop.
VSCode keybinding to switch between terminals
// Place your key bindings in this file to override the defaults
[
{
"key" : "shift+right", //"ctrl+down" is not working
"command": "workbench.action.terminal.focusNext",
"when" : "terminalFocus",
},
{
"key" : "shift+left", //"ctrl+up" is not working
"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