mirror of
https://github.com/folke/lazy.nvim.git
synced 2025-04-18 20:36:45 +00:00
fix(util): made Util.lsmod
more robust. See #298
This commit is contained in:
parent
f36c7cb0dc
commit
953c2791d8
3 changed files with 52 additions and 15 deletions
|
@ -195,13 +195,13 @@ end
|
|||
---@param fn fun(modname:string, modpath:string)
|
||||
function M.lsmod(modname, fn)
|
||||
local Cache = require("lazy.core.cache")
|
||||
local root, modpath = Cache.find_dir(modname)
|
||||
local root = Cache.find_root(modname)
|
||||
if not root then
|
||||
return
|
||||
end
|
||||
|
||||
if modpath and not modpath:find("/init%.lua$") and vim.loop.fs_stat(modpath) then
|
||||
fn(modname, modpath)
|
||||
if vim.loop.fs_stat(root .. ".lua") then
|
||||
fn(modname, root .. ".lua")
|
||||
end
|
||||
|
||||
M.ls(root, function(path, name, type)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue