diff options
| author | Opportunity <[email protected]> | 2020-06-30 11:48:32 +0800 |
|---|---|---|
| committer | Opportunity <[email protected]> | 2020-06-30 11:48:32 +0800 |
| commit | 58c8e709cc4677ec6fb5fdfcec1958fab6743709 (patch) | |
| tree | dce1ed26d57764f4fc3e67538106793c3e1e54b2 /xmake/plugins/show/xmake.lua | |
| parent | f03a57c21313e1f155294c8bad56cc933c71065f (diff) | |
fix auto complete
Diffstat (limited to 'xmake/plugins/show/xmake.lua')
| -rw-r--r-- | xmake/plugins/show/xmake.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/xmake/plugins/show/xmake.lua b/xmake/plugins/show/xmake.lua index 729d2eece..159eec1a6 100644 --- a/xmake/plugins/show/xmake.lua +++ b/xmake/plugins/show/xmake.lua @@ -42,7 +42,8 @@ task("show") , values = function (complete, opt) return import("list").lists() end}, - {'t', "target" , "kv" , nil , "Show the information of the given target."} + {'t', "target" , "kv" , nil , "Show the information of the given target." + , values = function (complete, opt) return import("private.utils.complete_helper.targets")(complete, opt) end } } } |
