Parameter info popup after completion insertion.
Do not add '(' if it's already exist in completion (+Tests).
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
package testing.handlers
|
||||
|
||||
fun test() {
|
||||
}
|
||||
|
||||
fun other() {
|
||||
te<caret>()
|
||||
}
|
||||
|
||||
// INSERT: test
|
||||
@@ -0,0 +1,10 @@
|
||||
package testing.handlers
|
||||
|
||||
fun test() {
|
||||
}
|
||||
|
||||
fun other() {
|
||||
test()<caret>
|
||||
}
|
||||
|
||||
// INSERT: test
|
||||
@@ -0,0 +1,13 @@
|
||||
package Test.MyTest
|
||||
|
||||
class A {
|
||||
class object {
|
||||
public fun testOther(a: Int) {
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fun testMy() {
|
||||
A.testOthe<caret>()
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
package Test.MyTest
|
||||
|
||||
class A {
|
||||
class object {
|
||||
public fun testOther(a: Int) {
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fun testMy() {
|
||||
A.testOther(<caret>)
|
||||
}
|
||||
Reference in New Issue
Block a user