mirror of https://github.com/folke/lazy.nvim.git
feat(ui): show modpaths in debug
This commit is contained in:
parent
dd9648f8ec
commit
63042310f4
|
@ -513,7 +513,11 @@ function M:debug()
|
||||||
local Cache = require("lazy.core.cache")
|
local Cache = require("lazy.core.cache")
|
||||||
Util.foreach(Cache.cache, function(modname, entry)
|
Util.foreach(Cache.cache, function(modname, entry)
|
||||||
local kb = math.floor(#entry.chunk / 10.24) / 100
|
local kb = math.floor(#entry.chunk / 10.24) / 100
|
||||||
self:append("● ", "LazySpecial", { indent = 2 }):append(modname):append(" " .. kb .. "Kb", "Bold"):nl()
|
self:append("● ", "LazySpecial", { indent = 2 }):append(modname):append(" " .. kb .. "Kb", "Bold")
|
||||||
|
if entry.modpath ~= modname then
|
||||||
|
self:append(" " .. vim.fn.fnamemodify(entry.modpath, ":p:~:."), "Comment")
|
||||||
|
end
|
||||||
|
self:nl()
|
||||||
end)
|
end)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue