mirror of
https://github.com/jesseduffield/lazygit.git
synced 2024-12-02 09:21:40 +02:00
2746b1bd38
We were crashing when opening lazygit in a small window because the limit view was the only view that got created, and there were two functions that referenced either the 'current' view or the files view, neither of which existed. Now those functions just return nil if the view does not exist
80 lines
1.9 KiB
Go
80 lines
1.9 KiB
Go
package gui
|
|
|
|
func (gui *Gui) titleMap() map[string]string {
|
|
return map[string]string{
|
|
"commits": gui.Tr.SLocalize("DiffTitle"),
|
|
"branches": gui.Tr.SLocalize("LogTitle"),
|
|
"files": gui.Tr.SLocalize("DiffTitle"),
|
|
"status": "",
|
|
"stash": gui.Tr.SLocalize("DiffTitle"),
|
|
}
|
|
}
|
|
|
|
func (gui *Gui) contextTitleMap() map[string]map[string]string {
|
|
return map[string]map[string]string{
|
|
"main": {
|
|
"staging": gui.Tr.SLocalize("StagingMainTitle"),
|
|
"merging": gui.Tr.SLocalize("MergingMainTitle"),
|
|
"normal": "",
|
|
},
|
|
}
|
|
}
|
|
|
|
func (gui *Gui) setMainTitle() error {
|
|
currentView := gui.g.CurrentView()
|
|
if currentView == nil {
|
|
return nil
|
|
}
|
|
currentViewName := currentView.Name()
|
|
var newTitle string
|
|
if context, ok := gui.State.Contexts[currentViewName]; ok {
|
|
newTitle = gui.contextTitleMap()[currentViewName][context]
|
|
} else if title, ok := gui.titleMap()[currentViewName]; ok {
|
|
newTitle = title
|
|
} else {
|
|
return nil
|
|
}
|
|
gui.getMainView().Title = newTitle
|
|
return nil
|
|
}
|
|
|
|
func (gui *Gui) changeContext(viewName, context string) error {
|
|
if gui.State.Contexts[viewName] == context {
|
|
return nil
|
|
}
|
|
|
|
contextMap := gui.GetContextMap()
|
|
|
|
gui.g.DeleteKeybindings(viewName)
|
|
|
|
bindings := contextMap[viewName][context]
|
|
for _, binding := range bindings {
|
|
if err := gui.g.SetKeybinding(viewName, binding.Key, binding.Modifier, binding.Handler); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
gui.State.Contexts[viewName] = context
|
|
return gui.setMainTitle()
|
|
}
|
|
|
|
func (gui *Gui) setInitialContexts() error {
|
|
contextMap := gui.GetContextMap()
|
|
|
|
initialContexts := map[string]string{
|
|
"main": "normal",
|
|
}
|
|
|
|
for viewName, context := range initialContexts {
|
|
bindings := contextMap[viewName][context]
|
|
for _, binding := range bindings {
|
|
if err := gui.g.SetKeybinding(binding.ViewName, binding.Key, binding.Modifier, binding.Handler); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
}
|
|
|
|
gui.State.Contexts = initialContexts
|
|
|
|
return nil
|
|
}
|