diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2021-09-24 19:28:13 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2021-09-24 19:28:13 +0800 |
commit | 105476fe549a37250d6799262d5ffe370e8b9350 (patch) | |
tree | 97b37f7f1bd3a1d21e276bcf2d9122562f7329d4 /script/core | |
parent | 10ef09e0c3b553fa40845499ef7038b8e7574a01 (diff) | |
download | lua-language-server-105476fe549a37250d6799262d5ffe370e8b9350.zip |
default severity to `Warning`
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 bb55506a..d384017d 100644 --- a/script/core/completion.lua +++ b/script/core/completion.lua @@ -1994,7 +1994,7 @@ local function completion(uri, position, triggerCharacter) local results = getCache(uri, position) tracy.ZoneEnd() if results then - return results + --return results end tracy.ZoneBeginN 'completion #1' local state = files.getState(uri) |