Update ACE Editor to version 1.32.6

This commit is contained in:
Sebastian Serth
2024-02-13 14:46:36 +01:00
committed by Sebastian Serth
parent 0a473c7fd3
commit b00d45521b
481 changed files with 171566 additions and 125260 deletions

View File

@ -1,17 +1,16 @@
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";
define("ace/snippets/csound_document.snippets",["require","exports","module"], function(require, exports, module){module.exports = "# <CsoundSynthesizer>\nsnippet synth\n\t<CsoundSynthesizer>\n\t<CsInstruments>\n\t${1}\n\t</CsInstruments>\n\t<CsScore>\n\te\n\t</CsScore>\n\t</CsoundSynthesizer>\n";
});
define("ace/snippets/csound_document",["require","exports","module","ace/snippets/csound_document.snippets"], function(require, exports, module){"use strict";
exports.snippetText = require("./csound_document.snippets");
exports.scope = "csound_document";
}); (function() {
window.require(["ace/snippets/csound_document"], function(m) {
if (typeof module == "object" && typeof exports == "object" && module) {
module.exports = m;
}
});
})();