aboutsummaryrefslogtreecommitdiff
path: root/tests (follow)
Commit message (Collapse)AuthorAge
* Fix "string mode".Hugo Hörnquist2023-09-19
| | | | | | Previously parenthesis were (incorrectly) highlighted even in strings. Now they are correctly ignored inside.
* Fix backslashes "eating" their next character.Hugo Hörnquist2023-09-19
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.