Is IDEA or one of its plugins capable of aligning code to special characters?
I mean so that the code
Map(
'name -> "Peter",
'age -> 27,
'company -> "Foobar"
)
is transformed to
Map(
'name -> "Peter",
'age -> 27,
'company -> "Foobar"
)
Example2:
execute("x", true, 27)
execute("foobar", false, 0)
transformed to
execute("x" , true , 27)
execute("foobar", false, 0 )