backport: fix(vim.fs): dirname() returns "." on mingw/msys2 (#30484)

fix(vim.fs): dirname() returns "." on mingw/msys2 #30480

Problem:
`vim.fs.dirname([[C:\User\XXX\AppData\Local]])` returns "." on
mingw/msys2.

Solution:
- Check for "mingw" when deciding `iswin`.
- Use `has("win32")` where possible, it works in "fast" contexts since
  b02eeb6a72.
This commit is contained in:
Justin M. Keyes 2024-09-23 06:41:47 -07:00 committed by GitHub
parent 2a8d80a442
commit 6a44055a71
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 12 additions and 11 deletions

View File

@ -1,5 +1,5 @@
local health = vim.health
local iswin = vim.uv.os_uname().sysname == 'Windows_NT'
local iswin = vim.fn.has('win32') == 1
local M = {}

View File

@ -1,6 +1,8 @@
local M = {}
local iswin = vim.uv.os_uname().sysname == 'Windows_NT'
-- Can't use `has('win32')` because the `nvim -ll` test runner doesn't support `vim.fn` yet.
local sysname = vim.uv.os_uname().sysname:lower()
local iswin = not not (sysname:find('windows') or sysname:find('mingw'))
local os_sep = iswin and '\\' or '/'
--- Iterate over all the parents of the given path.

View File

@ -208,8 +208,7 @@ end
---@return string|function
---@private
function Loader.loader_lib(modname)
local sysname = uv.os_uname().sysname:lower() or ''
local is_win = sysname:find('win', 1, true) and not sysname:find('darwin', 1, true)
local is_win = vim.fn.has('win32') == 1
local ret = M.find(modname, { patterns = is_win and { '.dll' } or { '.so' } })[1]
if ret then
-- Making function name in Lua 5.1 (see src/loadlib.c:mkfuncname) is

View File

@ -3,7 +3,7 @@ local log = require('vim.lsp.log')
local protocol = require('vim.lsp.protocol')
local validate, schedule, schedule_wrap = vim.validate, vim.schedule, vim.schedule_wrap
local is_win = uv.os_uname().version:find('Windows')
local is_win = vim.fn.has('win32') == 1
--- Checks whether a given path exists and is a directory.
---@param filename string path to check

View File

@ -369,7 +369,7 @@ function M.check_logs()
)
end
function M.sysname()
local function sysname()
return uv.os_uname().sysname:lower()
end
@ -380,11 +380,11 @@ function M.is_os(s)
error('unknown platform: ' .. tostring(s))
end
return not not (
(s == 'win' and (M.sysname():find('windows') or M.sysname():find('mingw')))
or (s == 'mac' and M.sysname() == 'darwin')
or (s == 'freebsd' and M.sysname() == 'freebsd')
or (s == 'openbsd' and M.sysname() == 'openbsd')
or (s == 'bsd' and M.sysname():find('bsd'))
(s == 'win' and (sysname():find('windows') or sysname():find('mingw')))
or (s == 'mac' and sysname() == 'darwin')
or (s == 'freebsd' and sysname() == 'freebsd')
or (s == 'openbsd' and sysname() == 'openbsd')
or (s == 'bsd' and sysname():find('bsd'))
)
end