fix: dont show errors when loading a session

This commit is contained in:
Folke Lemaitre 2022-11-30 19:28:48 +01:00
parent 251e89523d
commit ad7fcd4fed
No known key found for this signature in database
GPG Key ID: 41F8B1FBACAE2040

View File

@ -7,7 +7,7 @@ local e = vim.fn.fnameescape
function M.get_current()
local pattern = "/"
if vim.fn.has("win32") == 1 then
pattern = '[\\:]'
pattern = "[\\:]"
end
local name = vim.fn.getcwd():gsub(pattern, "%%")
return Config.options.dir .. name .. ".vim"
@ -53,7 +53,7 @@ function M.load(opt)
opt = opt or {}
local sfile = opt.last and M.get_last() or M.get_current()
if sfile and vim.fn.filereadable(sfile) ~= 0 then
vim.cmd("source " .. e(sfile))
vim.cmd("silent! source " .. e(sfile))
end
end