diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2019-05-27 20:36:36 +1200 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2019-05-27 20:36:36 +1200 |
commit | 4a449fe3d65fa1eb6e6ab0caed230673311313e2 (patch) | |
tree | 1d8cfb7814c868ff29314b053c6b976c46b8f7b2 | |
parent | Merge branch 'release/v0.4.0' into develop (diff) | |
download | vim-uncap-ex-develop.tar.gz vim-uncap-ex-develop.zip |
Drop Vim 6.x supportdevelop
-rw-r--r-- | doc/uncap_ex.txt | 2 | ||||
-rw-r--r-- | plugin/uncap_ex.vim | 5 |
2 files changed, 2 insertions, 5 deletions
diff --git a/doc/uncap_ex.txt b/doc/uncap_ex.txt index 36f7f76..ad86003 100644 --- a/doc/uncap_ex.txt +++ b/doc/uncap_ex.txt @@ -1,4 +1,4 @@ -*uncap_ex.txt* For Vim version 6.0 Last change: 2018 June 17 +*uncap_ex.txt* For Vim version 7.0 Last change: 2019 May 27 DESCRIPTION *uncap_ex* diff --git a/plugin/uncap_ex.vim b/plugin/uncap_ex.vim index 679a255..5796d31 100644 --- a/plugin/uncap_ex.vim +++ b/plugin/uncap_ex.vim @@ -7,10 +7,7 @@ " Author: Tom Ryder <tom@sanctum.geek.nz> " License: Same as Vim itself " -if exists('loaded_uncap_ex') || &compatible - finish -endif -if !has('user_commands') || v:version < 600 +if exists('loaded_uncap_ex') || &compatible || v:version < 700 finish endif let loaded_uncap_ex = 1 |