Highlight enhancement

Buzz_ss

Member²
Hello.

Could You add possibility of highlight words using some prefixes?
This will be helpful for showing variables...
I always start the names of my variables with the prefix "v_". And I want to see them highlighted.

As example:
------------
create or replace function CCC(in_arg1 number) return number
is
v_number number;
begin
v_number := in_arg1 ;
return(v_number);
end CCC;
---------

Is this possible?

Thanks
 
Last edited:
Back
Top