Better indententation on enter in lambdas
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
class Test {
|
||||
fun foo(f: (String) -> String): Test = this
|
||||
}
|
||||
|
||||
fun test() {
|
||||
val abc = Test()
|
||||
.foo { "Str" }
|
||||
.foo {
|
||||
<caret>
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user