Skip to content

Commit 041a716

Browse files
committed
feat: show module source if loading source is under config
1 parent 64af691 commit 041a716

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

lua/lazy/view/render.lua

+11-3
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,7 @@ local Text = require("lazy.view.text")
1616
---@field _diagnostics LazyDiagnostic[]
1717
---@field plugin_range table<string, {from: number, to: number}>
1818
---@field _details? string
19-
local M = setmetatable({}, {
20-
__index = Text,
21-
})
19+
local M = setmetatable({}, { __index = Text })
2220

2321
function M.new(buf, win, padding)
2422
local self = setmetatable({}, { __index = M })
@@ -201,6 +199,16 @@ function M:reason(reason, opts)
201199
break
202200
end
203201
end
202+
if reason.source then
203+
source = vim.loop.fs_realpath(source) or source
204+
local config = vim.loop.fs_realpath(vim.fn.stdpath("config") .. "/lua")
205+
if source:find(config, 1, true) == 1 then
206+
reason.source = source:sub(#config + 2):gsub("/", "."):gsub("%.lua$", "")
207+
if reason.source == "lua" then
208+
reason.source = "init.lua"
209+
end
210+
end
211+
end
204212
end
205213
local time = " " .. math.floor((reason.time or 0) / 1e6 * 100) / 100 .. "ms"
206214
if not opts.time_right then

0 commit comments

Comments
 (0)