Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(findNvim): version parsing robustness
Problem: Version parsing makes some assumptions about the `nvim -v` output that could be more robust. For example, - "NVIM" may change to "Nvim": neovim/neovim@98ba65b - "v" is not guaranteed to precede the version Solution: - match case-insensitive "NVIM" - match "v?" instead of "v" - Note: `--api-info` is not used because it is a big payload (thus requires streamed decoding, thus more complex code).
- Loading branch information