Skip to content

Instantly share code, notes, and snippets.

@hassaku63
Created July 19, 2019 17:17
Show Gist options
  • Star 12 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save hassaku63/9ddde639088716e63efb8e319fbee4d1 to your computer and use it in GitHub Desktop.
Save hassaku63/9ddde639088716e63efb8e319fbee4d1 to your computer and use it in GitHub Desktop.
VSCode_move_focus_between_editor_and_terminal.json
// VSCodeで、エディタとターミナルを往復できるショートカットの定義
// Place your key bindings in this file to override the defaultsauto[]
[
{
"key": "ctrl+`",
"command": "workbench.action.focusActiveEditorGroup",
"when": "terminalFocus"
},
{
"key": "ctrl+`",
"command": "workbench.action.terminal.focus",
"when": "editorFocus"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment