From ad7fcd4fed0cecb9ae3c6cbc4a61801ef4e2466d Mon Sep 17 00:00:00 2001 From: Folke Lemaitre Date: Wed, 30 Nov 2022 19:28:48 +0100 Subject: [PATCH] fix: dont show errors when loading a session --- lua/persistence/init.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lua/persistence/init.lua b/lua/persistence/init.lua index 829ebb1..4c3fb32 100644 --- a/lua/persistence/init.lua +++ b/lua/persistence/init.lua @@ -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