Procedure layout and beautifier

How do I get the following ;

PROCEDURE dynrule(sql_string IN VARCHAR2,
start_posn IN VARCHAR2,
incr_by IN NUMBER,
end_posn OUT VARCHAR2) IS
BEGIN

to

PROCEDURE dynrule(sql_string IN VARCHAR2,
start_posn IN VARCHAR2,
incr_by IN NUMBER,
end_posn OUT VARCHAR2)
IS
BEGIN

i.e position the "is" on a new line.
I seem to remember that this was an option in Ver 5. I tried changing the template but the beautifier ignores this!
 
Back
Top