aboutsummaryrefslogtreecommitdiff
path: root/tests (unfollow)
Commit message (Collapse)Author
2023-09-19Fix "string mode".Hugo Hörnquist
Previously parenthesis were (incorrectly) highlighted even in strings. Now they are correctly ignored inside.
2023-09-19Fix backslashes "eating" their next character.Hugo Hörnquist
Since we are working with literal characters, than a backslash shouldn't be removed when esacping a character. The current (and excpeted) functionallity is that the backslash should escape the next character, but print both. Also added tests for this.