You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Paq has had 3 different methods for removing packages:
1. Recursively walk the directory tree, removing files and directories
with the `uv.fs_*` functions (this is verbose, but it works).
2. Calling `rm` with `uv.spawn`. This does nothing on Windows. See #69
3. Calling vim's `delete` function. This will try to read file names as
regexes. I noticed when trying to delete VimTeX; see the aptly named
`vimtex/test/test-get-main/test-ugly-paths/`. I've looked for ways to
prevent this, but had no success.
Number 1. is the only solution that works correctly on multiple platforms.
:PaqClean
does nothing in windows 10 neovim 5.0The text was updated successfully, but these errors were encountered: