Source: http://www.2cto.com/ OS /201110/107286.html
Some students prefer to use spaces for indentation. Therefore, manyCodeThe row capital contains consecutive and repeated spaces, some of which are four or even eight. Uncle can't bear it.
Vim has some options such as retab that can be used to indent and convert all the files processed by VIM. However, it is so brutal that we do not want Vim to automatically process all the files.
Therefore, it is more appropriate to manually perform the conversion. You can use the following command in VIM:
View plain
: % S // \ t/g
Explanation:
The colon at the beginning is mandatory for executing commands in Vim. Just like '/' is the start of the search command.
% S indicates replacement.
The first '/' indicates the content to be replaced (four consecutive spaces)
The second '/' indicates the content to be replaced with (here '\ T' is the tab)
The third '/' indicates the replacement option ('/G' indicates full-text replacement)
Above.
From: Eric's little hut