aboutsummaryrefslogtreecommitdiff
path: root/vim/plugin/strip_trailing_whitespace.vim
diff options
context:
space:
mode:
Diffstat (limited to 'vim/plugin/strip_trailing_whitespace.vim')
-rw-r--r--vim/plugin/strip_trailing_whitespace.vim2
1 files changed, 0 insertions, 2 deletions
diff --git a/vim/plugin/strip_trailing_whitespace.vim b/vim/plugin/strip_trailing_whitespace.vim
index 6a83eb53..36e1d2ad 100644
--- a/vim/plugin/strip_trailing_whitespace.vim
+++ b/vim/plugin/strip_trailing_whitespace.vim
@@ -1,5 +1,4 @@
" User-defined key mapping to strip trailing whitespace in the whole document
-" Suggested mapping: <leader>\x
if has('eval')
" Define function for stripping whitespace
@@ -53,7 +52,6 @@ if has('eval')
endfunction
" Create mapping proxy to the function just defined
- " Suggested mapping: <leader>x
noremap <Plug>StripTrailingWhitespace
\ :<C-U>call <SID>StripTrailingWhitespace()<CR>
endif