aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-06-29 15:11:27 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-06-29 15:11:27 +1200
commit499a8caeb98d7f1f5c2ec417013279ed5feea16a (patch)
tree723c61ab5721a3ec2663424087cbcf0b7139e0fc
parentMerge branch 'release/v0.4.0' (diff)
parentBump VERSION (diff)
downloadvim-strip-trailing-whitespace-499a8caeb98d7f1f5c2ec417013279ed5feea16a.tar.gz
vim-strip-trailing-whitespace-499a8caeb98d7f1f5c2ec417013279ed5feea16a.zip
Merge branch 'release/v0.5.0'v0.5.0
* release/v0.5.0: Bump VERSION Add <unique> attribute
-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 1d0ba9e..8f0916f 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-0.4.0
+0.5.0
diff --git a/plugin/strip_trailing_whitespace.vim b/plugin/strip_trailing_whitespace.vim
index 72a43a8..8be44ba 100644
--- a/plugin/strip_trailing_whitespace.vim
+++ b/plugin/strip_trailing_whitespace.vim
@@ -90,6 +90,6 @@ function! s:StripTrailingWhitespace()
endfunction
" Create mapping proxy to the function just defined
-noremap <silent>
+noremap <silent> <unique>
\ <Plug>StripTrailingWhitespace
\ :<C-U>call <SID>StripTrailingWhitespace()<CR>