mirror of https://github.com/folke/lazy.nvim.git
fix(cache): check full paths of cached modpaths. Fixes #324
This commit is contained in:
parent
af351f69ba
commit
b2dec14824
|
@ -55,7 +55,7 @@ function M.check_path(modname, modpath)
|
||||||
|
|
||||||
-- check rtp excluding plugins. This is a very small list, so should be fast
|
-- check rtp excluding plugins. This is a very small list, so should be fast
|
||||||
for _, path in ipairs(M.get_rtp()) do
|
for _, path in ipairs(M.get_rtp()) do
|
||||||
if modpath:find(path, 1, true) == 1 then
|
if modpath:find(path .. "/", 1, true) == 1 then
|
||||||
return true
|
return true
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue