mirror of
https://github.com/jesseduffield/lazydocker.git
synced 2026-07-22 15:11:02 +00:00
7 lines
206 B
Go
7 lines
206 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()
|
|
}
|