feat(ui): show modpaths in debug

This commit is contained in:
Folke Lemaitre 2022-12-22 09:09:35 +01:00
parent dd9648f8ec
commit 63042310f4
No known key found for this signature in database
GPG Key ID: 41F8B1FBACAE2040
1 changed files with 5 additions and 1 deletions

View File

@ -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