Is there any way to stop the beautifier uglyfying (is that a word
?) the following:
Before
After
i.e. I don't want the original spacing removed.
Cheers

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;
Code:
type tt is table of varchar2(25) index by binary_integer;
type tt_1 is table of number(1) index by binary_integer;
Cheers