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
1 changed files with 1 additions and 1 deletions

View File

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