summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorruki <[email protected]>2023-03-01 23:14:23 +0800
committerruki <[email protected]>2023-03-01 23:14:23 +0800
commit1a1b910c141ee7e6416b552b97afd149cf4743b8 (patch)
treee1dc885cdcadfb9b964e180d3dca621d0e754fc4
parent784418c8eac62cde08cbf0f6679baeefb3fb4a4e (diff)
fix completer again
-rw-r--r--xmake/modules/private/utils/completer.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/modules/private/utils/completer.lua b/xmake/modules/private/utils/completer.lua
index db7d4cbe9..3dc014227 100644
--- a/xmake/modules/private/utils/completer.lua
+++ b/xmake/modules/private/utils/completer.lua
@@ -136,7 +136,7 @@ function completer:_complete_option_kv_v(options, current, completing, name, val
table.insert(found_candidates, { value = format("--%s=%s", name, v), is_complete = true })
end
end
- completer:_print_candidates(found_candidates)
+ self:_print_candidates(found_candidates)
-- whether any candidates has been found, finish complete since we don't have more info
return true