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
··· 566 566 } 567 567 568 568 switch (c) { 569 + // Got ESC in the middle of an escape sequence, start a new one 570 + case 0x1B: 571 + return; 569 572 case 'F': 570 573 x = 0; 571 574 // FALLTHRU