从sublime迁移到vim,html缩进问题

时间:2016-02-18 16:03:58

标签: html vim

所以我最近从sublime切换到vim,我已经非常喜欢VIM工作流程了。但是,我在使用我的VIM html缩进类似于sublime的html缩进时遇到了一些麻烦。

基本上我旧代码中的每个标签都是“双标签”,而且在很多地方,sublime有换行符,vim没有。这是我的vimrc indenation设置:

set expandtab       " use spaces instead of tabs
set autoindent      " autoindent based on line above, works most of the time
set smartindent     " smarter indent for C-like languages
set shiftwidth=4    " when reading, tabs are 4 spaces
set softtabstop=4   " in insert mode, tabs are 4 spaces

在崇高中,我使用Tab Size:4,我相信它应该是等价的。 有什么想法吗?

2 个答案:

答案 0 :(得分:0)

将此行添加到.vimrc文件中:

set tabstop=4

答案 1 :(得分:0)

将这些行添加到您的.vimrc文件中:

day