IDEA-75502 Tab in completion replaces the whole line instead of an identifier

This commit is contained in:
peter
2011-10-14 15:26:10 +02:00
parent 49c68d2df2
commit 6fb5e52e24
5 changed files with 19 additions and 4 deletions
@@ -0,0 +1,6 @@
class Foo {
void foo() {
Object textIndex = null;
Object p = tI<caret>equals(2);
}
}
@@ -0,0 +1,6 @@
class Foo {
void foo() {
Object textIndex = null;
Object p = textIndex<caret>(2);
}
}