mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 00:20:54 +07:00
Support ending \, insert \n otherwise (to preserve semantics) IDEA-337178 Join lines: support terminating \ in text blocks GitOrigin-RevId: 2acb64443b83a27f29a969360b2cbbe34f7ea7d4
14 lines
172 B
Java
14 lines
172 B
Java
class A {
|
|
void test() {
|
|
String s = """
|
|
Line1
|
|
<selection> Line2
|
|
Line3
|
|
Line4
|
|
Line5
|
|
</selection> Line6
|
|
Line7
|
|
""";
|
|
}
|
|
}
|