Re: Perl highlighter has bugs with comments
The Problem is not with the comments, but with regural expressions. For example, in the regex /\d"/ the double-quote is part of the regext, but the SuperEdi syntax highlighter sees it as the start of a string. I'm afraid there is no way to specify the Syntax of Perl regexes in the .SYN Format, because there are many way how you could write a regex, for example: /\d"/ m/\d"// m,\d", m{\d"} s/\d"// Any idea how this can parsed correctly?
|