organized config files and suggested new naming convention (see settings/README).

This commit is contained in:
Kyle West
2012-01-25 13:47:44 -05:00
parent 482006d8b5
commit 4c4938f769
8 changed files with 7 additions and 2 deletions

View File

@@ -0,0 +1,15 @@
" via: http://rails-bestpractices.com/posts/60-remove-trailing-whitespace
" Strip trailing whitespace
function! <SID>StripTrailingWhitespaces()
" Preparation: save last search, and cursor position.
let _s=@/
let l = line(".")
let c = col(".")
" Do the business:
%s/\s\+$//e
" Clean up: restore previous search history, and cursor position
let @/=_s
call cursor(l, c)
endfunction
command! StripTrailingWhitespaces call <SID>StripTrailingWhitespaces()
nmap ,w :StripTrailingWhitespaces<CR>