0-hero's picture
Add files using upload-large-folder tool
9b31431 verified
raw
history blame
496 Bytes
/* allow folding of complete cell, if comment is in first line */
CodeMirror.registerHelper("fold", "firstline", function(cm, start) {
var mode = cm.getMode(), Token = mode.lineComment;
if (start.line == 0) {
var lineText = cm.getLine(start.line);
var found = lineText.lastIndexOf(Token,0);
if (found == 0) {
end = cm.lastLine();
return {from: CodeMirror.Pos(start.line, null),
to: CodeMirror.Pos(end, null)};
}
}
return ;
});