From 88c01c1dede6fbfbfc6560a74e78a6594e3bd194 Mon Sep 17 00:00:00 2001 From: Glenn Vriesman Date: Thu, 29 Nov 2018 17:57:51 +0100 Subject: [PATCH] Added rebase keybinding --- pkg/gui/keybindings.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkg/gui/keybindings.go b/pkg/gui/keybindings.go index b0c141d73..5bc08db59 100644 --- a/pkg/gui/keybindings.go +++ b/pkg/gui/keybindings.go @@ -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',