mirror of
https://github.com/fatih/color.git
synced 2024-11-24 08:02:14 +02:00
20 lines
504 B
Go
20 lines
504 B
Go
package color
|
|
|
|
import (
|
|
"os"
|
|
|
|
"golang.org/x/sys/windows"
|
|
)
|
|
|
|
func init() {
|
|
// Opt-in for ansi color support for current process.
|
|
// https://learn.microsoft.com/en-us/windows/console/console-virtual-terminal-sequences#output-sequences
|
|
var outMode uint32
|
|
out := windows.Handle(os.Stdout.Fd())
|
|
if err := windows.GetConsoleMode(out, &outMode); err != nil {
|
|
return
|
|
}
|
|
outMode |= windows.ENABLE_PROCESSED_OUTPUT | windows.ENABLE_VIRTUAL_TERMINAL_PROCESSING
|
|
_ = windows.SetConsoleMode(out, outMode)
|
|
}
|