nsf / termbox-go

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

Shift+Enter? #204

Closed miguelmota closed 5 years ago

miguelmota commented 5 years ago

Is the Shift+Enter key combo supported?

nsf commented 5 years ago

No.

miguelmota commented 5 years ago

@nsf mind elaborating on why? (help me understand)

nsf commented 5 years ago

Well initially I've made termbox in such a way that everything it offers in API works on all terminals. Over time additional and optional things were added (which I'm not a big fan of) such as 256 colors and things like that. But input was never extended in that regard. And I'm not really interested in developing termbox further. I'm surprised it's somewhat popular. I think more people should use HTML/JS for their UIs (not even a joke).

miguelmota commented 5 years ago

Thanks for the explanation