Doesn't PL/SQL Developer support correct syntax highlighting of quoted literals?
Writing in SQL or Program window:
declare
str varchar2(3000) := q'[Hello, I'm a 'string'
]';
begin
dbms_output.put_line(str);
end;
Code is syntaxically correct, but highlighting fails. It's too bad because rest of code is hard to read and autoreplace won't work there (because it's considered to be a literal)
Writing in SQL or Program window:
declare
str varchar2(3000) := q'[Hello, I'm a 'string'

begin
dbms_output.put_line(str);
end;
Code is syntaxically correct, but highlighting fails. It's too bad because rest of code is hard to read and autoreplace won't work there (because it's considered to be a literal)
