2020-01-25 01:15:29 -05:00
|
|
|
// +build windows
|
|
|
|
|
2020-05-25 19:26:40 -04:00
|
|
|
package tea
|
2020-01-25 01:15:29 -05:00
|
|
|
|
2020-10-12 22:36:24 -04:00
|
|
|
import (
|
2020-12-30 22:08:38 -05:00
|
|
|
"io"
|
2020-10-12 22:36:24 -04:00
|
|
|
"os"
|
|
|
|
|
|
|
|
"golang.org/x/sys/windows"
|
|
|
|
)
|
|
|
|
|
|
|
|
// enableAnsiColors enables support for ANSI color sequences in Windows
|
|
|
|
// default console. Note that this only works with Windows 10.
|
2020-12-30 22:08:38 -05:00
|
|
|
func enableAnsiColors(w io.Writer) {
|
|
|
|
f, ok := w.(*os.File)
|
|
|
|
if !ok {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
stdout := windows.Handle(f.Fd())
|
2020-10-12 22:36:24 -04:00
|
|
|
var originalMode uint32
|
|
|
|
|
|
|
|
windows.GetConsoleMode(stdout, &originalMode)
|
|
|
|
windows.SetConsoleMode(stdout, originalMode|windows.ENABLE_VIRTUAL_TERMINAL_PROCESSING)
|
|
|
|
}
|