From 25ab6b2ab6402fef3eadf50597e6558003aa6ddc Mon Sep 17 00:00:00 2001 From: Richie Cahill Date: Tue, 28 Apr 2026 14:46:12 -0400 Subject: [PATCH] added gitlens.pushRepositories key shourtcut --- users/richie/home/gui/vscode/keybindings.json | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/users/richie/home/gui/vscode/keybindings.json b/users/richie/home/gui/vscode/keybindings.json index cc81b61..5966f10 100644 --- a/users/richie/home/gui/vscode/keybindings.json +++ b/users/richie/home/gui/vscode/keybindings.json @@ -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", + }, ]