notes/.config/VSCodium/User/keybindings.json

50 lines
No EOL
1.2 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"
}
]