mirror of https://github.com/folke/lazy.nvim.git
fix(loader): source runtime files without `silent`. Fixes #336
This commit is contained in:
parent
4f76b431f7
commit
102bc2722e
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue