mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
a3894ac9b4
Upgrade Ace to v1.4.4 GitOrigin-RevId: 26681bcf255537f8eb09fa0ac1c98009cf964496
36 lines
No EOL
895 B
JavaScript
36 lines
No EOL
895 B
JavaScript
ace.define("ace/snippets/lua",[], 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";
|
|
|
|
});
|
|
(function() {
|
|
ace.require(["ace/snippets/lua"], function(m) {
|
|
if (typeof module == "object" && typeof exports == "object" && module) {
|
|
module.exports = m;
|
|
}
|
|
});
|
|
})();
|
|
|