1.0.0beta3
- In
editorPrompt()
, change!iscntrl(c)
to!iscntrl(c) && c < 128
, so that we don't try to append special keys like the arrow keys to the prompt input. (Thanks @fmdkdd)
editorPrompt()
, change !iscntrl(c)
to !iscntrl(c) && c < 128
, so that we don't try to append special keys like the arrow keys to the prompt input. (Thanks @fmdkdd)