diff options
Diffstat (limited to 'xmake/plugins/lua/xmake.lua')
| -rwxr-xr-x | xmake/plugins/lua/xmake.lua | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/xmake/plugins/lua/xmake.lua b/xmake/plugins/lua/xmake.lua index 2ed7f22a7..8de34a0a2 100755 --- a/xmake/plugins/lua/xmake.lua +++ b/xmake/plugins/lua/xmake.lua @@ -59,24 +59,24 @@ task("lua") end) -- set menu - set_menu({ - -- usage - usage = "xmake lua|l [options] [script] [arguments]" + set_menu { + -- usage + usage = "xmake lua|l [options] [script] [arguments]" - -- description - , description = "Run the lua script." + -- description + , description = "Run the lua script." - -- xmake l - , shortname = 'l' + -- xmake l + , shortname = 'l' - -- options - , options = - { - {'l', "list", "k", nil, "List all scripts." } - , {nil, "script", "v", nil, "Run the given lua script." } - , {nil, "arguments", "vs", nil, "The script arguments." } - } - }) + -- options + , options = + { + {'l', "list", "k", nil, "List all scripts." } + , {nil, "script", "v", nil, "Run the given lua script." } + , {nil, "arguments", "vs", nil, "The script arguments." } + } + } |
