fix(loader): source runtime files without silent. Fixes #336

This commit is contained in:
Folke Lemaitre 2023-01-06 19:16:39 +01:00
parent 4f76b431f7
commit 102bc2722e
No known key found for this signature in database
GPG key ID: 41F8B1FBACAE2040

View file

@ -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