diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2019-05-13 00:07:15 +1200 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2019-05-13 00:07:15 +1200 |
commit | f077f39fe59f5c605078a1269a3d3a4b84ddcb2b (patch) | |
tree | a1264adc5e2e6c6e77303ce2d81bb42298045b90 | |
parent | Merge branch 'release/v0.3.0' (diff) | |
parent | Bump VERSION (diff) | |
download | vim-uncap-ex-f077f39fe59f5c605078a1269a3d3a4b84ddcb2b.tar.gz vim-uncap-ex-f077f39fe59f5c605078a1269a3d3a4b84ddcb2b.zip |
* release/v0.4.0:
Remove unneeded variable scoping
Switch to two-spacing
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | VERSION | 2 | ||||
-rw-r--r-- | doc/uncap_ex.txt | 4 | ||||
-rw-r--r-- | plugin/uncap_ex.vim | 4 |
4 files changed, 6 insertions, 6 deletions
@@ -8,7 +8,7 @@ Shift key quite soon enough after pressing the colon key. License ------- -Copyright (c) [Tom Ryder][1]. Distributed under the same terms as Vim itself. +Copyright (c) [Tom Ryder][1]. Distributed under the same terms as Vim itself. See `:help license`. [1]: https://sanctum.geek.nz/ @@ -1 +1 @@ -0.3.0 +0.4.0 diff --git a/doc/uncap_ex.txt b/doc/uncap_ex.txt index 0971a2b..36f7f76 100644 --- a/doc/uncap_ex.txt +++ b/doc/uncap_ex.txt @@ -8,8 +8,8 @@ Shift key quite soon enough after pressing the colon key. REQUIREMENTS *uncap_ex-requirements* -This plugin is only available if 'compatible' is not set. It also requires the -|+user_cmds| feature. +This plugin is only available if 'compatible' is not set. It also requires +the |+user_cmds| feature. AUTHOR *uncap_ex-author* diff --git a/plugin/uncap_ex.vim b/plugin/uncap_ex.vim index c1ee828..679a255 100644 --- a/plugin/uncap_ex.vim +++ b/plugin/uncap_ex.vim @@ -7,13 +7,13 @@ " Author: Tom Ryder <tom@sanctum.geek.nz> " License: Same as Vim itself " -if exists('g:loaded_uncap_ex') || &compatible +if exists('loaded_uncap_ex') || &compatible finish endif if !has('user_commands') || v:version < 600 finish endif -let g:loaded_uncap_ex = 1 +let loaded_uncap_ex = 1 " Define commands command -bang -bar -complete=file -nargs=? |