Browse Source

Merge pull request #25578 from rwilliams/conemu

Force input stream ANSI emulation for ConEmu.
Brian Goff 9 years ago
parent
commit
28d18b8205
1 changed files with 1 additions and 0 deletions
  1. 1 0
      pkg/term/term_windows.go

+ 1 - 0
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
 	}