aboutsummaryrefslogtreecommitdiff
path: root/plugin/squeeze_repeat_blanks.vim
diff options
context:
space:
mode:
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