Author: Mark Sta Ana
Tags:codingfoldingeditoreclipse
Idea:
Tags:codingfoldingeditoreclipse
Idea:
Currently code folding in 8.5.3 only supports Java and ClientSide JavaScript. It currently doesn't support ServerSide Javascript. Also it's limited to members and functions. You can't fold code between brackets of a branching statements or multiline comments e.g.
if (foo) {
bar();
bar();
bar();
}
when folded becomes:
if (foo) {
...
}
/* this is a multiline comment
line 2
line 3
etc
*/
when folded becomes:
/* this is a multiline comment... */