http://vim.wikia.com/wiki/VimTip396
precondition: set hlsearch
" Show all tabs:
/\t
" Show trailing whitespace:
/\s\+$
" Show trailing whitespace only after some text (ignores blank lines):
/\S\zs\s\+$
" Show spaces before a tab:
/ \+\ze\t
2023-12-03 19:52:22
http://vim.wikia.com/wiki/VimTip396
precondition: set hlsearch
" Show all tabs:
/\t
" Show trailing whitespace:
/\s\+$
" Show trailing whitespace only after some text (ignores blank lines):
/\S\zs\s\+$
" Show spaces before a tab:
/ \+\ze\t