don't autopopup with word suggestions in groovy/java literals

This commit is contained in:
peter
2011-04-14 17:53:05 +02:00
parent cabb823fd2
commit 868418935f
7 changed files with 77 additions and 13 deletions

View File

@@ -717,4 +717,11 @@ class Foo {
}
public void testNoWordCompletionAutoPopup() {
myFixture.configureByText "a.java", 'class Bar { void foo() { "f<caret>" }}'
type 'o'
assert !lookup
}
}