From 382f066c7e2cf868c6160fd9a344926ba0c78d7e Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Sat, 4 Aug 2018 20:25:18 +1200 Subject: Require Vim 7 for cursorline_current.vim Most of the autocmd events are Vim 7, and there's a :for there too. --- vim/plugin/cursorline_current.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vim/plugin/cursorline_current.vim b/vim/plugin/cursorline_current.vim index 1ebf5821..a076bd97 100644 --- a/vim/plugin/cursorline_current.vim +++ b/vim/plugin/cursorline_current.vim @@ -9,7 +9,7 @@ if exists('g:loaded_cursorline_current') || &compatible finish endif -if !has('autocmd') || !has('windows') +if !has('autocmd') || !has('windows') || v:version < 700 finish endif let g:loaded_cursorline_current = 1 -- cgit v1.2.3