summaryrefslogtreecommitdiff
path: root/script/core/completion
diff options
context:
space:
mode:
Diffstat (limited to 'script/core/completion')
-rw-r--r--script/core/completion/completion.lua14
1 files changed, 14 insertions, 0 deletions
diff --git a/script/core/completion/completion.lua b/script/core/completion/completion.lua
index 30df047c..d751b727 100644
--- a/script/core/completion/completion.lua
+++ b/script/core/completion/completion.lua
@@ -157,12 +157,26 @@ local function buildFunctionSnip(source, value, oop)
local name = (getName(source) or ''):gsub('^.+[$.:]', '')
local args = getArg(value, oop)
local id = 0
+ local needTruncateId = 0
args = args:gsub('[^,]+', function (arg)
id = id + 1
+ if arg:match('^%s*[^?]+%?:') or arg:match('^%s*%.%.%.:') then
+ if needTruncateId == 0 then
+ needTruncateId = id
+ end
+ else
+ needTruncateId = 0
+ end
return arg:gsub('^(%s*)(.+)', function (sp, word)
return ('%s${%d:%s}'):format(sp, id, word)
end)
end)
+ if needTruncateId > 0 then
+ local start = args:find(',?%s*%${' .. needTruncateId)
+ if start then
+ args = start == 1 and '$1' or args:sub(1, start - 1)
+ end
+ end
return ('%s(%s)'):format(name, args)
end