Since I have :set list in Vim, I often see strange ^I characters in the beginning of some C-files. Are these the listchars for tabs or what do they mean?
How can I transfer that back to normal? I just want to see end-of-line characters.
|
|
|||
|
|
|
They're tabs. By default, VIM shows all control characers other than EOL as If you want to see end-of-line chars but not tabs, you can use :set listchars=tab:\ \ ,eol:$ That says, when showing tabs, show a space for the first virtual space it occupies and a space for the subsequent ones; when showing EOLs, use a |
||||
|
|
|
In addition to T.J. Crowder's answer, another option would be to make the tabs more pleasing to the eye:
|
|||||
|