mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/CodeEditor
synced 2024-12-01 02:06:18 +00:00
05e6be051c
ACE defaults to a white background now. I have no preference in this, but it is caused by a change in the TextMate theme. There is a bugreport (Bug 55423) about the old blue background. This fixes an annoying problem with Safari 7, where characters are no longer properly measured by ACE. https://github.com/ajaxorg/ace/issues/1534 Fixes double-click to select: https://github.com/ajaxorg/ace/issues/956 Set proper basePath so that require works, allowing conditional loading of ACE resources. Need for Find to work after this update Bug: 55423 Bug: 45876 Bug: 58521 Change-Id: Ia64b67b4553f77c6ba3d2aefec4bab62d111deb7
37 lines
753 B
JavaScript
37 lines
753 B
JavaScript
define('ace/snippets/velocity', ['require', 'exports', 'module' ], function(require, exports, module) {
|
|
|
|
|
|
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\
|
|
";
|
|
exports.scope = "velocity";
|
|
exports.includeScopes = ["html", "javascript", "css"];
|
|
|
|
});
|