I can't find a way to make Vim show all white spaces as a character. All I found was about tabs, trailing spaces etc.

link|improve this question
I’m also trying to solve exactly this problem. Please, if you come across this, refrain from making yet another response involving :set list. That doesn’t answer our question. (To other comers: mrucci’s response below is helpful, though not quite a real solution.) – elliottcable Jun 6 '11 at 6:44
Maybe it is now... – mrucci Jun 6 '11 at 16:06
feedback

9 Answers

As others have said, you could use

:set list

which will, in combination with

:set listchars=...

display invisible characters.
Now, there isn't an explicit option which you can use to show whitespace, but in listchars, you could set a character to show for everything BUT whitespace. For example, mine looks like this

:set listchars=eol:$,tab:>-,trail:~,extends:>,precedes:<

so, now, after you use

:set list

everything that isn't explicitly shown as something else, is then, really, a plain old whitespace.

link|improve this answer
4  
-1. “Please consider adding a comment if you think this post can be improved.” Fine: You didn’t remotely answer his question; you told him exactly what anybody researching this request would already have found by the quickest Google. – elliottcable Jun 6 '11 at 6:41
1  
(If he capitalizes “ALL” in the title, it’s a damn good bet that he knows how to show some of them, and wants help figuring out how to show the rest.) – elliottcable Jun 6 '11 at 6:42
1  
I've googled this answer several times now, because :set list won't stick in my brain. Is there some reason that I'm missing that the command is called list? – Eric Wilson Jul 5 '11 at 10:36
“everything that isn't explicitly shown as something else”? Try out unicode spaces from range U+2000..U+200A. If fixed-width font supports them they will be shown just as normal 0x20 space. – ZyX Nov 26 '11 at 19:03
@ZyX - I was't taking the whole of Unicode, but the rather common set of characters in use. If you're unsatisfied with the answer, feel free to suggest improvements. – ldigas Nov 26 '11 at 19:11
feedback

:set list to enable.

:set nolist to disable.

link|improve this answer
feedback

:set list will show all whitespaces as a character. Everything but a space will look different than its normal state, which means that if you still see a plain old space, it's really a plain old space. :)

link|improve this answer
4  
Turn this back off with :set nolist – Greg K Dec 16 '11 at 10:32
feedback

If you set:

:highlight Search cterm=underline gui=underline ctermbg=none guibg=none ctermfg=none guifg=none

and then perform a search for a space, every space character will be shown as an underline character.

You can use this command in a handy function that toggles "underscoring" of spaces.

set hls
let g:HLSpace = 1
let g:HLColorScheme = g:colors_name
function ToggleSpaceUnderscoring()
    if g:HLSpace
        highlight Search cterm=underline gui=underline ctermbg=none guibg=none ctermfg=none guifg=none
        let @/ = " "
    else
        highlight clear
        silent colorscheme "".g:HLColorScheme
        let @/ = ""
    endif
    let g:HLSpace = !g:HLSpace
endfunction

Map the function to a shortcut key with:

nmap <silent> <F3> <Esc>:call ToggleSpaceUnderscoring()<CR>

NB: Define the function in vimrc after the colorscheme has been set.

link|improve this answer
Well, it’s a bit of a hack, but it’s closer than anything else so far. Bounty awarded! :D – elliottcable Jun 12 '11 at 11:28
feedback

If by whitespaces you mean the ' ' character, my suggestion would just be a search/replace. As the others have hinted, set list changes non printing characters to a visible character that's configured in listchars.

To explicitly show spaces as some other character, something similar to the below should do the trick:

:%s/ /█/g

Then just undo the change to go back again.

(to get the █ I pressed this exact key sequence: :%s/ /CTRL-KFB/g)

link|improve this answer
I like this better than other answers, this looks like inverse of :set list to me, changing visible character ('space') to a _non priting_(??) one. I wonder if one can use this inside match e.g. :match MyBlackBlockChar "appropriate_regex that should do the trick, shouldn't it? – Sudhi Sep 11 '11 at 1:53
feedback

Depending on your syntax rules for the current buffer, something like this could work:

:syn match WhiteSpace / / conceal cchar=Æ
:setl conceallevel=2 concealcursor=nv

This needs a vim 7.3 with +conceal feature

link|improve this answer
feedback

I use this

/\s
:set hlsearch

to highlight white spaces. It searches for all white spaces, and then enables the highlight to make them pop out. However, it does not print a special character.

link|improve this answer
feedback
:match CursorLine /\s\+/

avoids the "you have to search for spaces to get them to show up" bit but afaict can't be configured to do non-hilighting things to the spaces. CursorLine can be any hilighting group and in the default theme it's a plain underline.

link|improve this answer
feedback

You could use

:set list

to really see the structure of a line. You will see tabs and newlines explicitly. When you see a blank, it's really a blank.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown