You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lazydocker/pkg/gui/window.go

8 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()
}