mirror of
https://github.com/neovim/neovim.git
synced 2025-09-20 10:18:18 +00:00
fix(path): accept special characters on Windows
(cherry picked from commit 33f97c1ed2
)
This commit is contained in:

committed by
github-actions[bot]
![github-actions[bot]](/assets/img/avatar_default.png)
parent
ce52639936
commit
a0da8c3e69
@@ -6,16 +6,19 @@ local command = helpers.command
|
||||
local insert = helpers.insert
|
||||
local feed = helpers.feed
|
||||
local is_os = helpers.is_os
|
||||
local mkdir = helpers.mkdir
|
||||
local rmdir = helpers.rmdir
|
||||
local write_file = helpers.write_file
|
||||
|
||||
local function join_path(...)
|
||||
local pathsep = (is_os('win') and '\\' or '/')
|
||||
return table.concat({...}, pathsep)
|
||||
end
|
||||
|
||||
describe('path collapse', function()
|
||||
local targetdir
|
||||
local expected_path
|
||||
|
||||
local function join_path(...)
|
||||
local pathsep = (is_os('win') and '\\' or '/')
|
||||
return table.concat({...}, pathsep)
|
||||
end
|
||||
|
||||
before_each(function()
|
||||
targetdir = join_path('test', 'functional', 'fixtures')
|
||||
clear()
|
||||
@@ -57,6 +60,27 @@ describe('path collapse', function()
|
||||
end)
|
||||
end)
|
||||
|
||||
describe('expand wildcard', function()
|
||||
before_each(clear)
|
||||
|
||||
it('with special characters #24421', function()
|
||||
local folders = is_os('win') and {
|
||||
'{folder}',
|
||||
'folder$name'
|
||||
} or {
|
||||
'folder-name',
|
||||
'folder#name'
|
||||
}
|
||||
for _, folder in ipairs(folders) do
|
||||
mkdir(folder)
|
||||
local file = join_path(folder, 'file.txt')
|
||||
write_file(file, '')
|
||||
eq(file, eval('expand("'..folder..'/*")'))
|
||||
rmdir(folder)
|
||||
end
|
||||
end)
|
||||
end)
|
||||
|
||||
describe('file search', function()
|
||||
before_each(clear)
|
||||
|
||||
|
Reference in New Issue
Block a user