1
0
mirror of https://github.com/docker/cli.git synced 2026-01-15 07:40:57 +03:00

Force input stream ANSI emulation for ConEmu.

Signed-off-by: Ron Williams <ron.a.williams@gmail.com>
Upstream-commit: 0fd4bbda2dfb9a1bfc6781f2a3dacedc62c7c11b
Component: engine
This commit is contained in:
Ron Williams
2016-08-08 20:59:52 -07:00
parent 936c3ba707
commit 753df65f71

View File

@@ -73,6 +73,7 @@ func StdStreams() (stdIn io.ReadCloser, stdOut, stdErr io.Writer) {
if os.Getenv("ConEmuANSI") == "ON" {
// The ConEmu terminal emulates ANSI on output streams well.
emulateStdin = true
emulateStdout = false
emulateStderr = false
}