Skip to content

Instantly share code, notes, and snippets.

@hapo31
Created October 10, 2018 12:33
Show Gist options
  • Save hapo31/c88283ccbe5dba2f1b9d3a84fbe7587e to your computer and use it in GitHub Desktop.
Save hapo31/c88283ccbe5dba2f1b9d3a84fbe7587e to your computer and use it in GitHub Desktop.
vscode key bindings
// 既定値を上書きするには、このファイル内にキー バインドを挿入します
[
{
"key": "ctrl+oem_6",
"command": "workbench.action.terminal.focusNext"
},
{
"key": "ctrl+oem_4",
"command": "workbench.action.terminal.focusPrevious"
},
{
"key": "ctrl+oem_3",
"command": "workbench.action.terminal.focus"
},
{
"key": "ctrl+left",
"command": "workbench.action.terminal.focusPreviousPane",
"when": "terminalFocus"
},
{
"key": "alt+left",
"command": "-workbench.action.terminal.focusPreviousPane",
"when": "terminalFocus"
},
{
"key": "alt+up",
"command": "-workbench.action.terminal.focusPreviousPane",
"when": "terminalFocus"
},
{
"key": "ctrl+right",
"command": "workbench.action.terminal.focusNextPane",
"when": "terminalFocus"
},
{
"key": "alt+right",
"command": "-workbench.action.terminal.focusNextPane",
"when": "terminalFocus"
},
{
"key": "alt+down",
"command": "-workbench.action.terminal.focusNextPane",
"when": "terminalFocus"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment