What is the correct code style setting to change t...
# intellij
r
What is the correct code style setting to change to stop Kotlin inserting new lines after
;
?
p
I just removed that key from my keyboard
K 1
a
I don't think there is such an option. By the way, for me, the following code is not reformated by IDEA:
Copy code
fun foo() {
    println(""); println("")
}
Is it reformatted for you? If not, can you please share an example of code that is reformatted? Anyway, since there is no dedicated setting to control this behavior, please consider creating a feature request at http://kotl.in/issue describing your use case. Thanks.
r
That isn't, but something like this is:
Copy code
interface T {
    val aa: Double; val ab: Double; ...
    val ba: Double; val bb: Double; ...
    ...
}
I'll try to remember to file one tonight when I get the chance.
🙏 1