You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
660 B
JavaScript
23 lines
660 B
JavaScript
5 years ago
|
define("ace/snippets/maze",["require","exports","module"], function(require, exports, module) {
|
||
|
"use strict";
|
||
|
|
||
|
exports.snippetText = "snippet >\n\
|
||
|
description assignment\n\
|
||
|
scope maze\n\
|
||
|
-> ${1}= ${2}\n\
|
||
|
\n\
|
||
|
snippet >\n\
|
||
|
description if\n\
|
||
|
scope maze\n\
|
||
|
-> IF ${2:**} THEN %${3:L} ELSE %${4:R}\n\
|
||
|
";
|
||
|
exports.scope = "maze";
|
||
|
|
||
|
}); (function() {
|
||
|
window.require(["ace/snippets/maze"], function(m) {
|
||
|
if (typeof module == "object" && typeof exports == "object" && module) {
|
||
|
module.exports = m;
|
||
|
}
|
||
|
});
|
||
|
})();
|
||
|
|