diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2021-05-08 16:21:22 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2021-05-08 16:21:22 +0800 |
commit | 589055fefb2210b82dbd4a5cb601a230a1953d3b (patch) | |
tree | 91dd79856747aae72b5a78a27c3e312e8f3cf8de | |
parent | b5dd953912738cac05d8292eb080c6860f18d418 (diff) | |
download | lua-language-server-589055fefb2210b82dbd4a5cb601a230a1953d3b.zip |
update submodules
m--------- | 3rd/luamake | 0 | ||||
-rw-r--r-- | script/core/completion.lua | 2 |
2 files changed, 1 insertions, 1 deletions
diff --git a/3rd/luamake b/3rd/luamake -Subproject 36a40b9a9cb044564bca7cef7d2cf244b22d781 +Subproject 3b73cd3530494aa9a8505bd4a33fc9b909a18ba diff --git a/script/core/completion.lua b/script/core/completion.lua index 0a5f688e..ef8f220f 100644 --- a/script/core/completion.lua +++ b/script/core/completion.lua @@ -492,7 +492,7 @@ local function checkFieldOfRefs(refs, ast, word, start, offset, parent, oop, res end local funcLabel if config.config.completion.showParams then - local value = guide.getObjectValue(src) or src + local value = searcher.getObjectValue(src) or src if value.type == 'function' or value.type == 'doc.type.function' then funcLabel = name .. getParams(value, oop) |