From a5b760f8d1c252d8ed9815c65f8dc398a6be9675 Mon Sep 17 00:00:00 2001 From: Stefan Haller Date: Thu, 2 Apr 2026 15:55:39 +0200 Subject: [PATCH] Fix typo in keybinding An uppercase letter is not valid with ctrl, and only works because we lowercase the string before parsing it. This will change later in this branch when we start supporting bindings like . --- docs-master/Config.md | 2 +- pkg/config/user_config.go | 2 +- schema-master/config.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs-master/Config.md b/docs-master/Config.md index 9931fda61..265ba2311 100644 --- a/docs-master/Config.md +++ b/docs-master/Config.md @@ -746,7 +746,7 @@ keybinding: markCommitAsBaseForRebase: B tagCommit: T checkoutCommit: - resetCherryPick: + resetCherryPick: copyCommitAttributeToClipboard: "y" openLogMenu: openInBrowser: o diff --git a/pkg/config/user_config.go b/pkg/config/user_config.go index 29778d639..2106e2ad2 100644 --- a/pkg/config/user_config.go +++ b/pkg/config/user_config.go @@ -1044,7 +1044,7 @@ func GetDefaultConfig() *UserConfig { MarkCommitAsBaseForRebase: "B", CreateTag: "T", CheckoutCommit: "", - ResetCherryPick: "", + ResetCherryPick: "", CopyCommitAttributeToClipboard: "y", OpenLogMenu: "", OpenInBrowser: "o", diff --git a/schema-master/config.json b/schema-master/config.json index c4312981f..590a1a9b9 100644 --- a/schema-master/config.json +++ b/schema-master/config.json @@ -1040,7 +1040,7 @@ }, "resetCherryPick": { "type": "string", - "default": "\u003cc-R\u003e" + "default": "\u003cc-r\u003e" }, "copyCommitAttributeToClipboard": { "type": "string",