Add initial ace editor

This commit is contained in:
Timothy Pidashev
2022-01-06 22:27:18 -08:00
parent 73aecb076f
commit 78c96c0aff
428 changed files with 334198 additions and 1 deletions

View File

@@ -0,0 +1,24 @@
ace.define("ace/snippets/csound_document",["require","exports","module"], function(require, exports, module) {
"use strict";
exports.snippetText = "# <CsoundSynthesizer>\n\
snippet synth\n\
<CsoundSynthesizer>\n\
<CsInstruments>\n\
${1}\n\
</CsInstruments>\n\
<CsScore>\n\
e\n\
</CsScore>\n\
</CsoundSynthesizer>\n\
";
exports.scope = "csound_document";
}); (function() {
ace.require(["ace/snippets/csound_document"], function(m) {
if (typeof module == "object" && typeof exports == "object" && module) {
module.exports = m;
}
});
})();