Advertisement
Guest User

Untitled

a guest
Jul 26th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. " remove non breaking spaces
  2. highlight NBSP ctermbg=red guibg=red
  3. match NBSP /\%u00a0/
  4. autocmd BufWinEnter * match NBSP /\%u00a0/
  5. autocmd InsertEnter * match NBSP /\%u00a0/
  6. autocmd InsertLeave * match NBSP /\%u00a0/
  7. autocmd BufWinLeave * call clearmatches()
  8. autocmd BufWritePre * %s/\%u00a0/\ /ge
  9.  
  10. " highlight trailing space
  11. highlight ExtraWhitespace ctermbg=red guibg=red
  12. match ExtraWhitespace /\s\+$/
  13. autocmd BufWinEnter * match ExtraWhitespace /\s\+$/
  14. autocmd InsertEnter * match ExtraWhitespace /\s\+\%#\@<!$/
  15. autocmd InsertLeave * match ExtraWhitespace /\s\+$/
  16. autocmd BufWinLeave * call clearmatches()
  17. autocmd BufWritePre * %s/\s\+$//e
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement