From 20809ea4fd126e20011c6480371e729f8ca17785 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Fri, 24 May 2019 16:36:24 +1200 Subject: Switch to two-spacing --- README.md | 2 +- doc/put_blank_lines.txt | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1533438..19da179 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ this in your `.vimrc`: License ------- -Copyright (c) [Tom Ryder][3]. Distributed under the same terms as Vim itself. +Copyright (c) [Tom Ryder][3]. Distributed under the same terms as Vim itself. See `:help license`. [1]: https://www.vim.org/scripts/script.php?script_id=1590 diff --git a/doc/put_blank_lines.txt b/doc/put_blank_lines.txt index 38c6b7a..87076c4 100644 --- a/doc/put_blank_lines.txt +++ b/doc/put_blank_lines.txt @@ -26,11 +26,11 @@ MAPPINGS *put_blank_lines-mappings* *(PutBlankLinesAbove)* The `(PutBlankLinesAbove)` target inserts a blank line above the current -line. Mappings through it can be prefixed with an optional count. +line. Mappings through it can be prefixed with an optional count. *(PutBlankLinesBelow)* The `(PutBlankLinesBelow)` target inserts a blank line below the current -line. Mappings through it can be prefixed with an optional count. +line. Mappings through it can be prefixed with an optional count. AUTHOR *put_blank_lines-author* -- cgit v1.2.3 From d592ad0dd21f33ebcfa0a4287f7ff7edd9ab90ef Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Fri, 24 May 2019 16:36:45 +1200 Subject: Remove unneeded variable scoping --- plugin/put_blank_lines.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin/put_blank_lines.vim b/plugin/put_blank_lines.vim index 922b4e4..f779f46 100644 --- a/plugin/put_blank_lines.vim +++ b/plugin/put_blank_lines.vim @@ -5,13 +5,13 @@ " Author: Tom Ryder " License: Same as Vim itself " -if exists('g:loaded_put_blank_lines') || &compatible +if exists('loaded_put_blank_lines') || &compatible finish endif if v:version < 700 finish endif -let g:loaded_put_blank_lines = 1 +let loaded_put_blank_lines = 1 " Set up mappings to autoloaded functions nnoremap -- cgit v1.2.3 From 944e9e005a072e019137d9ac0e358f4d7b58208d Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Fri, 24 May 2019 16:37:02 +1200 Subject: Bump VERSION --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index 4a36342..fd2a018 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -3.0.0 +3.1.0 -- cgit v1.2.3