Help aligning multi-line calls
Could somebody help me to be able to automatically format this:
process(
count: 4,
name: "Robert",
timeStamp: 1928372037
)
To look like this:
process(
count : 4,
name : "Robert",
timeStamp: 1928372037
)
请先登录再写评论。
Hi Fred,
Sorry for the very very long delay.
Currently it works only for map literal if you enable 'align multiline named arguments in Settings(Preferences) | Code Style | Groovy | Warpping and braces | List and map literals' e.g.:
process([
count : 4,
name : "Robert",
timeStamp: 1928372037
])