You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some valid escape sequences like shift+right (1;2C) are not properly parsed by termion and therefore return an Err result. This causes a panic in the input loop of App.run, which unwraps the event variable yielded by the input iterator.
The text was updated successfully, but these errors were encountered:
Ah, I think I expected errors like this to be returned using the Event::Unsupported variant. Evidently not the case.
I've removed the unwrap and provided actual error handling in b681708. (I should clarify the error prefix from Error: to something like Input Error: or Error getting user input: though... An inadvertent key press may result in a confusing error message. I'll think about it.)
Some valid escape sequences like shift+right (
1;2C) are not properly parsed by termion and therefore return anErrresult. This causes a panic in the input loop ofApp.run, which unwraps theeventvariable yielded by theinputiterator.The text was updated successfully, but these errors were encountered: