Create custom ace javascript mode to handle Function sig

Fixes #1911
This commit is contained in:
Nick O'Leary
2018-10-02 23:01:34 +01:00
parent 2a50c66df8
commit b2f50da322
9 changed files with 317 additions and 3 deletions

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,9 @@
ace.define("ace/snippets/nrjavascript",[],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="nrjavascript"});
(function() {
ace.require(["ace/snippets/nrjavascript"], function(m) {
if (typeof module == "object" && typeof exports == "object" && module) {
module.exports = m;
}
});
})();

File diff suppressed because one or more lines are too long