function highlightAllLines()

in frontend/src/assets/js/editor.js [103:109]


        function highlightAllLines() {
            for (let i = editor.session.getLength(); i >= 0; i--) {
                if (foldWidgets[i] === "" || foldWidgets[i] === "start") {
                    highlightLine(editor, i, mappedColors)
                }
            }
        }