| Server IP : 213.186.33.4 / Your IP : 216.73.216.193 Web Server : Apache System : Linux webm006.cluster103.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : awebpaca ( 35430) PHP Version : 8.5.0 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/a/w/e/awebpaca/Dolibarr/htdocs/includes/ace/snippets/ |
Upload File : |
ace.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";
});