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. --- plugin/telescope.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'plugin') diff --git a/plugin/telescope.vim b/plugin/telescope.vim index 53d1424..5bf3cf0 100644 --- a/plugin/telescope.vim +++ b/plugin/telescope.vim @@ -1,5 +1,5 @@ -if !has('nvim-0.5.1') - echoerr "Telescope.nvim requires at least nvim-0.5.1. See `:h telescope.changelog-1406`" +if !has('nvim-0.6.0') + echoerr "Telescope.nvim requires at least nvim-0.6.0. See `:h telescope.changelog-1549`" finish end -- cgit v1.2.3