1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-05-17 22:32:58 +02:00

Added rebase keybinding

This commit is contained in:
Glenn Vriesman 2018-11-29 17:57:51 +01:00 committed by Jesse Duffield
parent 27994f7de8
commit 88c01c1ded

View File

@ -316,6 +316,12 @@ func (gui *Gui) GetKeybindings() []*Binding {
Modifier: gocui.ModNone, Modifier: gocui.ModNone,
Handler: gui.handleDeleteBranch, Handler: gui.handleDeleteBranch,
Description: gui.Tr.SLocalize("deleteBranch"), Description: gui.Tr.SLocalize("deleteBranch"),
}, {
ViewName: "branches",
Key: 'r',
Modifier: gocui.ModNone,
Handler: gui.handleRebase,
Description: gui.Tr.SLocalize("rebaseBranch"),
}, { }, {
ViewName: "branches", ViewName: "branches",
Key: 'm', Key: 'm',