diff options
Diffstat (limited to 'tests/actions/addon/custom-override/plugins/format/xmake.lua')
| -rw-r--r-- | tests/actions/addon/custom-override/plugins/format/xmake.lua | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/actions/addon/custom-override/plugins/format/xmake.lua b/tests/actions/addon/custom-override/plugins/format/xmake.lua new file mode 100644 index 000000000..446e24db1 --- /dev/null +++ b/tests/actions/addon/custom-override/plugins/format/xmake.lua @@ -0,0 +1,6 @@ +-- @note `format` is a builtin plugin of xmake, we use it to test that an addon +-- is able to take over a builtin plugin +task("format") + set_category("plugin") + set_menu {usage = "xmake format", description = "Say hello instead of formatting.", options = {}} + on_run("main") |
