save actions

boaglio

Member²

Hi,

Is it possible to configure save actions behaviour like Eclipse ?

- example 1:

If you have this code:

"end; "

Right after clicking "Save" you will get no spaces after semicolon:

"end;"

- example 2:

If you have this code:

begin loop a:=a-1;
exit when a=0;
end loop;

Right after clicking "Save" you will get a new formatted code:

begin
loop
a:=a-1;
exit when a=0;
end loop;

- example 3:

If you have this code, like this unused variable:

test1 varchar2(100);

Right after clicking "Save" the unused variable is removed.

Thanks! =)
 
You can enable the PL/SQL Beautifier Options to "Automatically Beautify Before Saving". This will cover example 1 and 2, but it will not change the code as mentioned in example 3/
 
Back
Top