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.
|
As others have said, you could use
which will, in combination with
display invisible characters.
so, now, after you use
everything that isn't explicitly shown as something else, is then, really, a plain old whitespace. |
|||||||||||||||||||
|
|
If you set:
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.
Map the function to a shortcut key with:
NB: Define the function in vimrc after the colorscheme has been set. |
||||
|
|
|
|||
|
If by whitespaces you mean the ' ' character, my suggestion would just be a search/replace. As the others have hinted, To explicitly show spaces as some other character, something similar to the below should do the trick:
Then just undo the change to go back again. (to get the █ I pressed this exact key sequence: :%s/ /CTRL-KFB/g) |
|||||||
|
|
Depending on your syntax rules for the current buffer, something like this could work:
This needs a vim 7.3 with +conceal feature |
|||
|
|
|
I use this
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. |
|||
|
To highlight spaces, just search for it: /<space> Notes: To highlight spaces & tabs: A quick way to remove the highlights is to search for anything else: /asdf (just type any short list of random characters) |
|||
|
|
|
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:
Using this, tabs are displayed as The only downside I've found is that this snippet doesn't adjust background color to match the context (like in a comment). |
||||
|
|
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. |
|||
|
|
|
You could use
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. |
|||
|
|
: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