mirror of
https://github.com/neovim/neovim.git
synced 2026-01-04 02:17:09 +10:00
Problem: After6f1cbfc9abfnameescape() is no longer called on the name of the file to be extracted. However, while spaces indeed don't need to be escaped, unzip treats '[' as a wildcard character, so it need to be escaped. Solution: Escape '[' on both MS-Windows and Unix. From the docs it seems '*' and '?' also need escaping, but they seem to actually work without escaping. fixes: neovim/neovim#29977 closes: vim/vim#15427c5bdd66558Co-authored-by: zeertzjq <zeertzjq@outlook.com>