Remove cleaning trailing white space

This commit is contained in:
2015-03-12 18:54:36 -05:00
parent 6b079d91d9
commit 237a52729b

3
vimrc
View File

@@ -330,7 +330,8 @@ nnoremap <Tab> %
vnoremap <Tab> %
" Strip all trailing whitespace from a file, using ,W
nnoremap <leader>W :%s/\s\+$//<CR>:let @/=''<CR>
" NO, makes toooo many edits to files
"nnoremap <leader>W :%s/\s\+$//<CR>:let @/=''<CR>
" Use The Silver Searcher over grep, iff possible
if executable('ag')