How can you automatically remove trailing whitespace in vim

后端 未结 13 2111
星月不相逢
星月不相逢 2020-12-02 03:39

I am getting \'trailing whitespace\' errors trying to commit some files in git.

I want to remove these trailing whitespace characters automatically right before I sa

13条回答
  •  醉梦人生
    2020-12-02 04:00

    The other approaches here somehow didn't work for me in MacVim when used in the .vimrc file. So here's one that does and highlights trailing spaces:

    set encoding=utf-8
    set listchars=trail:·
    set list
    

提交回复
热议问题