1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Merge pull request #25578 from rwilliams/conemu

Force input stream ANSI emulation for ConEmu.
This commit is contained in:
Brian Goff 2016-09-08 11:12:33 -04:00 committed by GitHub
commit 28d18b8205

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
}