Skip to content

Instantly share code, notes, and snippets.

@estshorter
Last active December 31, 2019 00:44
Show Gist options
  • Save estshorter/86188011069356ba92e07a4f7315305c to your computer and use it in GitHub Desktop.
Save estshorter/86188011069356ba92e07a4f7315305c to your computer and use it in GitHub Desktop.
keybindings.json for VS Code
// 既定値を上書きするには、このファイル内にキー バインドを挿入しますauto[]
[
{
"key": "ctrl+f9",
"command": "python.execInTerminal",
"when": "editorLangId == 'python'"
},
{
"key": "ctrl+;",
"command": "workbench.action.terminal.focus",
"when": "editorTextFocus"
},
{
"key": "ctrl+;",
"command": "workbench.action.focusFirstEditorGroup",
"when": "terminalFocus"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment