bobbylight / RSyntaxTextArea

A syntax highlighting, code folding text editor for Java Swing applications.
BSD 3-Clause "New" or "Revised" License
1.1k stars 258 forks source link

Clojure: double quote char literal #544

Closed NoahTheDuke closed 3 months ago

NoahTheDuke commented 5 months ago

Here's a failing test for #543. I would fix it but I don't know how to regenerate the .java files from .flex.

bobbylight commented 3 months ago

Thanks for this! It looks like \. should be identified as char literals for Clojure, but there's a bug in the lexer that treats that as a literal string "\.", not a regex. Oops

NoahTheDuke commented 3 months ago

Thank you!