summaryrefslogtreecommitdiff
path: root/plugin/telescope.vim
diff options
context:
space:
mode:
authorTJ DeVries <devries.timothyj@gmail.com>2021-04-27 17:30:45 -0400
committerTJ DeVries <devries.timothyj@gmail.com>2021-04-27 17:30:45 -0400
commit1675d370bfba182560aa526190cdf808a3a80420 (patch)
tree1a5821f670fa79a391d086fef7a3b6308b24f127 /plugin/telescope.vim
parent6fd1b3bd255a6ebc2e44cec367ff60ce8e6e6cab (diff)
feat: Just straight up error right away for nvim 0.4.4
Diffstat (limited to 'plugin/telescope.vim')
-rw-r--r--plugin/telescope.vim5
1 files changed, 5 insertions, 0 deletions
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