1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-08-09 09:22:48 +03:00

Add option to create pull request form branches panel.

This commit is contained in:
Kristijan Husak
2018-10-12 14:06:03 +02:00
parent d5f64602a8
commit df0e3e52fe
8 changed files with 293 additions and 0 deletions

View File

@@ -277,6 +277,12 @@ func (gui *Gui) GetKeybindings() []*Binding {
Handler: gui.handleBranchPress,
KeyReadable: "space",
Description: gui.Tr.SLocalize("checkout"),
}, {
ViewName: "branches",
Key: 'o',
Modifier: gocui.ModNone,
Handler: gui.handleCreatePullRequestPress,
Description: gui.Tr.SLocalize("createPullRequest"),
}, {
ViewName: "branches",
Key: 'c',