我在.vim/autoload/
当我打开任何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
在两种情况下都未定义!