aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2019-05-25 20:37:58 +1200
committerTom Ryder <tom@sanctum.geek.nz>2019-05-25 20:37:58 +1200
commit1db91b7e90801021f11fb1ff4f5917e6df04d3d2 (patch)
treef5cbeb1640ad265527491ca71ce602d06468dd23
parentMerge branch 'release/v0.4.0' (diff)
parentBump VERSION (diff)
downloadvim-cursorline-current-0.5.0.tar.gz (sig)
vim-cursorline-current-0.5.0.zip
Merge branch 'release/v0.5.0'v0.5.0
* release/v0.5.0: Update date Remove overzealous load guard checks
-rw-r--r--VERSION2
-rw-r--r--doc/cursorline_current.txt2
-rw-r--r--plugin/cursorline_current.vim5
3 files changed, 3 insertions, 6 deletions
diff --git a/VERSION b/VERSION
index 1d0ba9e..8f0916f 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-0.4.0
+0.5.0
diff --git a/doc/cursorline_current.txt b/doc/cursorline_current.txt
index a6a4514..838c272 100644
--- a/doc/cursorline_current.txt
+++ b/doc/cursorline_current.txt
@@ -1,4 +1,4 @@
-*cursorline_current.txt* For Vim version 7.0 Last change: 2018 Aug 4
+*cursorline_current.txt* For Vim version 7.0 Last change: 2019 May 25
DESCRIPTION *cursorline_current*
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 <tom@sanctum.geek.nz>
" 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