summaryrefslogtreecommitdiff
path: root/server/src/workspace.lua
diff options
context:
space:
mode:
author最萌小汐 <sumneko@hotmail.com>2018-12-28 16:01:17 +0800
committer最萌小汐 <sumneko@hotmail.com>2018-12-28 16:01:17 +0800
commit6f3cb7196f0230f6cf18b21a1617d133d32d611c (patch)
tree1b97090f771957c0c48d3315f81ec98c313effcc /server/src/workspace.lua
parentd0cad6f25ede39e95ae4486a24abba643b0860fb (diff)
downloadlua-language-server-6f3cb7196f0230f6cf18b21a1617d133d32d611c.zip
修正自动完成搜索require的bug
Diffstat (limited to 'server/src/workspace.lua')
-rw-r--r--server/src/workspace.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/src/workspace.lua b/server/src/workspace.lua
index 9e9c03d2..aaa9a47d 100644
--- a/server/src/workspace.lua
+++ b/server/src/workspace.lua
@@ -181,7 +181,7 @@ function mt:matchPath(baseUri, input)
local list = self:convertPathAsRequire(filename, start + 1)
if list then
for _, str in ipairs(list) do
- if #str >= #input then
+ if #str >= #input and str:sub(1, #input) == input then
if not map[str]
or similarity(filename, baseName) > similarity(map[str], baseName)
then