Skip to content

Commit 4d77cf2

Browse files
committed
fix(handler): properly show errors generated by setting up handlers
1 parent 6ff480b commit 4d77cf2

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

lua/lazy/core/handler/init.lua

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
local Util = require("lazy.core.util")
12
local Config = require("lazy.core.config")
23

34
---@class LazyHandler
@@ -23,7 +24,9 @@ function M.setup()
2324
M.handlers[type] = M.new(type)
2425
end
2526
for _, plugin in pairs(Config.plugins) do
26-
M.enable(plugin)
27+
Util.try(function()
28+
M.enable(plugin)
29+
end, "Failed to setup handlers for " .. plugin.name)
2730
end
2831
end
2932

0 commit comments

Comments
 (0)