Skip to content

Instantly share code, notes, and snippets.

@VAggrippino
Created November 14, 2018 01:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save VAggrippino/e6aff0bd4fddd107c67a358aed6f680b to your computer and use it in GitHub Desktop.
Save VAggrippino/e6aff0bd4fddd107c67a358aed6f680b to your computer and use it in GitHub Desktop.
Switch back and forth between terminal and editor in #VSCode
// 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