mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-02 12:52:30 +07:00
1. auto-formatting in blank text block 2. proper caret offset in text block with content 2. semicolon after block in simple cases 3. disable insert of closing quotes in case when parser appended next text block open quotes to the current text block GitOrigin-RevId: cb2bdf293dfc3a18d1aab055d379b9e92f0cff2e
10 lines
78 B
Java
10 lines
78 B
Java
class Test {
|
|
|
|
void foo() {
|
|
String block = """
|
|
bar
|
|
<caret>
|
|
foo
|
|
""";
|
|
}
|
|
} |