mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-08-07 22:02:56 +03:00
ensure we retain state when returning to submodule parent
This commit is contained in:
@@ -137,6 +137,12 @@ func (self *ViewContextMap) Set(viewName string, context types.Context) {
|
||||
self.content[viewName] = context
|
||||
}
|
||||
|
||||
func (self *ViewContextMap) Entries() map[string]types.Context {
|
||||
self.Lock()
|
||||
defer self.Unlock()
|
||||
return self.content
|
||||
}
|
||||
|
||||
type TabContext struct {
|
||||
Tab string
|
||||
Contexts []types.Context
|
||||
|
@@ -323,6 +323,8 @@ func (gui *Gui) resetState(filterPath string, reuseState bool) {
|
||||
if state := gui.RepoStateMap[Repo(currentDir)]; state != nil {
|
||||
gui.State = state
|
||||
gui.State.ViewsSetup = false
|
||||
gui.syncViewContexts()
|
||||
return
|
||||
}
|
||||
} else {
|
||||
gui.c.Log.Error(err)
|
||||
@@ -341,11 +343,6 @@ func (gui *Gui) resetState(filterPath string, reuseState bool) {
|
||||
viewContextMap := context.NewViewContextMap()
|
||||
for viewName, context := range initialViewContextMapping(contextTree) {
|
||||
viewContextMap.Set(viewName, context)
|
||||
view, err := gui.g.View(viewName)
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
view.Context = string(context.GetKey())
|
||||
}
|
||||
|
||||
gui.State = &GuiRepoState{
|
||||
@@ -380,9 +377,21 @@ func (gui *Gui) resetState(filterPath string, reuseState bool) {
|
||||
Contexts: contextTree,
|
||||
}
|
||||
|
||||
gui.syncViewContexts()
|
||||
|
||||
gui.RepoStateMap[Repo(currentDir)] = gui.State
|
||||
}
|
||||
|
||||
func (gui *Gui) syncViewContexts() {
|
||||
for viewName, context := range gui.State.ViewContextMap.Entries() {
|
||||
view, err := gui.g.View(viewName)
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
view.Context = string(context.GetKey())
|
||||
}
|
||||
}
|
||||
|
||||
func initialViewContextMapping(contextTree *context.ContextTree) map[string]types.Context {
|
||||
return map[string]types.Context{
|
||||
"status": contextTree.Status,
|
||||
|
Reference in New Issue
Block a user