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
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).
0 commit comments