added gitlens.pushRepositories key shourtcut

This commit is contained in:
2026-04-28 14:46:12 -04:00
parent 374d7e8d38
commit 25ab6b2ab6
+11 -7
View File
@@ -2,28 +2,32 @@
{
"key": "shift+alt+f",
"command": "editor.action.formatDocument",
"when": "editorHasDocumentFormattingProvider && editorTextFocus && !editorReadonly && !inCompositeEditor"
"when": "editorHasDocumentFormattingProvider && editorTextFocus && !editorReadonly && !inCompositeEditor",
},
{
"key": "alt+a d",
"command": "cSpell.addWordToWorkspaceSettings"
"command": "cSpell.addWordToWorkspaceSettings",
},
{
"key": "ctrl+shift+`",
"command": "workbench.action.createTerminalEditor"
"command": "workbench.action.createTerminalEditor",
},
{
"key": "ctrl+shift+`",
"command": "-workbench.action.terminal.new",
"when": "terminalProcessSupported || terminalWebExtensionContributedProfile"
"when": "terminalProcessSupported || terminalWebExtensionContributedProfile",
},
{
"key": "ctrl+shift+g r",
"command": "gitlens.git.rebase"
"command": "gitlens.git.rebase",
},
{
"key": "ctrl+shift+g c",
"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",
},
]