mirror of
https://github.com/jesseduffield/lazydocker.git
synced 2026-07-22 07:11:01 +00:00
12 lines
315 B
Go
12 lines
315 B
Go
package gui
|
|
|
|
func (gui *Gui) currentWindow() string {
|
|
// at the moment, we only have one view per window in lazydocker, so we
|
|
// are using the view name as the window name
|
|
return gui.currentViewName()
|
|
}
|
|
|
|
// excludes popups
|
|
func (gui *Gui) currentStaticWindowName() string {
|
|
return gui.currentStaticViewName()
|
|
}
|