conditional compile fix
1 file changed
tree: d3f9f6f5bfecc976da882e92e9c303ebbd732304
  1. _example/
  2. readline/
  3. .travis.yml
  4. LICENSE
  5. README.md
  6. tty.go
  7. tty_bsd.go
  8. tty_linux.go
  9. tty_plan9.go
  10. tty_sys5.go
  11. tty_unix.go
  12. tty_windows.go
README.md

go-tty

Simple tty utility

Usage

tty, err := tty.Open()
if err != nil {
	log.Fatal(err)
}
defer tty.Close()

for {
	r, err := tty.ReadRune()
	if err != nil {
		log.Fatal(err)
	}
	// handle key event
}

if you are on windows and want to display ANSI colors, use go-colorable.

tty, err := tty.Open()
if err != nil {
	log.Fatal(err)
}
defer tty.Close()

out := colorable.NewColorable(tty.Output())

fmt.Fprintln(out, "\x1b[2J")

Installation

$ go get github.com/mattn/go-tty

License

MIT

Author

Yasuhiro Matsumoto (a.k.a mattn)