BalticAmadeus / AblFormatter

Code formatter for Progress OpenEdge (ABL)
Apache License 2.0
5 stars 0 forks source link

Add formatting for defines with access tunings #240

Closed gustason closed 3 weeks ago

gustason commented 1 month ago

For example,

define public variable mPartitionAfterQuery as handle no-undo.
define private variable ValidDefaultLevelList as char init "0,1,2" no-undo.
define protected variable ValidDefaultLevelString as char init "~"0~" ~"1~" and ~"2~"" no-undo.

might be formatted as such:

define public    variable mPartitionAfterQuery    as handle no-undo.
define private   variable ValidDefaultLevelList   as char init "0,1,2" no-undo.
define protected variable ValidDefaultLevelString as char init "~"0~" ~"1~" and ~"2~"" no-undo.