vim: remove trailing whitespaces

来源:互联网 发布:java多线程通信方式 编辑:程序博客网 时间:2024/04/26 19:19

http://vim.wikia.com/wiki/Remove_unwanted_spaces


Simple commands to remove unwanted whitespace

In a search, \s finds whitespace (a space or a tab), and \+ finds one or more occurrences.

Delete all trailing whitespace (at the end of each line) with:

:%s/\s\+$//

0 0