Force input stream ANSI emulation for ConEmu.

Signed-off-by: Ron Williams <ron.a.williams@gmail.com>
This commit is contained in:
Ron Williams 2016-08-08 20:59:52 -07:00
parent b2b41b2194
commit 0fd4bbda2d
1 changed files with 1 additions and 0 deletions

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
}