aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md2
-rw-r--r--doc/squeeze_repeat_blanks.txt8
-rw-r--r--plugin/squeeze_repeat_blanks.vim2
3 files changed, 6 insertions, 6 deletions
diff --git a/README.md b/README.md
index 6796209..13e8f06 100644
--- a/README.md
+++ b/README.md
@@ -8,7 +8,7 @@ What constitutes a "blank" line is configurable per-buffer.
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/squeeze_repeat_blanks.txt b/doc/squeeze_repeat_blanks.txt
index ab2cca5..0eb4894 100644
--- a/doc/squeeze_repeat_blanks.txt
+++ b/doc/squeeze_repeat_blanks.txt
@@ -8,22 +8,22 @@ What constitutes a "blank" line is configurable per-buffer.
REQUIREMENTS *squeeze_repeat_blanks-requirements*
-This plugin is only available if 'compatible' is not set. It also requires the
-|+user_commands| feature.
+This plugin is only available if 'compatible' is not set. It also requires
+the |+user_commands| feature.
COMMANDS *squeeze_repeat_blanks-commands*
*:SqueezeRepeatBlanks*
Find repeated blank lines matching the |b:squeeze_repeat_blanks_blank| pattern
and delete all but the last line of every such group, reporting the number of
-lines removed. Accepts a range and defaults to the whole buffer.
+lines removed. Accepts a range and defaults to the whole buffer.
OPTIONS *squeeze_repeat_blanks-options*
*b:sequeeze_repeat_blanks_blank*
The |buffer-variable| `b:squeeze_repeat_blanks_blank` can be set to a pattern
that constitutes a blank line, for example including whitespace, or a comment
-or quoting leader. This might be desirable for some filetypes. The
+or quoting leader. This might be desirable for some filetypes. The
`:SqueezeRepeatBlanks` command defaults to using `^$`, for a true blank line.
AUTHOR *squeeze_repeat_blanks-author*
diff --git a/plugin/squeeze_repeat_blanks.vim b/plugin/squeeze_repeat_blanks.vim
index dcf8b0a..e0391c3 100644
--- a/plugin/squeeze_repeat_blanks.vim
+++ b/plugin/squeeze_repeat_blanks.vim
@@ -1,6 +1,6 @@
"
" 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>