diff --git a/pkg/term/term_windows.go b/pkg/term/term_windows.go index 11a16fdea8..a91f07e482 100644 --- a/pkg/term/term_windows.go +++ b/pkg/term/term_windows.go @@ -71,8 +71,8 @@ func StdStreams() (stdIn io.ReadCloser, stdOut, stdErr io.Writer) { } } - if os.Getenv("ConEmuANSI") == "ON" { - // The ConEmu terminal emulates ANSI on output streams well. + if os.Getenv("ConEmuANSI") == "ON" || os.Getenv("ConsoleZVersion") != "" { + // The ConEmu and ConsoleZ terminals emulate ANSI on output streams well. emulateStdin = true emulateStdout = false emulateStderr = false