diff options
| author | Simon Hauser <Simon-Hauser@outlook.de> | 2022-04-22 16:08:56 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-04-22 16:08:56 +0200 |
| commit | 5a58b1f53577a8e124d703b5f8f3a29d07416753 (patch) | |
| tree | 220b9bac5864812ddec932f3efbf8c513aaf8f63 /lua/telescope | |
| parent | d88094fbfd84b297178252230f6faf0e7d2f7650 (diff) | |
break: bump minimum required neovim version to 0.7 (#1851)
Diffstat (limited to 'lua/telescope')
| -rw-r--r-- | lua/telescope/builtin/init.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lua/telescope/builtin/init.lua b/lua/telescope/builtin/init.lua index bd70a47..53868a0 100644 --- a/lua/telescope/builtin/init.lua +++ b/lua/telescope/builtin/init.lua @@ -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 |
