63 lines
No EOL
1.5 KiB
JSON
63 lines
No EOL
1.5 KiB
JSON
// Place your key bindings in this file to override the defaults
|
|
[
|
|
{
|
|
"key": "ctrl+tab",
|
|
"command": "workbench.action.nextEditor"
|
|
},
|
|
{
|
|
"key": "alt+tab",
|
|
"command": "workbench.action.nextEditor"
|
|
},
|
|
{
|
|
"key": "alt+right",
|
|
"command": "workbench.action.nextEditor"
|
|
},
|
|
{
|
|
"key": "ctrl+shift+tab",
|
|
"command": "workbench.action.previousEditor"
|
|
},
|
|
{
|
|
"key": "alt+shift+tab",
|
|
"command": "workbench.action.previousEditor"
|
|
},
|
|
{
|
|
"key": "alt+left",
|
|
"command": "workbench.action.previousEditor"
|
|
},
|
|
{
|
|
"key": "ctrl+t",
|
|
"command": "workbench.action.files.newUntitledFile"
|
|
},
|
|
{
|
|
"key": "ctrl+h",
|
|
"command": "workbench.action.focusPreviousGroup",
|
|
"when": "activeEditorGroupIndex != 0"
|
|
},
|
|
{
|
|
"key": "ctrl+l",
|
|
"command": "workbench.action.focusNextGroup",
|
|
"when": "activeEditorGroupIndex != editorGroupCount - 1"
|
|
},
|
|
{
|
|
"key": "space '",
|
|
"command": "workbench.action.toggleSidebarVisibility",
|
|
"when": "sideBarFocus && activeViewlet != workbench.view.extensions && activeViewlet != workbench.view.search && activeViewlet != workbench.view.scm"
|
|
},
|
|
{
|
|
"key": "ctrl+p",
|
|
"command": "workbench.action.quickOpen"
|
|
},
|
|
{
|
|
"key": "alt+enter",
|
|
"command": "workbench.action.terminal.toggleTerminal"
|
|
},
|
|
{
|
|
"key": "ctrl+enter",
|
|
"command": "workbench.action.terminal.new"
|
|
},
|
|
{
|
|
"key": "ctrl+down",
|
|
"command": "workbench.action.terminal.focusNext",
|
|
"when": "!terminalFocus"
|
|
},
|
|
] |