1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
| 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() {
| window.require(["ace/snippets/csound_document"], function(m) {
| if (typeof module == "object" && typeof exports == "object" && module) {
| module.exports = m;
| }
| });
| })();
|
|
|