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
691 B
JavaScript
23 lines
691 B
JavaScript
define("ace/snippets/snippets",["require","exports","module"], function(require, exports, module) {
|
|
"use strict";
|
|
|
|
exports.snippetText = "# snippets for making snippets :)\n\
|
|
snippet snip\n\
|
|
snippet ${1:trigger}\n\
|
|
${2}\n\
|
|
snippet msnip\n\
|
|
snippet ${1:trigger} ${2:description}\n\
|
|
${3}\n\
|
|
snippet v\n\
|
|
{VISUAL}\n\
|
|
";
|
|
exports.scope = "snippets";
|
|
|
|
}); (function() {
|
|
window.require(["ace/snippets/snippets"], function(m) {
|
|
if (typeof module == "object" && typeof exports == "object" && module) {
|
|
module.exports = m;
|
|
}
|
|
});
|
|
})();
|
|
|