Quantcast
Channel: IdeaJam RSS Feed
Viewing all articles
Browse latest Browse all 33

Domino Designer / : Improve code folding

$
0
0
Author: Mark Sta Ana
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... */


Viewing all articles
Browse latest Browse all 33

Trending Articles