Created
March 25, 2015 09:58
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
VIM中空格和TAB的替换 | |
在.vimrc中添加以下代码后,重启vim即可实现按TAB产生4个空格: | |
set ts=4 (注:ts是tabstop的缩写,设TAB宽4个空格) | |
set expandtab | |
对于已保存的文件,可以使用下面的方法进行空格和TAB的替换: | |
TAB替换为空格: | |
:set ts=4 | |
:set expandtab | |
:%retab! | |
空格替换为TAB: | |
:set ts=4 | |
:set noexpandtab | |
:%retab! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment