(Windows) Make slashes in path to Mason's bin dir consistent (#2877)

This commit is contained in:
Thomas Tan 2024-06-22 08:39:06 -07:00 committed by GitHub
parent f760ed9fb1
commit 1ee18b5df5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -56,4 +56,6 @@ g["loaded_ruby_provider"] = 0
-- add binaries installed by mason.nvim to path
local is_windows = vim.fn.has("win32") ~= 0
vim.env.PATH = vim.fn.stdpath "data" .. "/mason/bin" .. (is_windows and ";" or ":") .. vim.env.PATH
local sep = is_windows and "\\" or "/"
local delim = is_windows and ";" or ":"
vim.env.PATH = table.concat({vim.fn.stdpath "data", "mason", "bin"}, sep) .. delim .. vim.env.PATH