From 39529e71650d88e88dd61c5c237f91b38948e2f7 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Mon, 13 May 2019 00:05:59 +1200 Subject: Switch to two-spacing --- README.md | 2 +- doc/uncap_ex.txt | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 359abda..8d72be5 100644 --- a/README.md +++ b/README.md @@ -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/ 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* -- cgit v1.2.3 From 56d812f438dd275c3708a8d577fcf2573f887fff Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Mon, 13 May 2019 00:06:41 +1200 Subject: Remove unneeded variable scoping --- plugin/uncap_ex.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 " 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=? -- cgit v1.2.3 From f46a5b7009a34272bbbe6e6c936fbd1129ae0795 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Mon, 13 May 2019 00:07:08 +1200 Subject: Bump VERSION --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index 0d91a54..1d0ba9e 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.3.0 +0.4.0 -- cgit v1.2.3