Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
4  
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
what about expressing the interest in vim support for ordinary space in list(chars) at some vim discussion? – mykhal Jul 13 '12 at 16:03

11 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.

share|improve this answer
12  
-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
6  
(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
2  
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
2  
@ckarbass - :set invlist – ldigas Feb 23 at 1:35
show 2 more comments

:set list to enable.

:set nolist to disable.

share|improve this answer

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.

share|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

: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. :)

share|improve this answer
6  
Turn this back off with :set nolist – Greg K Dec 16 '11 at 10:32
1  
What if you want to see the space character, like in Sublime Text 2 with "show whitespace" on? I found it really helpful. – Olical Dec 11 '12 at 17:13

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)

share|improve this answer
1  
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
just don't use '.' as a replace character... – panny Feb 16 at 15:32

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

share|improve this answer

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.

share|improve this answer
Simplest solution imho. Great paired with a command to clear search (I use nnoremap <leader><space> :noh<cr>) – Lenna Dec 7 '12 at 23:05
I just type :nohl – panny Feb 16 at 15:33

To highlight spaces, just search for it:

/<space>

Notes:

  • <space> means just type the space character.
  • Enable highlighting of search results with :set hlsearch

    To highlight spaces & tabs:

    /[<space><tab>]

    A quick way to remove the highlights is to search for anything else: /asdf

    (just type any short list of random characters)

  • share|improve this answer

    I was frustrated with all of the other answers to this question, because none of them highlight the space character in a useful way. Showing spaces as characters would particularly help for whitespace-formatted languages, where mixing tabs and spaces is harmful.

    My solution is to show tabs and underline multiple spaces. It borrows from mrucci's answer and this tutorial. Because it uses syntax highlighting, it's persistent:

    set list listchars=tab:\|\ 
    highlight Whitespace cterm=underline gui=underline ctermbg=NONE guibg=NONE ctermfg=yellow guifg=yellow
    autocmd ColorScheme * highlight Whitespace gui=underline ctermbg=NONE guibg=NONE ctermfg=yellow guifg=yellow
    match Whitespace /  \+/
    

    Using this, tabs are displayed as | and spaces as _, which makes it very easy to tell when I'm mixing code styles.

    The only downside I've found is that this snippet doesn't adjust background color to match the context (like in a comment).

    share|improve this answer
    :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.

    share|improve this answer

    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.

    share|improve this answer

    Your Answer

     
    discard

    By posting your answer, you agree to the privacy policy and terms of service.