surligner et supprimer les espaces en fin de ligne.
match ErrorMsg '\s\+$' (1)
autocmd BufWritePre * :%s/\s\+$//e (2)
1 | If added to .vimrc : show spaces at end of lines |
2 | If added to .vimrc : automatically removes spaces at end of lines when saving the file |