Complete functions with single parameter on typing '{'
For KT-4049 When completing a function that takes a lambda and immediately typing '{', swallow the '{'
#KT-4049 Fixed
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
fun some(f: () -> Unit) { f() }
|
||||
|
||||
fun test() {
|
||||
some<caret>
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
fun some(f: () -> Unit) { f() }
|
||||
|
||||
fun test() {
|
||||
some { <caret> }
|
||||
}
|
||||
Reference in New Issue
Block a user