7.1.4.1389 -- problem with highlighting parentheses ?

pwo1433

Member²
The highlighting of matching parentheses is one of the best features of recent releases, but try this code in both the SQL Window and the Command Window.
select a.*
from aaaaa a
where not exists ( select null from bbbbb b
where a.id = b.id )

The matching parens won't highlight in either Window unless you put a blank after the ). And I've had instances where I have nested ()s and some won't highlight and some will. I haven't found any pattern or consistency yet.

Of course I have the 'Highlight Parentheses' checked in Preferences.

Anyone experiencing this also ?
Thanks.
 
Highlight will always fail if the last character is ")". Typing anything after that will make it work (space,enter,"a","0").

You can try it with anything:
(sdfsdfsdfsdf)
 
Back
Top