MCPcopy Create free account
hub / github.com/TruthHun/BookStack / nextLine

Function nextLine

static/editor.md/lib/codemirror/addon/fold/xml-fold.js:33–38  ·  view source on GitHub ↗
(iter)

Source from the content-addressed store, hash-verified

31 }
32
33 function nextLine(iter) {
34 if (iter.line >= iter.max) return;
35 iter.ch = 0;
36 iter.text = iter.cm.getLine(++iter.line);
37 return true;
38 }
39 function prevLine(iter) {
40 if (iter.line <= iter.min) return;
41 iter.text = iter.cm.getLine(--iter.line);

Callers 2

toTagEndFunction · 0.85
toNextTagFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected