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! =)