aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-06-29 15:15:05 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-06-29 15:15:05 +1200
commitddf61eb54415c7cb308a2600b963f65790112149 (patch)
tree138abfd6de4c83c1e4c83321c8b865885f59663a
parentMerge branch 'release/v0.5.0' (diff)
parentBump VERSION (diff)
downloadvim-strip-trailing-whitespace-ddf61eb54415c7cb308a2600b963f65790112149.tar.gz
vim-strip-trailing-whitespace-ddf61eb54415c7cb308a2600b963f65790112149.zip
Merge branch 'release/v0.6.0'v0.6.0
* release/v0.6.0: Bump VERSION Restrict to normal mode
-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 8f0916f..a918a2a 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-0.5.0
+0.6.0
diff --git a/plugin/strip_trailing_whitespace.vim b/plugin/strip_trailing_whitespace.vim
index 8be44ba..b332034 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> <unique>
+nnoremap <silent> <unique>
\ <Plug>StripTrailingWhitespace
\ :<C-U>call <SID>StripTrailingWhitespace()<CR>