If I wanted to use rustbox as base for a TUI text editor, should I be aware of any limitations? Specifically, when using certain library it's sometimes impossible to parse certain key combinations etc. Example from kakoune: https://github.com/mawww/kakoune/issues/1270 , where <c-h> can't be used because ncurses does not handle it.
If I wanted to use
rustbox
as base for a TUI text editor, should I be aware of any limitations? Specifically, when using certain library it's sometimes impossible to parse certain key combinations etc. Example fromkakoune
: https://github.com/mawww/kakoune/issues/1270 , where<c-h>
can't be used because ncurses does not handle it.