Create KotlinLineIndentProvider and delegate it to formatter
#KT-22211
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
fun test(i: Int) {
|
||||
test(
|
||||
<caret>
|
||||
)
|
||||
}
|
||||
|
||||
// SET_FALSE: CONTINUATION_INDENT_IN_ARGUMENT_LISTS
|
||||
@@ -0,0 +1,4 @@
|
||||
fun test() {
|
||||
val a = 44;
|
||||
<caret>
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
fun test() {
|
||||
val a = 44;<caret>
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
fun test() {
|
||||
val a = 44;
|
||||
<caret>val b = 42;
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
fun test() {
|
||||
val a = 44;<caret> val b = 42;
|
||||
}
|
||||
Reference in New Issue
Block a user