fix: properly escape session file names on Windows (#7)

This commit is contained in:
3rdey3 2021-10-22 17:25:52 +06:00 committed by GitHub
parent 2f2b0cc69d
commit 83af96b1f2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,7 +5,11 @@ local M = {}
local e = vim.fn.fnameescape
function M.get_current()
local name = vim.fn.getcwd():gsub("/", "%%")
local pattern = "/"
if vim.fn.has("win32") then
pattern = '[\\:]'
end
local name = vim.fn.getcwd():gsub(pattern, "%%")
return Config.options.dir .. name .. ".vim"
end