```mma foo[someVery[xxx], someVeryLongFunctionName[xxx, xxx], someVeryLongFunctionName@ xxx] ``` Will be formatted into ```mma foo[someVery[xxx], someVeryLongFunctionName[xxx, xxx], someVeryLongFunctionName @ xxx] ``` then  --- May be can be like this? ```mma foo[ someVery[xxx], someVeryLongFunctionName[xxx, xxx], someVeryLongFunctionName @ xxx ] ``` Also, `<| |>` has this problem. ```mma <|xxx -> xxx, xxx1 -> xxx, xxx2 -> xxx, xxx3 -> xxx, xxx4 -> xxx, xxx5 -> xxx|> ``` Becomes ```mma <|xxx -> xxx, xxx1 -> xxx, xxx2 -> xxx, xxx3 -> xxx, xxx4 -> xxx, xxx5 -> xxx|> ``` 