Update ACE Editor to version 1.32.6
This commit is contained in:

committed by
Sebastian Serth

parent
0a473c7fd3
commit
b00d45521b
@ -1,36 +1,17 @@
|
||||
define("ace/snippets/velocity",["require","exports","module"], function(require, exports, module) {
|
||||
"use strict";
|
||||
define("ace/snippets/velocity.snippets",["require","exports","module"], function(require, exports, module){module.exports = "# macro\nsnippet #macro\n\t#macro ( ${1:macroName} ${2:\\$var1, [\\$var2, ...]} )\n\t\t${3:## macro code}\n\t#end\n# foreach\nsnippet #foreach\n\t#foreach ( ${1:\\$item} in ${2:\\$collection} )\n\t\t${3:## foreach code}\n\t#end\n# if\nsnippet #if\n\t#if ( ${1:true} )\n\t\t${0}\n\t#end\n# if ... else\nsnippet #ife\n\t#if ( ${1:true} )\n\t\t${2}\n\t#else\n\t\t${0}\n\t#end\n#import\nsnippet #import\n\t#import ( \"${1:path/to/velocity/format}\" )\n# set\nsnippet #set\n\t#set ( $${1:var} = ${0} )\n";
|
||||
|
||||
exports.snippetText = "# macro\n\
|
||||
snippet #macro\n\
|
||||
#macro ( ${1:macroName} ${2:\\$var1, [\\$var2, ...]} )\n\
|
||||
${3:## macro code}\n\
|
||||
#end\n\
|
||||
# foreach\n\
|
||||
snippet #foreach\n\
|
||||
#foreach ( ${1:\\$item} in ${2:\\$collection} )\n\
|
||||
${3:## foreach code}\n\
|
||||
#end\n\
|
||||
# if\n\
|
||||
snippet #if\n\
|
||||
#if ( ${1:true} )\n\
|
||||
${0}\n\
|
||||
#end\n\
|
||||
# if ... else\n\
|
||||
snippet #ife\n\
|
||||
#if ( ${1:true} )\n\
|
||||
${2}\n\
|
||||
#else\n\
|
||||
${0}\n\
|
||||
#end\n\
|
||||
#import\n\
|
||||
snippet #import\n\
|
||||
#import ( \"${1:path/to/velocity/format}\" )\n\
|
||||
# set\n\
|
||||
snippet #set\n\
|
||||
#set ( $${1:var} = ${0} )\n\
|
||||
";
|
||||
});
|
||||
|
||||
define("ace/snippets/velocity",["require","exports","module","ace/snippets/velocity.snippets"], function(require, exports, module){"use strict";
|
||||
exports.snippetText = require("./velocity.snippets");
|
||||
exports.scope = "velocity";
|
||||
exports.includeScopes = ["html", "javascript", "css"];
|
||||
|
||||
});
|
||||
}); (function() {
|
||||
window.require(["ace/snippets/velocity"], function(m) {
|
||||
if (typeof module == "object" && typeof exports == "object" && module) {
|
||||
module.exports = m;
|
||||
}
|
||||
});
|
||||
})();
|
||||
|
Reference in New Issue
Block a user