Skip to content

Commit 6304231

Browse files
committed
feat(ui): show modpaths in debug
1 parent dd9648f commit 6304231

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

lua/lazy/view/render.lua

+5-1
Original file line numberDiff line numberDiff line change
@@ -513,7 +513,11 @@ function M:debug()
513513
local Cache = require("lazy.core.cache")
514514
Util.foreach(Cache.cache, function(modname, entry)
515515
local kb = math.floor(#entry.chunk / 10.24) / 100
516-
self:append("", "LazySpecial", { indent = 2 }):append(modname):append(" " .. kb .. "Kb", "Bold"):nl()
516+
self:append("", "LazySpecial", { indent = 2 }):append(modname):append(" " .. kb .. "Kb", "Bold")
517+
if entry.modpath ~= modname then
518+
self:append(" " .. vim.fn.fnamemodify(entry.modpath, ":p:~:."), "Comment")
519+
end
520+
self:nl()
517521
end)
518522
end
519523

0 commit comments

Comments
 (0)