mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
autopopup after . is also an autopopup and should track editor events
This commit is contained in:
@@ -444,4 +444,21 @@ class JavaAutoPopupTest extends CompletionAutoPopupTestCase {
|
||||
assert !lookup
|
||||
}
|
||||
|
||||
public void testResumeAfterBackspace() {
|
||||
myFixture.configureByText("a.java", """
|
||||
class A {
|
||||
Object foo() { this<caret> }
|
||||
}
|
||||
""")
|
||||
type '.'
|
||||
assert lookup
|
||||
type 'a'
|
||||
assert !lookup
|
||||
type '\b'
|
||||
assert !lookup
|
||||
type 'c'
|
||||
assert lookup
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user