Enhancement Request: Beautifier

ScottMattes

Member³
I'd like comments in select/insert/update/deletes to line up, such as

Code:
select f1,     -- comment 1
       fld2,   -- comment 2
       f3,     -- comment 3
       sysdate -- comment 4
  from t1;
vice this

Code:
select f1, -- comment 1
       fld2, -- comment 2
       f3, -- comment 3
       sysdate -- comment 4
  from t1;
thank you.
 
Back
Top