I have two problems with SyntaxEditor.
First problem is when any special characters are followed by -- other than a space, it is not treated as comment.
How can I make it so that it understands the second comment below is a comment line? (Any way to override a comment REGEX?)
-- testing working comment
--- testing not working comment
Second problem is when the keywords wrapped around with any special characters in a non-keyword are recognized as a keyword.
In other words, the word TEST_TABLE is one word and is NOT a keyword, but because TABLE is a keyword and it is wrapped with _ and a end of line, TABLE is highlighted.
How can I make it so that those keywords to be highlighted only when it is wrapped with start of line, end of line or a space?
SELECT * from TEST_TABLE