make live template lookup behavior consistent with the "insert by dot/space/etc" option (IDEA-105285)

This commit is contained in:
peter
2013-05-07 18:17:04 +02:00
parent a232670766
commit f3193142a7
6 changed files with 39 additions and 10 deletions
@@ -0,0 +1,8 @@
import java.io.File;
class Foo {
{
File file = new File("some.txt");
System.out.println("file = " + file.<caret>);
}
}