Files
jupyter_contrib_nbextensions/nbextensions/usability/codefolding/firstline-fold.js
T
2015-09-01 13:03:39 +02:00

15 lines
500 B
JavaScript

/* 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 ;
});