Indent for multideclarations

This commit is contained in:
Nikolay Krasko
2014-05-13 20:48:12 +04:00
parent b958e0d6b8
commit 356cb80e7f
9 changed files with 44 additions and 1 deletions
@@ -0,0 +1,4 @@
fun test() {
val (a, b) =
<caret>
}
@@ -0,0 +1,3 @@
fun test() {
val (a, b) = <caret>
}
@@ -0,0 +1,4 @@
fun test() {
val (a, b)
<caret>
}
@@ -0,0 +1,3 @@
fun test() {
val (a, b) <caret>
}