All public logs
Jump to navigation
Jump to search
Combined display of all available logs of Thought dump. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 15:57, 11 January 2025 Jwo talk contribs created page State machine for removing ANSI escape sequences (Created page with "<syntaxhighlight lang="c++" line> bool strip_csi = true; // Strip terminal control sequences (colors etc.). bool strip_escapes = true; // Set to false to disable all modifications. // State machine for processing escape sequences. void feedthrough_char(std::uint8_t ch) { static enum state { ST_BASE, // Base state. ST_ESC, // Escape received. ST_STR, // In (ignored) ANSI escape string. ST_STR_ESC, // Ditto, and received...")