Created
May 15, 2020 22:42
-
-
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!)
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": "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