fix: vim.fn.has('win32') returns 0 or 1, not a boolean (#8)
This commit is contained in:
parent
83af96b1f2
commit
77cf5a6ee1
@ -6,7 +6,7 @@ local e = vim.fn.fnameescape
|
|||||||
|
|
||||||
function M.get_current()
|
function M.get_current()
|
||||||
local pattern = "/"
|
local pattern = "/"
|
||||||
if vim.fn.has("win32") then
|
if vim.fn.has("win32") == 1 then
|
||||||
pattern = '[\\:]'
|
pattern = '[\\:]'
|
||||||
end
|
end
|
||||||
local name = vim.fn.getcwd():gsub(pattern, "%%")
|
local name = vim.fn.getcwd():gsub(pattern, "%%")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user