17 lines
301 B
Go
17 lines
301 B
Go
//go:build !windows && !plan9 && !appengine && !wasm && !aix
|
|
// +build !windows,!plan9,!appengine,!wasm,!aix
|
|
|
|
package flags
|
|
|
|
import (
|
|
"golang.org/x/sys/unix"
|
|
)
|
|
|
|
func getTerminalColumns() int {
|
|
ws, err := unix.IoctlGetWinsize(0, unix.TIOCGWINSZ)
|
|
if err != nil {
|
|
return 80
|
|
}
|
|
return int(ws.Col)
|
|
}
|