chore: fixup error message

main
olimorris 2023-02-21 16:40:54 +00:00
parent 898ddcdd46
commit 675744d835
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ function M.load_session(session, before_callback, after_callback, silent)
local ok, result = pcall(vim.cmd, (silent and "silent " or "") .. "source " .. e(session))
if not ok then
return echoerr("Error loading the session! ", result)
return echoerr("[Persisted.nvim]: Error loading the session! ", result)
end
if type(after_callback) == "function" then