Skip to content

Commit

Permalink
fix(loader): source runtime files without silent. Fixes #336
Browse files Browse the repository at this point in the history
  • Loading branch information
folke committed Jan 6, 2023
1 parent 4f76b43 commit 102bc27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/lazy/core/loader.lua
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ end
function M.source(path)
Util.track({ runtime = path })
Util.try(function()
vim.cmd("silent source " .. path)
vim.cmd("source " .. path)
end, "Failed to source `" .. path .. "`")
Util.track()
end
Expand Down

0 comments on commit 102bc27

Please sign in to comment.