Beautifier Problem...

Splat

Member
Is there any way to stop the beautifier uglyfying (is that a word ;) ?) the following:

Before

Code:
type tt   is table of varchar2(25) index by binary_integer;
  type tt_1 is table of number(1)    index by binary_integer;
After

Code:
type tt is table of varchar2(25) index by binary_integer;
  type tt_1 is table of number(1) index by binary_integer;
i.e. I don't want the original spacing removed.

Cheers
 
Splat,

Beautifier isn't that sophisticated yet.

Something like Quest Software's FormatterPlus can handle details like that, but it's a separate product. If you have it, you can set it up as a tool on the PL/SQL Developer toolbar to call with your current file, which works great.

All the best,
 
Back
Top