From b805ba8dfb90c684888c4abd279dbd14953f930c Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Sat, 25 May 2019 20:32:52 +1200 Subject: Remove overzealous load guard checks --- plugin/cursorline_current.vim | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/plugin/cursorline_current.vim b/plugin/cursorline_current.vim index b0c38b4..9cdb25d 100644 --- a/plugin/cursorline_current.vim +++ b/plugin/cursorline_current.vim @@ -6,10 +6,7 @@ " Author: Tom Ryder " License: Same as Vim itself " -if exists('loaded_cursorline_current') || &compatible - finish -endif -if !has('autocmd') || !has('windows') || v:version < 700 +if exists('loaded_cursorline_current') || &compatible || v:version < 700 finish endif let loaded_cursorline_current = 1 -- cgit v1.2.3