nsf / termbox-go

Pure Go termbox implementation
http://godoc.org/github.com/nsf/termbox-go
MIT License
4.67k stars 373 forks source link

Keyboard/mouse input only? #162

Closed elliotchance closed 3 years ago

elliotchance commented 7 years ago

Is it possible to only capture and handle keyboard and mouse without any of the rendering?

nsf commented 7 years ago

No. Termbox is not an input capturing library. Although you can extract that code manually if you want to. It's not a big lib.

nsf commented 6 years ago

Do it yourself.

But if I ever decide to do a big refactoring on termbox or something, I'll consider splitting it into two parts. It does make sense.