added gitlens.pushRepositories key shourtcut

This commit is contained in:
2026-04-28 14:46:12 -04:00
parent e148eeb8cc
commit 0e2ada067d
+11 -7
View File
@@ -2,28 +2,32 @@
{ {
"key": "shift+alt+f", "key": "shift+alt+f",
"command": "editor.action.formatDocument", "command": "editor.action.formatDocument",
"when": "editorHasDocumentFormattingProvider && editorTextFocus && !editorReadonly && !inCompositeEditor" "when": "editorHasDocumentFormattingProvider && editorTextFocus && !editorReadonly && !inCompositeEditor",
}, },
{ {
"key": "alt+a d", "key": "alt+a d",
"command": "cSpell.addWordToWorkspaceSettings" "command": "cSpell.addWordToWorkspaceSettings",
}, },
{ {
"key": "ctrl+shift+`", "key": "ctrl+shift+`",
"command": "workbench.action.createTerminalEditor" "command": "workbench.action.createTerminalEditor",
}, },
{ {
"key": "ctrl+shift+`", "key": "ctrl+shift+`",
"command": "-workbench.action.terminal.new", "command": "-workbench.action.terminal.new",
"when": "terminalProcessSupported || terminalWebExtensionContributedProfile" "when": "terminalProcessSupported || terminalWebExtensionContributedProfile",
}, },
{ {
"key": "ctrl+shift+g r", "key": "ctrl+shift+g r",
"command": "gitlens.git.rebase" "command": "gitlens.git.rebase",
}, },
{ {
"key": "ctrl+shift+g c", "key": "ctrl+shift+g c",
"command": "-gitlens.showQuickCommitFileDetails", "command": "-gitlens.showQuickCommitFileDetails",
"when": "editorTextFocus && !gitlens:disabled && config.gitlens.keymap == 'chorded'" "when": "editorTextFocus && !gitlens:disabled && config.gitlens.keymap == 'chorded'",
} },
{
"key": "ctrl+shift+g p",
"command": "gitlens.pushRepositories",
},
] ]