2013-02-01 62 views
20

在vundle的主頁,它記錄的,它需要的文件類型在.vimrc裏被關閉:爲什麼vundle需要的文件類型關閉

filetype off     " required! 
set rtp+=~/.vim/bundle/vundle/ 
call vundle#rc() 

我不明白爲什麼!由於在分別安裝相關插件(vim-coffee-script和vim-less)後,最近編輯.coffee和.less文件遇到問題。 我的問題vim-coffee-script

+4

這似乎是[解決方法](https://github.com/gmarik/vundle/issues/176)。我建議你在那邊問問。 – romainl

+1

我已經在@romainl提到的github問題上發佈了一個更新。 –

+1

vundle初始化後,我在vimrc中啓用了它(看上去沒問題)。 – mhitza

回答

25

當vundle的東西結束時,爲什麼不只是filetypeon?

filetype off     " required! 
set rtp+=~/.vim/bundle/vundle/ 
call vundle#rc() 
... 
Vundle 'blabla' 
Vundle 'blabla2' 

filetype plugin indent on 
2

我想解決這個問題的原因。

大多數這個答案是從以下github上線

https://github.com/VundleVim/Vundle.vim/issues/176

這是Vim的功能。
Vim爲運行時路徑中的文件類型插件創建緩存。所以如果vundle更改runtimepath,它必須在調用之前重置。

也有人說這個問題只在7.3.430之前有過。

由於@Maxim金已經回答了,它能夠更好地打開它相關的一切後Vundle

set nocompatible 
filetype off 
set rtp+=~/.vim/bundle/Vundle.vim 
call vundle#begin() 

" Let vundle manage itself: 
Plugin 'VundleVim/Vundle.vim' 
" Syntax checking plugin 
Plugin 'scrooloose/syntastic' 

call vundle#end() 

filetype plugin indent on " Filetype auto-detection 
syntax on " Syntax highlighting 
相關問題