.vimrc配置
syntax enable
syntax on
set relativenumber
set autoindent
set tabstop=4
set expandtab " 使用4个空格代替tab键
如何替换已经打开的文件中的tab呢
对于已保存的文件,可以使用下面的方法进行空格和TAB的替换:
TAB替换为空格:
:set ts=4
:set expandtab
:%retab!
空格替换为TAB:
:set ts=4
:set noexpandtab
:%retab!
加!
是用于处理非空白字符之后的TAB,即所有的TAB,若不加!,则只处理行首的TAB。