1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-01-04 03:48:07 +02:00

PickBothHunks -> pickBothHunks

This commit is contained in:
David Chen 2020-01-06 23:37:21 +08:00
parent 86b101c410
commit 0ddf7c05c8
3 changed files with 3 additions and 3 deletions

View File

@ -119,7 +119,7 @@ Default path for the config file: `~/.config/jesseduffield/lazygit/config.yml`
toggleDragSelect: 'v'
toggleDragSelect-alt: 'V'
toggleSelectHunk: 'a'
PickBothHunks: 'b'
pickBothHunks: 'b'
undo: 'z'
```

View File

@ -352,7 +352,7 @@ keybinding:
toggleDragSelect: 'v'
toggleDragSelect-alt: 'V'
toggleSelectHunk: 'a'
PickBothHunks: 'b'
pickBothHunks: 'b'
undo: 'z'
`)
}

View File

@ -1260,7 +1260,7 @@ func (gui *Gui) GetInitialKeybindings() []*Binding {
{
ViewName: "main",
Contexts: []string{"merging"},
Key: gui.getKey("main.PickBothHunks"),
Key: gui.getKey("main.pickBothHunks"),
Modifier: gocui.ModNone,
Handler: gui.handlePickBothHunks,
Description: gui.Tr.SLocalize("PickBothHunks"),