本文介绍了为什么 vundle 需要关闭文件类型的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在 vundle 的主页上,它记录了它需要在 .vimrc 中关闭文件类型:
On vundle's homepage, it documented that it requires filetype to be off in .vimrc:
filetype off " required!
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
我不明白为什么.由于我最近在为它们单独安装了相关插件(vim-coffee-script 和 vim-less)之后在编辑 .coffee 和 .less 文件时遇到了问题.我在 vim-coffee-script
I don't understand why. Since I am encountering problems with editing .coffee and .less files recently after separately-installed related plugins for them (vim-coffee-script and vim-less).My issue on vim-coffee-script
推荐答案
您可以在最后一个 Vundle 命令之后设置 filetype on
:
You can set filetype on
after the last Vundle command:
filetype off " required!
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
...
Vundle 'blabla'
Vundle 'blabla2'
filetype plugin indent on " re-enable filetype
这篇关于为什么 vundle 需要关闭文件类型的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!