From 0fd4bbda2dfb9a1bfc6781f2a3dacedc62c7c11b Mon Sep 17 00:00:00 2001 From: Ron Williams Date: Mon, 8 Aug 2016 20:59:52 -0700 Subject: [PATCH] Force input stream ANSI emulation for ConEmu. Signed-off-by: Ron Williams --- pkg/term/term_windows.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/term/term_windows.go b/pkg/term/term_windows.go index dc50da4577..11a16fdea8 100644 --- a/pkg/term/term_windows.go +++ b/pkg/term/term_windows.go @@ -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 }