Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
dotfiles/vim/plugin/highlight_nbsp_and_trailing_whitespace.vim
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
14 lines (11 sloc)
473 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" https://github.com/aalin/dotfiles/blob/master/vimrc | |
" | |
" NOTE: Can only have three of these, using match/2match/3match: | |
" http://stackoverflow.com/a/18167529/6962 | |
augroup highlight_nbsp_and_trailing_ws | |
autocmd! | |
autocmd BufNewFile,BufRead * highlight nbsp ctermbg=Red | |
autocmd BufNewFile,BufRead * match nbsp "[\xc2\xa0]" | |
autocmd BufNewFile,BufRead * highlight trailing_spaces ctermbg=Red | |
autocmd BufNewFile,BufRead * 2match trailing_spaces "\s\+$" | |
augroup END |