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

pull/2906/head
Thomas Tan 3 months ago committed by GitHub
parent f760ed9fb1
commit 1ee18b5df5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -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

Loading…
Cancel
Save