diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2021-02-08 16:29:00 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2021-02-08 16:29:00 +0800 |
commit | 9d2a2e1abf9d1c79d5538bdbf13a8f249d5176a4 (patch) | |
tree | 862fa53a043d0ca7ebf984d378c84e2d5001cc75 /script/core | |
parent | 8d618992bb7f1d20dde955d8defd62e26e06bf87 (diff) | |
download | lua-language-server-9d2a2e1abf9d1c79d5538bdbf13a8f249d5176a4.zip |
show meta in require
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 97e83f00..d2f761c1 100644 --- a/script/core/completion.lua +++ b/script/core/completion.lua @@ -869,7 +869,7 @@ local function checkUri(ast, text, offset, results) goto CONTINUE end if vm.isMetaFile(uri) then - goto CONTINUE + --goto CONTINUE end local path = workspace.getRelativePath(uri) local infos = rpath.getVisiblePath(path, config.config.runtime.path) |