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
After some more testing it seems that the tostring(vim.version()) works starting with nvim 0.10.0, but since kickstart considers 0.9.4 version as recent enough and the message for old version also uses tostring() I'd say this needs to be fixed.
The text was updated successfully, but these errors were encountered:
dam9000
added a commit
to dam9000/kickstart-modular.nvim
that referenced
this issue
Mar 3, 2024
Fixes: nvim-lua#677
Neovim prior to 0.10 does not support tostring(vim.version())
this resulted in the :checkhealth reported version as:
- OK Neovim version is: 'table: 0x7f470b340028'
With this fix the version is reported properly:
- OK Neovim version is: '0.9.5'
Running
:checkhealth
reports the version as atable: 0x7f01f79278d8
instead of an actual version string:If I call:
it will print the following:
Seems there is an issue with tostring(), this prints
table
:After some more testing it seems that the
tostring(vim.version())
works starting with nvim 0.10.0, but since kickstart considers 0.9.4 version as recent enough and the message for old version also uses tostring() I'd say this needs to be fixed.The text was updated successfully, but these errors were encountered: