1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-07-30 03:23:08 +03:00

add remotes context to branches view

This commit is contained in:
Jesse Duffield
2019-11-13 23:18:31 +11:00
parent 092f27495a
commit e6be849eb2
3 changed files with 57 additions and 0 deletions

View File

@ -631,6 +631,11 @@ func (gui *Gui) keybindings(g *gocui.Gui) error {
if err := gui.setInitialContext(); err != nil {
return err
}
if err := g.SetTabClickBinding("branches", gui.onBranchesTabClick); err != nil {
return err
}
return nil
}