Advertisement
Guest User

Untitled

a guest
Nov 30th, 2015
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. function! <SID>StripTrailingWhitespaces()
  2. let l = line(".")
  3. let c = col(".")
  4. %s/\s\+$//e
  5. call cursor(l, c)
  6. endfunction
  7.  
  8. let g:fb_kill_whitespace_blacklist = ["snippets"]
  9. if index(g:fb_kill_whitespace_blacklist, &ft) < 0
  10. au BufWritePre * :call <SID>StripTrailingWhitespaces()
  11. endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement