Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当打开名称为“build”的 xml 文件时,我注意到 vim 将其文件类型设置为“ant”。可以禁用此行为吗?我希望我的所有 xml 文件都将文件类型设置为 xml。Kindle帮我解决了这个问题。
Ant 文件类型检测器由下面调用
au BufNewFile,BufRead build.xml setf ant
要覆盖,只需将其更改为 ~/.vimrc 中的 xml
au BufNewFile,BufRead build.xml setf xml
vimdoc
这是在第 107 行:e $VIMRUNTIME/filetype.vim。它将名为“build.xml”的文件设置为 ant 的文件类型。您可以将此文件复制到您的~/.vim文件夹并对其进行编辑以将其注释掉。
:e $VIMRUNTIME/filetype.vim
~/.vim