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. |
||
|
|
|
|
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. |
||
|
|
|
|
Just a trick. If you set:
and then perform a search for a space then every space character will be shown as an underline character. |
||
|
|
|
|
|
||
|
|
|
|
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) |
||
|
|
