overleaf/services/web/public/js/ace-1.4.4/snippets/csound_document.js
Alasdair Smith a3894ac9b4 Merge pull request #1794 from overleaf/as-upgrade-ace-1.4.4
Upgrade Ace to v1.4.4

GitOrigin-RevId: 26681bcf255537f8eb09fa0ac1c98009cf964496
2019-05-23 08:49:13 +00:00

25 lines
No EOL
679 B
JavaScript

ace.define("ace/snippets/csound_document",[], 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;
}
});
})();