Extra highlighting with slashes in quotes

Howdy,

In 13.0.0.353, I'm seeing extra highlighting in:

SELECT
REGEXP_REPLACE('\\server\folder\','^\\\\SERVER\\FOLDER\\', '\\\\NEWSERVER\\FOLDER\\',1,0,'i') "NewSERVER"
FROM DUAL;

...but if broken up in multiple lines, it (correctly) goes away:

SELECT
REGEXP_REPLACE('\\server\folder\','^\\\\SERVER\\FOLDER\\',
'\\\\NEWSERVER\\FOLDER\\',
1,0,'i') "NewSERVER"
FROM DUAL;

Not a huge deal, just something I noticed.

Thanks!
Rich

Never mind....nothing to see here....

Turns out that I was also looking into changing the gutter color and had set Editor->Display->Edge->Mode to "Background". I was then rudely interrupted by something called "work" and promptly forgot that I had set it.

:blush: :blush: :blush:

Rich

1 Like