support for saving code notes + other tweaks

This commit is contained in:
azivner
2018-01-21 10:33:32 -05:00
parent 090e1b845f
commit 15958d06a9
287 changed files with 61139 additions and 5 deletions

View File

@@ -0,0 +1,11 @@
// CodeMirror, copyright (c) by Marijn Haverbeke and others
// Distributed under an MIT license: http://codemirror.net/LICENSE
(function() {
var mode = CodeMirror.getMode({indentUnit: 2}, "d");
function MT(name) { test.mode(name, mode, Array.prototype.slice.call(arguments, 1)); }
MT("nested_comments",
"[comment /+]","[comment comment]","[comment +/]","[variable void] [variable main](){}");
})();