1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-01-20 05:19:24 +02:00

make it easier to add a tab to a view

This commit is contained in:
Jesse Duffield 2020-09-30 08:27:12 +10:00
parent 7ddb916a18
commit 3b93b5dde4
3 changed files with 16 additions and 8 deletions

View File

@ -664,6 +664,10 @@ func (gui *Gui) changeMainViewsContext(contextKey string) {
func (gui *Gui) viewTabNames(viewName string) []string {
tabContexts := gui.ViewTabContextMap[viewName]
if len(tabContexts) == 0 {
return nil
}
result := make([]string, len(tabContexts))
for i, tabContext := range tabContexts {
result[i] = tabContext.tab

View File

@ -1574,13 +1574,10 @@ func (gui *Gui) keybindings() error {
}
}
tabClickBindings := map[string]func(int) error{
"branches": func(tabIndex int) error { return gui.onViewTabClick("branches", tabIndex) },
"commits": func(tabIndex int) error { return gui.onViewTabClick("commits", tabIndex) },
}
for viewName := range gui.viewTabContextMap() {
tabClickCallback := func(tabIndex int) error { return gui.onViewTabClick(viewName, tabIndex) }
for viewName, binding := range tabClickBindings {
if err := gui.g.SetTabClickBinding(viewName, binding); err != nil {
if err := gui.g.SetTabClickBinding(viewName, tabClickCallback); err != nil {
return err
}
}

View File

@ -147,7 +147,6 @@ func (gui *Gui) layout(g *gocui.Gui) error {
return err
}
branchesView.Title = gui.Tr.SLocalize("BranchesTitle")
branchesView.Tabs = gui.viewTabNames("branches")
branchesView.FgColor = textColor
branchesView.ContainsList = true
}
@ -168,7 +167,6 @@ func (gui *Gui) layout(g *gocui.Gui) error {
return err
}
commitsView.Title = gui.Tr.SLocalize("CommitsTitle")
commitsView.Tabs = gui.viewTabNames("commits")
commitsView.FgColor = textColor
commitsView.ContainsList = true
}
@ -336,6 +334,15 @@ func (gui *Gui) layout(g *gocui.Gui) error {
func (gui *Gui) onInitialViewsCreation() error {
gui.setInitialViewContexts()
// add tabs to views
for _, view := range gui.g.Views() {
tabs := gui.viewTabNames(view.Name())
if len(tabs) == 0 {
continue
}
view.Tabs = tabs
}
if err := gui.switchContext(gui.defaultSideContext()); err != nil {
return err
}