From 61240ac75a93b3cdafb4325ab4e9d407f83965f4 Mon Sep 17 00:00:00 2001 From: Simon Hauser Date: Fri, 10 Dec 2021 16:32:28 +0100 Subject: break: bump the minimum required neovim version to 0.6 or higher (#1549) So we can use `vim.json` and `vim.diagnostics`. If you aren't able to update to 0.6.* yet you should pin the previous commit. --- lua/telescope/builtin/init.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lua/telescope/builtin/init.lua') diff --git a/lua/telescope/builtin/init.lua b/lua/telescope/builtin/init.lua index 9330aec..66f3eda 100644 --- a/lua/telescope/builtin/init.lua +++ b/lua/telescope/builtin/init.lua @@ -26,8 +26,8 @@ --- ---@brief ]] -if 1 ~= vim.fn.has "nvim-0.5.1" then - vim.api.nvim_err_writeln "This plugins requires neovim 0.5.1" +if 1 ~= vim.fn.has "nvim-0.6.0" then + vim.api.nvim_err_writeln "This plugins requires neovim 0.6.0" vim.api.nvim_err_writeln "Please update your neovim." return end -- cgit v1.2.3