Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
brianhuster committed Nov 7, 2024
1 parent 3733618 commit b19b4a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lua/autosave/health.lua
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ M.check = function()
health.start('Check requirements')
local vimver = string.format('%s.%s.%s', vim.version().major, vim.version().minor, vim.version().patch)
if vim.fn.has('nvim-0.9') == 0 then
health.warn('Neovim version is too old', 'Update to Neovim 0.9 or later')
health.error('Neovim version is too old', 'Update to Neovim 0.9 or later')
else
health.ok('Neovim version is up to date', vimver)
health.ok('Neovim %s is compatible with with autosave.nvim', vimver)
end
end

Expand Down

0 comments on commit b19b4a3

Please sign in to comment.