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!