mirror of
https://github.com/jesseduffield/lazygit.git
synced 2026-09-10 15:46:26 -04:00
Added rebase keybinding
This commit is contained in:
parent
27994f7de8
commit
88c01c1ded
|
|
@ -316,6 +316,12 @@ func (gui *Gui) GetKeybindings() []*Binding {
|
|||
Modifier: gocui.ModNone,
|
||||
Handler: gui.handleDeleteBranch,
|
||||
Description: gui.Tr.SLocalize("deleteBranch"),
|
||||
}, {
|
||||
ViewName: "branches",
|
||||
Key: 'r',
|
||||
Modifier: gocui.ModNone,
|
||||
Handler: gui.handleRebase,
|
||||
Description: gui.Tr.SLocalize("rebaseBranch"),
|
||||
}, {
|
||||
ViewName: "branches",
|
||||
Key: 'm',
|
||||
|
|
|
|||
Loading…
Reference in a new issue