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 <c-s-r>.
This commit is contained in:
Stefan Haller 2026-04-02 15:55:39 +02:00
parent 69635f379c
commit a5b760f8d1
3 changed files with 3 additions and 3 deletions

View file

@ -746,7 +746,7 @@ keybinding:
markCommitAsBaseForRebase: B
tagCommit: T
checkoutCommit: <space>
resetCherryPick: <c-R>
resetCherryPick: <c-r>
copyCommitAttributeToClipboard: "y"
openLogMenu: <c-l>
openInBrowser: o

View file

@ -1044,7 +1044,7 @@ func GetDefaultConfig() *UserConfig {
MarkCommitAsBaseForRebase: "B",
CreateTag: "T",
CheckoutCommit: "<space>",
ResetCherryPick: "<c-R>",
ResetCherryPick: "<c-r>",
CopyCommitAttributeToClipboard: "y",
OpenLogMenu: "<c-l>",
OpenInBrowser: "o",

View file

@ -1040,7 +1040,7 @@
},
"resetCherryPick": {
"type": "string",
"default": "\u003cc-R\u003e"
"default": "\u003cc-r\u003e"
},
"copyCommitAttributeToClipboard": {
"type": "string",