diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2021-11-09 20:04:18 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2021-11-09 20:04:18 +0800 |
commit | c0adba340dddaea3ff4aa836a99d1a0baf43594b (patch) | |
tree | a36cd0d1a612d8e04409dad26ecc8be2c1995dcd /script/core | |
parent | b151664ddac55237a849db18779d7636e1cd04d9 (diff) | |
download | lua-language-server-c0adba340dddaea3ff4aa836a99d1a0baf43594b.zip |
fix
Diffstat (limited to 'script/core')
-rw-r--r-- | script/core/completion.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/script/core/completion.lua b/script/core/completion.lua index b9a6aa9a..d834c172 100644 --- a/script/core/completion.lua +++ b/script/core/completion.lua @@ -2067,7 +2067,7 @@ local function getCache(uri, position) end if results.enableCommon then - checkCommon(uri, word, position, results) + checkCommon(state, word, position, results) end return cache.results |