File tree 1 file changed +11
-3
lines changed
1 file changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -16,9 +16,7 @@ local Text = require("lazy.view.text")
16
16
--- @field _diagnostics LazyDiagnostic[]
17
17
--- @field plugin_range table<string , { from : number , to : number } >
18
18
--- @field _details ? string
19
- local M = setmetatable ({}, {
20
- __index = Text ,
21
- })
19
+ local M = setmetatable ({}, { __index = Text })
22
20
23
21
function M .new (buf , win , padding )
24
22
local self = setmetatable ({}, { __index = M })
@@ -201,6 +199,16 @@ function M:reason(reason, opts)
201
199
break
202
200
end
203
201
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
204
212
end
205
213
local time = " " .. math.floor ((reason .time or 0 ) / 1e6 * 100 ) / 100 .. " ms"
206
214
if not opts .time_right then
You can’t perform that action at this time.
0 commit comments