Created
November 14, 2018 01:26
-
-
Save VAggrippino/e6aff0bd4fddd107c67a358aed6f680b to your computer and use it in GitHub Desktop.
Switch back and forth between terminal and editor in #VSCode
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
// This should probably be inserted into | |
// $HOME/.config/Code/User/keybindings.json (Linux) or | |
// %APPDATA%\Code\User\keybindings.json (Windows) | |
{ | |
"key": "ctrl+`", | |
"command": "workbench.action.focusActiveEditorGroup", | |
"when": "terminalFocus" | |
}, | |
{ | |
"key": "ctrl+`", | |
"command": "workbench.action.terminal.focus", | |
"when": "!terminalFocus" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment