mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/CodeEditor
synced 2024-11-15 03:23:45 +00:00
7254cda535
Updated to
6b88b939c2
Includes fixes for drag delay (bug 60432)
and chrome useragent detection: Github issue
https://github.com/ajaxorg/ace/issues/1950
Bug: T62432
Change-Id: I5ac67a812f09ac43e73475613afc9a3f1ddc9a75
29 lines
592 B
JavaScript
29 lines
592 B
JavaScript
define("ace/snippets/lua",["require","exports","module"], function(require, exports, module) {
|
|
"use strict";
|
|
|
|
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";
|
|
|
|
});
|