aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2019-05-24 16:37:08 +1200
committerTom Ryder <tom@sanctum.geek.nz>2019-05-24 16:37:08 +1200
commitb088c58f809ae31dc00b244ea34a9ba05933579d (patch)
tree18defd0f8b74bb3e4bf86118065bcda8875cfa14
parentMerge branch 'release/v3.0.0' (diff)
parentBump VERSION (diff)
downloadvim-put-blank-lines-b088c58f809ae31dc00b244ea34a9ba05933579d.tar.gz
vim-put-blank-lines-b088c58f809ae31dc00b244ea34a9ba05933579d.zip
Merge branch 'release/v3.1.0'v3.1.0
* release/v3.1.0: Remove unneeded variable scoping Switch to two-spacing
-rw-r--r--README.md2
-rw-r--r--VERSION2
-rw-r--r--doc/put_blank_lines.txt4
-rw-r--r--plugin/put_blank_lines.vim4
4 files changed, 6 insertions, 6 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/VERSION b/VERSION
index 4a36342..fd2a018 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-3.0.0
+3.1.0
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*
*<Plug>(PutBlankLinesAbove)*
The `<Plug>(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.
*<Plug>(PutBlankLinesBelow)*
The `<Plug>(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*
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 <tom@sanctum.geek.nz>
" 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 <expr> <silent> <unique>