Skip to content

Commit 102bc27

Browse files
committed
fix(loader): source runtime files without silent. Fixes #336
1 parent 4f76b43 commit 102bc27

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lua/lazy/core/loader.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ end
345345
function M.source(path)
346346
Util.track({ runtime = path })
347347
Util.try(function()
348-
vim.cmd("silent source " .. path)
348+
vim.cmd("source " .. path)
349349
end, "Failed to source `" .. path .. "`")
350350
Util.track()
351351
end

0 commit comments

Comments
 (0)