diff options
-rw-r--r-- | cmd/atlas/main_windows.go | 20 | ||||
-rw-r--r-- | go.mod | 2 |
2 files changed, 21 insertions, 1 deletions
diff --git a/cmd/atlas/main_windows.go b/cmd/atlas/main_windows.go new file mode 100644 index 0000000..a6a1912 --- /dev/null +++ b/cmd/atlas/main_windows.go @@ -0,0 +1,20 @@ +//go:build windows + +package main + +import ( + "os" + + "golang.org/x/sys/windows" +) + +func init() { + con := windows.Handle(os.Stdin.Fd()) + + var mode uint32 + if err := windows.GetConsoleMode(con, &mode); err == nil { + mode |= windows.ENABLE_EXTENDED_FLAGS + mode &^= windows.ENABLE_QUICK_EDIT_MODE + _ = windows.SetConsoleMode(con, mode) + } +} @@ -16,6 +16,7 @@ require ( github.com/spf13/pflag v1.0.5 golang.org/x/mod v0.7.0 golang.org/x/net v0.2.0 + golang.org/x/sys v0.2.0 ) require ( @@ -25,5 +26,4 @@ require ( github.com/rs/xid v1.4.0 // indirect github.com/valyala/fastrand v1.1.0 // indirect github.com/valyala/histogram v1.2.0 // indirect - golang.org/x/sys v0.2.0 // indirect ) |