vim – 为什么vundle需要filetype关闭

前端之家收集整理的这篇文章主要介绍了vim – 为什么vundle需要filetype关闭前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在vundle的主页上,它记录了它需要在.vimrc中关闭filetype:
filetype off                   " required!
 set rtp+=~/.vim/bundle/vundle/
 call vundle#rc()

我不明白为什么由于我们在分开安装相关的插件(vim-coffee-script和vim-less)之后,最近遇到编辑.coffee和.less文件的问题。
我的问题在vim-coffee-script

为什么当vundle的东西结束时你不会只是filetypeon?
filetype off                   " required!
 set rtp+=~/.vim/bundle/vundle/
 call vundle#rc()
 ...
 Vundle 'blabla'
 Vundle 'blabla2'

 filetype plugin indent on
原文链接:https://www.f2er.com/bash/388174.html

猜你在找的Bash相关文章