aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2019-06-11 11:52:35 +1200
committerTom Ryder <tom@sanctum.geek.nz>2019-06-11 11:52:35 +1200
commit90e60095bcfcfeb60bea60ba7f51bbfac3bf4691 (patch)
treef5f6969eda2bbcc766033ac9a51cbc1bf88ef07c
parentMerge branch 'release/v3.1.0' (diff)
parentBump VERSION (diff)
downloadvim-strip-trailing-whitespace-90e60095bcfcfeb60bea60ba7f51bbfac3bf4691.tar.gz
vim-strip-trailing-whitespace-90e60095bcfcfeb60bea60ba7f51bbfac3bf4691.zip
Merge branch 'release/v3.2.0'v3.2.0
* release/v3.2.0: Allow -bar after command
-rw-r--r--VERSION2
-rw-r--r--plugin/strip_trailing_whitespace.vim2
2 files changed, 2 insertions, 2 deletions
diff --git a/VERSION b/VERSION
index fd2a018..944880f 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-3.1.0
+3.2.0
diff --git a/plugin/strip_trailing_whitespace.vim b/plugin/strip_trailing_whitespace.vim
index a20a8a1..df454fc 100644
--- a/plugin/strip_trailing_whitespace.vim
+++ b/plugin/strip_trailing_whitespace.vim
@@ -15,5 +15,5 @@ endif
let loaded_strip_trailing_whitespace = 1
" User command for the above
-command! -range=% StripTrailingWhitespace
+command! -bar -range=% StripTrailingWhitespace
\ call strip_trailing_whitespace#(<line1>, <line2>)