When you type select * from Table; in a worksheet then there is an autoexpand function which expand the query to
select field1,
field2,
field3
from Table;
Which is a very handy functionality but...
I prefer the syntax
select
field1
, field2
, field3
from Table;
Which is more handy when you what to dissable and or rename the output fields.
Is possible to implement this other format, preferably with a configuration setting so that the user can select which format he/she prefers
Regards
Jos