mirror of
https://github.com/folke/lazy.nvim.git
synced 2025-04-19 21:06:46 +00:00
fix(loader): source runtime files without silent
. Fixes #336
This commit is contained in:
parent
4f76b431f7
commit
102bc2722e
1 changed files with 1 additions and 1 deletions
|
@ -345,7 +345,7 @@ end
|
||||||
function M.source(path)
|
function M.source(path)
|
||||||
Util.track({ runtime = path })
|
Util.track({ runtime = path })
|
||||||
Util.try(function()
|
Util.try(function()
|
||||||
vim.cmd("silent source " .. path)
|
vim.cmd("source " .. path)
|
||||||
end, "Failed to source `" .. path .. "`")
|
end, "Failed to source `" .. path .. "`")
|
||||||
Util.track()
|
Util.track()
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue