Skip to content

Instantly share code, notes, and snippets.

@AndrewRadev
Created July 29, 2011 09:10
Show Gist options
  • Save AndrewRadev/1113491 to your computer and use it in GitHub Desktop.
Save AndrewRadev/1113491 to your computer and use it in GitHub Desktop.
Highlight trailing whitespace only in normal mode
autocmd! InsertLeave,WinEnter * call s:Highlight()
autocmd! InsertEnter * call s:Unhighlight()
hi link HighlightSpace Search
function! s:Highlight()
match HighlightSpace /\s\+$/
endfunction
function! s:Unhighlight()
match none
endfunction
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment