How to format INSERT statement so all fields are aligned

Can you help me find the right combination of formatter options to align all the fields for an INSERT statement?

This is how it is being formatted:

INSERT INTO tmytbl (col1
                   ,col2
                   ,col3
                   ,col4
                   ,col5
                   ,col6)
SELECT mycol
      ,yourcol
      ,lotsdollars
      ,somedollars
      ,mystate
      ,enddate
FROM yourtable
WHERE empid = 186546;

This is how I would like it formatted:

INSERT INTO tmytbl 
(      col1
      ,col2
      ,col3
      ,col4
      ,col5
      ,col6
)
SELECT mycol
      ,yourcol
      ,lotsdollars
      ,somedollars
      ,mystate
      ,enddate
FROM yourtable
WHERE empid = 186546;

Welcome Douglass!

Unfortunately the formatter cannot emulate each and every possible style. The following options pane shows the possible options:

image

Hope you'll find something which is close enough.

Thanks,
Andre