spadin
10/29/2013 - 2:48 PM

Simple function for striping trailing whitespace in Vim.

Simple function for striping trailing whitespace in Vim.

fun! <SID>StripTrailingWhitespaces()
  let l = line(".")
  let c = col(".")
  %s/\s\+$//e
  call cursor(l, c)
endfun

autocmd BufWritePre * :call <SID>StripTrailingWhitespaces()
map <Leader>cw :call <SID>StripTrailingWhitespaces()<CR>