intellij-ton icon indicating copy to clipboard operation
intellij-ton copied to clipboard

indent for bracket

Open i5possible opened this issue 1 year ago • 1 comments
trafficstars

If I have code like this:

send(SendParameters{
    to: msg.response_destination!!,
    value: 0,
    bounce: false,
    mode: SendRemainingValue + SendIgnoreErrors,
    body: TokenExcesses{
        queryId: msg.queryId
    }.toCell()
});

and run format. It will end up with:

send(SendParameters{
to: msg.response_destination!!,
value: 0,
bounce: false,
mode: SendRemainingValue + SendIgnoreErrors,
body: TokenExcesses{
queryId: msg.queryId
}.toCell()
});

Any way we can solve it?

i5possible avatar Jul 12 '24 08:07 i5possible