does anyone know where I can disable Intellij form...
# random
e
does anyone know where I can disable Intellij formatting multiple parameters on the same line, separated by
;
, into multiple lines?
var mouseMoved = false; var mouseWheeled = false
t
just don’t. Its a bad code style to keep multiple assignments on the same line
e
it's a kotlin port from native, it helps keeping the code consistent
k
It won't put this into two lines:
var (mouseMoved, mouseWheeled) = Pair(false, false)
😈
e
it's a bug