mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/CodeEditor
synced 2024-12-04 11:38:35 +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
29 lines
583 B
JavaScript
29 lines
583 B
JavaScript
define('ace/snippets/lua', ['require', 'exports', 'module' ], function(require, exports, module) {
|
|
|
|
|
|
exports.snippetText = "snippet #!\n\
|
|
#!/usr/bin/env lua\n\
|
|
$1\n\
|
|
snippet local\n\
|
|
local ${1:x} = ${2:1}\n\
|
|
snippet fun\n\
|
|
function ${1:fname}(${2:...})\n\
|
|
${3:-- body}\n\
|
|
end\n\
|
|
snippet for\n\
|
|
for ${1:i}=${2:1},${3:10} do\n\
|
|
${4:print(i)}\n\
|
|
end\n\
|
|
snippet forp\n\
|
|
for ${1:i},${2:v} in pairs(${3:table_name}) do\n\
|
|
${4:-- body}\n\
|
|
end\n\
|
|
snippet fori\n\
|
|
for ${1:i},${2:v} in ipairs(${3:table_name}) do\n\
|
|
${4:-- body}\n\
|
|
end\n\
|
|
";
|
|
exports.scope = "lua";
|
|
|
|
});
|