Fast and reasonably complete (framebuffer) terminal emulator (Zig fork)

Support improperly terminated sequences in escape_parse

For example, for "\e\e[31mHello", continue parsing instead of exiting
escape mode at the second \e

Changed files
+3
src
+3
src/flanterm.c
···
}
switch (c) {
+
// Got ESC in the middle of an escape sequence, start a new one
+
case 0x1B:
+
return;
case 'F':
x = 0;
// FALLTHRU