mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-29 16:50:55 +07:00
1. Added ability to configure IJ editor to auto-collapse multiple subsequent end of line comments; 2. Corresponding test is added;
14 lines
305 B
Java
14 lines
305 B
Java
class Test {
|
|
|
|
<fold text='//...'>// class-level folding1
|
|
// class-level folding2</fold>
|
|
|
|
public void foo() <fold text='{...}'>{
|
|
<fold text='//...'>// method-level folding1
|
|
// method-level folding2</fold>
|
|
int i = 1;
|
|
// method-level folding2
|
|
}</fold>
|
|
|
|
// class-level folding3
|
|
} |