mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
IDEA-68635 Completion inserts new line on SPACE
This commit is contained in:
+7
@@ -0,0 +1,7 @@
|
||||
class Xxx {
|
||||
{
|
||||
if (ABCDEF<caret>aaa.bbb()) {
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
import foo.ABCDEFFFFF;
|
||||
|
||||
class Xxx {
|
||||
{
|
||||
if (ABCDEFFFFF<caret>aaa.bbb()) {
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
+5
@@ -853,6 +853,11 @@ public class NormalCompletionTest extends LightFixtureCompletionTestCase {
|
||||
doTest('\n')
|
||||
}
|
||||
|
||||
public void testClassNameInIfBeforeIdentifier() throws Throwable {
|
||||
myFixture.addClass("package foo; public class ABCDEFFFFF {}")
|
||||
doTest('\n')
|
||||
}
|
||||
|
||||
public void testClassNameWithInnersTab() throws Throwable { doTest('\t') }
|
||||
|
||||
public void testClassNameWithGenericsTab() throws Throwable {doTest('\t') }
|
||||
|
||||
Reference in New Issue
Block a user