iwita b9152718d2 new version 5 년 전
..
.travis.yml b9152718d2 new version 5 년 전
BUILD b9152718d2 new version 5 년 전
LICENSE b9152718d2 new version 5 년 전
README.md b9152718d2 new version 5 년 전
console.go b9152718d2 new version 5 년 전
console_linux.go b9152718d2 new version 5 년 전
console_unix.go b9152718d2 new version 5 년 전
console_windows.go b9152718d2 new version 5 년 전
tc_darwin.go b9152718d2 new version 5 년 전
tc_freebsd.go b9152718d2 new version 5 년 전
tc_linux.go b9152718d2 new version 5 년 전
tc_solaris_cgo.go b9152718d2 new version 5 년 전
tc_solaris_nocgo.go b9152718d2 new version 5 년 전
tc_unix.go b9152718d2 new version 5 년 전

README.md

console

Build Status

Golang package for dealing with consoles. Light on deps and a simple API.

Modifying the current process

current := console.Current()
defer current.Reset()

if err := current.SetRaw(); err != nil {
}
ws, err := current.Size()
current.Resize(ws)