ugh i messed up again

This commit is contained in:
Adam D. Ruppe 2020-02-28 12:22:06 -05:00
parent 30b760f30a
commit 485fa54a96
1 changed files with 6 additions and 0 deletions

View File

@ -2333,6 +2333,12 @@ struct RealTimeConsoleInput {
// old style event then follows as the fallback
e.character = cast(dchar) cast(wchar) '\n';
newEvents ~= InputEvent(e, terminal);
} else if(ev.wVirtualKeyCode == 0x1b) {
ke.which = cast(KeyboardEvent.Key) (ev.wVirtualKeyCode + 0xF0000);
newEvents ~= InputEvent(ke, terminal);
ne.key = cast(NonCharacterKeyEvent.Key) ev.wVirtualKeyCode;
newEvents ~= InputEvent(ne, terminal);
} else {
ke.which = cast(dchar) cast(wchar) ev.UnicodeChar;
newEvents ~= InputEvent(ke, terminal);