How can I change the formatting within expressions?

This assignment statement:

category_entries (category_entries.LAST).org_code := TRIM (REGEXP_SUBSTR (v_line, ‘[^,]+’, 1, 1));

Formats to:

category_entries (category_entries.LAST).org_code :=

TRIM (REGEXP_SUBSTR (v_line,

’[^,]+’,

1,

1));

Which I find difficult to read within a long procedure with many such assignments. I can’t find within Formatter which options to set that would prevent this.

Thanks!

Hi Judy,

You have the formatter option List Arrangements -> Parameters probably set to “Stacked on more than” + 3 columns, which is the default.

You could try to set it to “Stacked on Overflow or More than” + 3 columns. Or play with the column count only.

Hope this helps,
Andre