IDEA-59783 Properties files: code completion list does not open after dot character

This commit is contained in:
peter
2011-12-30 18:06:50 +01:00
parent 200c0ba6dc
commit 3bc866a991
3 changed files with 42 additions and 32 deletions

View File

@@ -1150,5 +1150,16 @@ class Foo {{
myFixture.checkResult 'class Foo extends Abcdefg <caret>'
}
public void testClassNameInProperties() {
myFixture.addClass("package java.langa; public class Abcdefg {}")
myFixture.configureByText 'a.properties', 'key.11=java<caret>'
type '.'
assert lookup
type 'lang'
assert myFixture.lookupElementStrings.size() >= 2
type '.'
assert lookup
}
}