我正在使用Vim,我想要转到我点o
的新行,并且缩进有点8
个空格。奇怪的是它只发生在一些文件而不是所有文件中。不确定是否有自我诊断的方法?
这是一个例子
config.js
档案
redis: {$ // < hit `o` from here and
$ // << my cursor would be here
}
这是我的vimrc
set number
set noswapfile
set nobackup
set nowb
set smartindent
set tabstop=2
set shiftwidth=2
set expandtab