Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save bnb/5ed416db9125bfa4d0d3461364a97321 to your computer and use it in GitHub Desktop.
Save bnb/5ed416db9125bfa4d0d3461364a97321 to your computer and use it in GitHub Desktop.
VS Code's default keybinds for switching between open terminals (Windows, maybe cross-platform!)
{ "key": "alt+down", "command": "workbench.action.terminal.focusNextPane",
"when": "terminalFocus" },
{ "key": "alt+right", "command": "workbench.action.terminal.focusNextPane",
"when": "terminalFocus" },
{ "key": "alt+up", "command": "workbench.action.terminal.focusPreviousPane",
"when": "terminalFocus" },
{ "key": "alt+left", "command": "workbench.action.terminal.focusPreviousPane",
"when": "terminalFocus" },
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment