mirror of
https://github.com/jesseduffield/lazygit.git
synced 2026-09-15 01:56:24 -04:00
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:
parent
69635f379c
commit
a5b760f8d1
|
|
@ -746,7 +746,7 @@ keybinding:
|
|||
markCommitAsBaseForRebase: B
|
||||
tagCommit: T
|
||||
checkoutCommit: <space>
|
||||
resetCherryPick: <c-R>
|
||||
resetCherryPick: <c-r>
|
||||
copyCommitAttributeToClipboard: "y"
|
||||
openLogMenu: <c-l>
|
||||
openInBrowser: o
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -1040,7 +1040,7 @@
|
|||
},
|
||||
"resetCherryPick": {
|
||||
"type": "string",
|
||||
"default": "\u003cc-R\u003e"
|
||||
"default": "\u003cc-r\u003e"
|
||||
},
|
||||
"copyCommitAttributeToClipboard": {
|
||||
"type": "string",
|
||||
|
|
|
|||
Loading…
Reference in a new issue