fix: windows

This commit is contained in:
Folke Lemaitre 2024-07-07 05:36:38 +02:00
parent f18d0131ed
commit 2d83b1a5c3
No known key found for this signature in database
GPG Key ID: 36B7C1C85AAC487F

View File

@ -101,6 +101,9 @@ function M.select()
local file = session:sub(#Config.options.dir + 1, -5) local file = session:sub(#Config.options.dir + 1, -5)
local dir, branch = unpack(vim.split(file, "%%", { plain = true })) local dir, branch = unpack(vim.split(file, "%%", { plain = true }))
dir = dir:gsub("%%", "/") dir = dir:gsub("%%", "/")
if jit.os:find("Windows") then
dir = dir:gsub("^(%w)/", "%1:/")
end
if not have[dir] then if not have[dir] then
have[dir] = true have[dir] = true
items[#items + 1] = { session = session, dir = dir, branch = branch } items[#items + 1] = { session = session, dir = dir, branch = branch }