Hello,
Is there a certain Vim plugin or configuration in your .vimrc that any of you use to show whitespace chars?
I ask because I recently started using Vim and was happily coding along until viewing something I submitted to Github. All of a sudden my formatting was a mess. I had been using something like this:autocmd Filetype ruby setlocal ts=2 sts=2 sw=2
in my .vimrc to format tabs to 2 spaces. However, I apparently was missing the set expandtab
as well to convert the tabs to spaces. So even though it looked to me like they were spaces in my editor, after submitting to Github I saw they were actually tab chars so everything was expanded and looked off.
Is there a way to show your whitespace chars so I will know if I have this problem or a way to catch trailing whitespace? Or maybe I shouldnât worry since I have corrected my .vimrc now and I shouldnât have any problems?
I think I just like being able to visually see those there so I know Iâm safe. Sublime Text has an option to show whitespace like this.