12.5 Formatter issue..

I just downloaded 12.5 and found formatting issue. can you please let me know what changes do I need to make to keep the below format.

SELECT TO_CHAR(SYSDATE,‘mm/dd/yyyy’) char_date, – want open/close “()” parenthesis on the same line
TO_DATE(TO_CHAR(SYSDATE,‘mm/dd/yyyy’),‘mm/dd/yyyy’) – want open/close “()” parenthesis on the same line
FROM DUAL;

Instead Toad formatted to

SELECT TO_CHAR(
SYSDATE,
‘mm/dd/yyyy’
)
char_date,
TO_DATE(
TO_CHAR(
SYSDATE,
‘mm/dd/yyyy’
),
‘mm/dd/yyyy’
)
FROM DUAL;

Thanks!