Is there hotkey to turn this ```ButtonText(text = ...
# compose
g
Is there hotkey to turn this
Copy code
ButtonText(text = "Text", onClick = {}, modifier = Modifier.padding(top = 16.dp))
into this
Copy code
ButtonText(
      text = "Text",
      onClick = {},
      modifier = Modifier.padding(top = 16.dp)
)
I am so tired to do this manually.
g
there is a quick fix for this
place cursor on one of arguements, Alt + Enter, “Put arguments on separate lines”
4
g
Oh, thank you very much
a
also, add trailing comma after the last parameter, it will help