summaryrefslogtreecommitdiffstats
path: root/pkg/gui/keybindings.go
diff options
context:
space:
mode:
authorKristijan Husak <husakkristijan@gmail.com>2018-10-12 14:06:03 +0200
committerKristijan Husak <husakkristijan@gmail.com>2018-10-13 22:54:51 +0200
commitdf0e3e52fea02950d78af5233a859f592092d475 (patch)
tree7210a491186833ca2d0481b2602add1dfa0d5e15 /pkg/gui/keybindings.go
parentd5f64602a8e10ab5c8162140d426ce677fe884ee (diff)
Add option to create pull request form branches panel.
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 78271a3f7..cc1edc24b 100644
--- a/pkg/gui/keybindings.go
+++ b/pkg/gui/keybindings.go
@@ -279,6 +279,12 @@ func (gui *Gui) GetKeybindings() []*Binding {
Description: gui.Tr.SLocalize("checkout"),
}, {
ViewName: "branches",
+ Key: 'o',
+ Modifier: gocui.ModNone,
+ Handler: gui.handleCreatePullRequestPress,
+ Description: gui.Tr.SLocalize("createPullRequest"),
+ }, {
+ ViewName: "branches",
Key: 'c',
Modifier: gocui.ModNone,
Handler: gui.handleCheckoutByName,