Parameter info popup after completion insertion.

Do not add '(' if it's already exist in completion (+Tests).
This commit is contained in:
Alefas
2012-02-07 12:43:27 +04:00
parent f91fa19ea1
commit b0046348aa
6 changed files with 71 additions and 2 deletions
@@ -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>)
}