How can you automatically remove trailing whitespace in vim

后端 未结 13 2071
星月不相逢
星月不相逢 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:21

    Here's a way to filter by more than one FileType.

    autocmd FileType c,cpp,python,ruby,java autocmd BufWritePre <buffer> :%s/\s\+$//e
    
    0 讨论(0)
提交回复
热议问题