Prevent the formatter wrapping at the "AS" in queries

In Toad how can I prevent the formatter wrapping at the "AS" in my SQL Queries - I have tried to modify the formatter but not been able to prevent this from happening - it is doubling up the number of lines of code unnecessarily.

Forgot tom mention this is part of a create view statement - not a straight simple select statement, but a select inside of a create view statement

Many thanks for any suggestions. Regards Adrian

         (fahrbahnproj.r_gs_ev_auffuellung_v.tiefe_1)
             AS tiefe_1,
         (fahrbahnproj.r_gs_ev_auffuellung_v.spez_gewicht_1)
             AS spez_gewicht_1,
         (fahrbahnproj.r_gs_ev_auffuellung_v.ausmass_1)
             AS gewicht_1,
         'Schicht 1'
             AS bezeichnung_schicht_1_d,
         'Couche 1'
             AS bezeichnung_schicht_1_f,

It should look like - preferably with the AS in the same column position

         (fahrbahnproj.r_gs_ev_auffuellung_v.tiefe_1) AS tiefe_1,
         (fahrbahnproj.r_gs_ev_auffuellung_v.spez_gewicht_1) AS spez_gewicht_1,