summaryrefslogtreecommitdiffstats
path: root/pkg/gui/keybindings.go
diff options
context:
space:
mode:
authormjarkk <mkopenga@gmail.com>2018-12-02 14:58:18 +0100
committermjarkk <mkopenga@gmail.com>2018-12-02 14:58:18 +0100
commit2edd2b74ff68d6f55172c728e9d5f0d2aea69684 (patch)
treec99aadba94b9a30ffe8127c3f8622cf95f4b7f88 /pkg/gui/keybindings.go
parentd91493b5876aeb644dab18b4c41b0ae56fb2f94b (diff)
Removed a lot of useless code
Diffstat (limited to 'pkg/gui/keybindings.go')
-rw-r--r--pkg/gui/keybindings.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/pkg/gui/keybindings.go b/pkg/gui/keybindings.go
index e460e4a1c..b926853ba 100644
--- a/pkg/gui/keybindings.go
+++ b/pkg/gui/keybindings.go
@@ -297,6 +297,12 @@ func (gui *Gui) GetKeybindings() []*Binding {
Description: gui.Tr.SLocalize("forceCheckout"),
}, {
ViewName: "branches",
+ Key: 'f',
+ Modifier: gocui.ModNone,
+ Handler: gui.handleGitFetch,
+ Description: gui.Tr.SLocalize("fetch"),
+ }, {
+ ViewName: "branches",
Key: 'n',
Modifier: gocui.ModNone,
Handler: gui.handleNewBranch,