mark-wiemer-org/ahkpp

No indent for object with continuation section

Closed this issue · 0 comments

Description

No indent for object with continuation section

Expected formatted output snippet

if (expression)
    obj := { 0:""
        , a: 1
        , b: 2 }
else
    obj := { 0:""
        , a: 2
        , b: 1 }
code

Actual formatted output snippet

if (expression)
obj := { 0:""
    , a: 1
    , b: 2 }
else
obj := { 0:""
    , a: 2
    , b: 1 }
code

Additional context

Optionally, you may provide similar snippets with similar behavior.