iwita b9152718d2 new version 5 anos atrás
..
.travis.yml b9152718d2 new version 5 anos atrás
BUILD b9152718d2 new version 5 anos atrás
LICENSE b9152718d2 new version 5 anos atrás
README.md b9152718d2 new version 5 anos atrás
console.go b9152718d2 new version 5 anos atrás
console_linux.go b9152718d2 new version 5 anos atrás
console_unix.go b9152718d2 new version 5 anos atrás
console_windows.go b9152718d2 new version 5 anos atrás
tc_darwin.go b9152718d2 new version 5 anos atrás
tc_freebsd.go b9152718d2 new version 5 anos atrás
tc_linux.go b9152718d2 new version 5 anos atrás
tc_solaris_cgo.go b9152718d2 new version 5 anos atrás
tc_solaris_nocgo.go b9152718d2 new version 5 anos atrás
tc_unix.go b9152718d2 new version 5 anos atrás

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)