我尝试让 autoindent 使用 html 文件在 VIM 中工作,但不幸的是它不起作用。Autoindent 与其他语言完美配合,但它不适用于 html。按照这个问题的建议,我已经尝试将 to 设置filetype
为,但不幸的是它也不起作用。此外,当我选择所有内容并按下它时,它也不会缩进,即使 vim 报告.html
=XX lines indented
我的 .vimrc 文件如下所示:
set autoindent
set cindent
set tabstop=4
set shiftwidth=2
set expandtab
有什么建议么?