diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2018-06-17 22:54:15 +1200 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2018-06-17 22:54:15 +1200 |
commit | 2d996145d48d9caaa7833a8fdfa566453b3197dc (patch) | |
tree | 83a13c720b1fed6ce17a091c966547a01b610d0b | |
parent | Rename to README.md (diff) | |
download | vim-uncap-ex-2d996145d48d9caaa7833a8fdfa566453b3197dc.tar.gz vim-uncap-ex-2d996145d48d9caaa7833a8fdfa566453b3197dc.zip |
Backport to Vim 6.0
-rw-r--r-- | doc/uncap_ex.txt | 2 | ||||
-rw-r--r-- | plugin/uncap_ex.vim | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/uncap_ex.txt b/doc/uncap_ex.txt index b406227..0971a2b 100644 --- a/doc/uncap_ex.txt +++ b/doc/uncap_ex.txt @@ -1,4 +1,4 @@ -*uncap_ex.txt* For Vim version 7.0 Last change: 2018 May 31 +*uncap_ex.txt* For Vim version 6.0 Last change: 2018 June 17 DESCRIPTION *uncap_ex* diff --git a/plugin/uncap_ex.vim b/plugin/uncap_ex.vim index 978d4b7..bc2f580 100644 --- a/plugin/uncap_ex.vim +++ b/plugin/uncap_ex.vim @@ -10,7 +10,7 @@ if exists('g:loaded_uncap_ex') || &compatible finish endif -if !has('user_commands') +if !has('user_commands') || v:version < 600 finish endif let g:loaded_uncap_ex = 1 |