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

This commit is contained in:
Thomas Tan
2024-06-22 21:09:06 +05:30
committed by GitHub
parent f760ed9fb1
commit 1ee18b5df5
+3 -1
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