aboutsummaryrefslogtreecommitdiff
path: root/plugin/squeeze_repeat_blanks.vim
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2019-05-12 23:32:44 +1200
committerTom Ryder <tom@sanctum.geek.nz>2019-05-12 23:32:44 +1200
commit6cd99a9510897e87fba76721b3c9d148c51a1649 (patch)
tree3c5a05cc7416070f7896f99535f31a77041e9768 /plugin/squeeze_repeat_blanks.vim
parentMerge branch 'hotfix/v0.1.1' (diff)
parentBump VERSION (diff)
downloadvim-squeeze-repeat-blanks-6cd99a9510897e87fba76721b3c9d148c51a1649.tar.gz
vim-squeeze-repeat-blanks-6cd99a9510897e87fba76721b3c9d148c51a1649.zip
Merge branch 'release/v0.2.0'v0.2.0
* release/v0.2.0: Remove unneeded variable scoping Switch to two-spacing
Diffstat (limited to 'plugin/squeeze_repeat_blanks.vim')
-rw-r--r--plugin/squeeze_repeat_blanks.vim6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugin/squeeze_repeat_blanks.vim b/plugin/squeeze_repeat_blanks.vim
index dcf8b0a..fb85812 100644
--- a/plugin/squeeze_repeat_blanks.vim
+++ b/plugin/squeeze_repeat_blanks.vim
@@ -1,18 +1,18 @@
"
" squeeze_repeat_blanks.vim: User command to reduce all groups of blank lines
-" to the last line in that group, deleting the others. Good for filtering
+" to the last line in that group, deleting the others. Good for filtering
" plaintext mail that's been extracted from HTML.
"
" Author: Tom Ryder <tom@sanctum.geek.nz>
" License: Same as Vim itself
"
-if exists('g:loaded_squeeze_repeat_blanks') || &compatible
+if exists('loaded_squeeze_repeat_blanks') || &compatible
finish
endif
if !has('user_commands') || v:version < 700
finish
endif
-let g:loaded_squeeze_repeat_blanks = 1
+let loaded_squeeze_repeat_blanks = 1
" User command for the above
command! -range=% SqueezeRepeatBlanks