break: bump minimum required neovim version to 0.7 (#1851)

This commit is contained in:
Simon Hauser
2022-04-22 16:08:56 +02:00
committed by GitHub
parent d88094fbfd
commit 5a58b1f535
5 changed files with 23 additions and 7 deletions

View File

@@ -26,8 +26,8 @@
--- </code>
---@brief ]]
if 1 ~= vim.fn.has "nvim-0.6.0" then
vim.api.nvim_err_writeln "This plugins requires neovim 0.6.0"
if 1 ~= vim.fn.has "nvim-0.7.0" then
vim.api.nvim_err_writeln "This plugins requires neovim 0.7.0"
vim.api.nvim_err_writeln "Please update your neovim."
return
end