From 1675d370bfba182560aa526190cdf808a3a80420 Mon Sep 17 00:00:00 2001 From: TJ DeVries Date: Tue, 27 Apr 2021 17:30:45 -0400 Subject: [PATCH] feat: Just straight up error right away for nvim 0.4.4 --- plugin/telescope.vim | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/plugin/telescope.vim b/plugin/telescope.vim index 2eea7b1..011b6e3 100644 --- a/plugin/telescope.vim +++ b/plugin/telescope.vim @@ -1,3 +1,8 @@ +if !has('nvim-0.5') + echoerr "Telescope.nvim requires at least nvim-0.5. Please update or uninstall" + finish +end + if exists('g:loaded_telescope') finish endif