Showing trailing spaces in vim

VimIndentation

Vim Problem Overview


I've set the following options in .vimrc

set listchars=tab:▸\ ,trail:·
set list

And expected to see dots in those places where spaces are used for tabulation in the code (I use spaces, not tabs). However, the result is different:

enter image description here

Could you please recommend how to reach the desired result? Thanks!

Vim Solutions


Solution 1 - Vim

You should check this link. I'm using the match command solution :

:highlight ExtraWhitespace ctermbg=red guibg=red
:match ExtraWhitespace /\s\+$/

This page also provides list based solutions which I haven't personally tried.

Solution 2 - Vim

The vim-better-whitespace plugin incorporates many tips from the Vim Wiki page referenced in @icecrime's answer. It also has some nifty configuration options.

I installed pathogen.vim just to use this plugin and am happy with my life, all things considered.

Solution 3 - Vim

> And expected to see dots in those places where spaces are used for tabulation in the code (I use spaces, not tabs)

Actually this is the other way round, tab option is used to display a character when a tab character is inserted (\t) instead of spaces. And trail is use to show trailing spaces at the end of lines.

You seem to have single empty line with trailing spaces, and dots are correctly displayed.

If you are only using spaces tab option is not used or displayed.

Solution 4 - Vim

To highlight trailing whitespace characters:

:set hlsearch, then

/\s\+$

Solution 5 - Vim

A more programmatic way to do this is via function matchadd():

hi TrailingWhitespace ctermbg=red guibg=red

call matchadd("TrailingWhitespace", '\v\s+$')

The 2nd paramter to matchadd() is the pattern we want to match. Here, we use single quote to avoid having to escape speical characters like backslashes etc, see also literal-string.

Solution 6 - Vim

Based on the link posted by icecrime, I find this works quite well...

" Be clever about highlighting trailing whitespace (don't highlight it if we are
" in 'insert' mode and the cursor is at the end of the line). Also (regardless
" of 'insert' mode), highlight any tabs that immediately follow space(s).
" EOLWS and EOLWSInsert are colour group names; the latter being toned-down to
" make editing in 'insert' mode easier on the eye
autocmd InsertEnter * match EOLWS // | match EOLWSInsert /\s\+\%#\@<!$\| \+\ze\t/
autocmd InsertLeave * match EOLWSInsert // | match EOLWS /\s\+$\| \+\ze\t/
autocmd WinEnter,BufWinEnter,WinNew * match EOLWS /\s\+$\| \+\ze\t/

" Disable syntax-specific trailing space error handling because it conflicts
" with the above, mostly because the syntax highlighting doesn't take account of
" whether 'insert' mode is active or not. There are other '*_no_trail_space_error'
" settings - refer to syntax files in $VIMRUNTIME/syntax/
let c_no_trail_space_error = 1
let java_no_trail_space_error = 1

Also, make sure the 'Error' highlight group is NOT defined as inverse video - if it is, it conflicts on strange ways with the above

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionlyubaView Question on Stackoverflow
Solution 1 - VimicecrimeView Answer on Stackoverflow
Solution 2 - VimjtpereydaView Answer on Stackoverflow
Solution 3 - VimXavier T.View Answer on Stackoverflow
Solution 4 - VimSkyView Answer on Stackoverflow
Solution 5 - VimjdhaoView Answer on Stackoverflow
Solution 6 - VimRichView Answer on Stackoverflow