Meriel Luna Mittelbach
Meriel Luna Mittelbach
still happens as of current neovim HEAD / vim 9.1.16
The documentation makes repeated mention of the `FileExplorer` autocmd group, which, if it exists, is used to implement `:browse` in the TUI. Looking around the codebase for `CMOD_BROWSE` doesn't seem...
This code doesn't work as is, calloc has a different signature from malloc: ```c void* malloc(size_t size); void* calloc(size_t nmemb, size_t size); ``` you'd need to set r1 to 1...
the calloc parameter order doesn't matter, we already talked about this on Discord. It's much simpler to do it the wrong way and accept it doesn't matter than to edit...
On that note, something that would be a great improvement and would give async "for free" would be the ability to run the commands underpinning `:make`, `:grep`, etc. in a...
having the same issue. both pacman.conf and paru.conf are vanilla save for `Chroot` being enabled in paru.conf. 2.0.3 also.
In the sense of saying "we only support cmd.exe and powershell", or "we eventually stop supporting cmd.exe"? I use Neovim on Windows exclusively through an MSYS2 environment, and while I...
One thing I'd definitely like to fix is this ```vim :make :!cargo 2>&1| tee F:\msys2\tmp\nvim.0\cn0m97\2 cargo 2>&1| tee F:\msys2 mp vim.0error ... E40: Can't open errorfile F:\msys2\tmp\nvim.0\cn0m97\2 ``` The weird...
That would be a more radical if for my purposes equally workable solution. ~~I am slightly worried about breaking the ability to use [UNC Paths](https://learn.microsoft.com/en-us/dotnet/standard/io/file-path-formats#unc-paths), which are used for referring...
Linking https://github.com/neovim/neovim/pull/28395 since the topic of slash handling got brought up here. Treating this as a sort of "tracking issue" while the details of what we want to change/fix aren't...