为什么vim-plug为xml文件设置了formatoptions?

时间:2016-11-23 20:32:54

标签: vim

我在.vim/autoload/

中安装了vim-plug

当我打开任何XML文件并检查:verbose set fo?格式选项时,它会说:

  

formatoptions = TCQ

   Last set from /usr/share/vim/vimrc

~/.vimrc中启用vim-plug(没有插件)后:

call plug#begin('~/.vim/plugged')
call plug#end()

我得到了这个输出:

  

formatoptions = croql

   Last set from /usr/share/vim/vim73/ftplugin/xml.vim

为什么formatoptions与以前不同?

/usr/share/vim/vim73/ftplugin/xml.vim包含以下代码:

setlocal formatoptions-=t
if !exists("g:ft_xml_autocomment") || (g:ft_xml_autocomment == 1)
    setlocal formatoptions+=croql
endif

g:ft_xml_autocomment在两种情况下都未定义!

0 个答案:

没有答案