cli/pkg/iostreams/console.go
2022-10-11 14:29:50 +02:00

11 lines
257 B
Go

//go:build !windows
// +build !windows
package iostreams
import "os"
func hasAlternateScreenBuffer(hasTrueColor bool) bool {
// on non-Windows, we just assume that alternate screen buffer is supported in most cases
return os.Getenv("TERM") != "dumb"
}