mirror of https://github.com/Hilbis/Hilbish
18 lines
445 B
Go
18 lines
445 B
Go
// +build windows
|
|
|
|
package main
|
|
|
|
import "golang.org/x/sys/windows"
|
|
|
|
func init() {
|
|
// vt output (escape codes)
|
|
var outMode uint32
|
|
windows.GetConsoleMode(windows.Stdout, &outMode)
|
|
windows.SetConsoleMode(windows.Stdout, outMode | windows.ENABLE_VIRTUAL_TERMINAL_PROCESSING)
|
|
|
|
// vt input
|
|
var inMode uint32
|
|
windows.GetConsoleMode(windows.Stdin, &inMode)
|
|
windows.SetConsoleMode(windows.Stdin, inMode | windows.ENABLE_VIRTUAL_TERMINAL_INPUT)
|
|
}
|