You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
dotfiles/vscode/keybindings.json

48 lines
1.3 KiB

// Place your key bindings in this file to override the defaults
[
{
"key": "ctrl+shift+tab",
"command": "-workbench.action.quickOpenLeastRecentlyUsedEditorInGroup",
"when": "!activeEditorGroupEmpty",
},
{
"key": "ctrl+shift+tab",
"command": "-workbench.action.quickOpenNavigatePreviousInEditorPicker",
"when": "inEditorsPicker && inQuickOpen",
},
{
"key": "ctrl+shift+tab",
"command": "workbench.action.previousEditor",
},
{
"key": "ctrl+tab",
"command": "-workbench.action.quickOpenPreviousRecentlyUsedEditorInGroup",
"when": "!activeEditorGroupEmpty",
},
{
"key": "ctrl+tab",
"command": "-workbench.action.quickOpenNavigateNextInEditorPicker",
"when": "inEditorsPicker && inQuickOpen",
},
{
"key": "ctrl+tab",
"command": "workbench.action.nextEditor",
},
{
"key": "ctrl+shift+alt+,",
"command": "workbench.action.openSettingsJson",
},
{
"key": "ctrl+shift+cmd+,",
"command": "workbench.action.openSettingsJson",
},
{
"key": "ctrl+shift+alt+.",
"command": "workbench.action.openGlobalKeybindingsFile",
},
{
"key": "ctrl+shift+cmd+.",
"command": "workbench.action.openGlobalKeybindingsFile",
},
]