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.
|
feedback
|
|
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. | |||||||||||||||||
feedback
|
|
| |||||
feedback
|
|
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. | ||||
feedback
|
|
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) | |||
feedback
|
|
Depending on your syntax rules for the current buffer, something like this could work:
This needs a vim 7.3 with +conceal feature | |||
|
feedback
|
|
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. | |||
|
feedback
|
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. | |||
|
feedback
|
|
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. | |||
|
feedback
|
: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