Hello I have a problem with operators wrapped with special characters.
For example when registering the parentheses as operators it works if the previous and next characters are not special characters like the example below.
select SUM(firstColumn) from myTable;
But if the previous or next character of parentheses is a special character, it does not recognize the parentheses as operators.
select SUM(*) from myTable;
How can I make it so that the registered operators are highlighted even if it is wrapped with special characters?