Browse code

Force input stream ANSI emulation for ConEmu.

Signed-off-by: Ron Williams <ron.a.williams@gmail.com>

Ron Williams authored on 2016/08/09 12:59:52
Showing 1 changed files
... ...
@@ -73,6 +73,7 @@ func StdStreams() (stdIn io.ReadCloser, stdOut, stdErr io.Writer) {
73 73
 
74 74
 	if os.Getenv("ConEmuANSI") == "ON" {
75 75
 		// The ConEmu terminal emulates ANSI on output streams well.
76
+		emulateStdin = true
76 77
 		emulateStdout = false
77 78
 		emulateStderr = false
78 79
 	}