@@ -27,6 +27,46 @@ function M.track(name, time)
27
27
end
28
28
end
29
29
30
+ function M .try (fn , msg )
31
+ -- error handler
32
+ local error_handler = function (err )
33
+ local Config = require (" lazy.core.config" )
34
+ local trace = {}
35
+ local level = 1
36
+ while true do
37
+ local info = debug.getinfo (level , " Sln" )
38
+ if not info then
39
+ break
40
+ end
41
+ if info .what == " Lua" and not info .source :find (" lazy.nvim" ) then
42
+ local source = info .source :sub (2 )
43
+ if source :find (Config .options .package_path , 1 , true ) == 1 then
44
+ source = source :sub (# Config .options .package_path + 1 ):gsub (" ^/opt/" , " " ):gsub (" ^/start/" , " " )
45
+ end
46
+ source = vim .fn .fnamemodify (source , " :p:~:." )
47
+ local line = " - " .. source .. " :" .. info .currentline
48
+ if info .name then
49
+ line = line .. " _in_ **" .. info .name .. " **"
50
+ end
51
+ table.insert (trace , line )
52
+ end
53
+ level = level + 1
54
+ end
55
+ vim .schedule (function ()
56
+ msg = msg .. " \n\n " .. err
57
+ if # trace > 0 then
58
+ msg = msg .. " \n\n # stacktrace:\n " .. table.concat (trace , " \n " )
59
+ end
60
+ M .error (msg )
61
+ end )
62
+ return err
63
+ end
64
+
65
+ --- @type boolean , any
66
+ local ok , result = xpcall (fn , error_handler )
67
+ return ok and result or nil
68
+ end
69
+
30
70
-- Fast implementation to check if a table is a list
31
71
--- @param t table
32
72
function M .is_list (t )
@@ -120,16 +160,25 @@ function M.lsmod(root, fn)
120
160
end )
121
161
end
122
162
123
- function M .error (msg )
124
- vim .notify (msg , vim .log .levels .ERROR , {
163
+ function M .notify (msg , level )
164
+ vim .notify (msg , level , {
165
+ on_open = function (win )
166
+ vim .wo [win ].conceallevel = 3
167
+ vim .wo [win ].concealcursor = " "
168
+ vim .wo [win ].spell = false
169
+ local buf = vim .api .nvim_win_get_buf (win )
170
+ vim .bo [buf ].filetype = " markdown"
171
+ end ,
125
172
title = " lazy.nvim" ,
126
173
})
127
174
end
128
175
176
+ function M .error (msg )
177
+ M .notify (msg , vim .log .levels .ERROR )
178
+ end
179
+
129
180
function M .info (msg )
130
- vim .notify (msg , vim .log .levels .INFO , {
131
- title = " lazy.nvim" ,
132
- })
181
+ M .notify (msg , vim .log .levels .INFO )
133
182
end
134
183
135
184
return M
0 commit comments