vundle与ftplugin无法正常工作

时间:2016-04-11 21:53:48

标签: c++ vim vim-plugin vundle ftplugin

我开始使用ftplugin。这基本上是有效的,除了捆绑。如果我使用没有特定文件类型的文件启动gvim,我可以使用我的所有插件(:VundleInstall列出.vimrc中指定的所有插件)

但是,当我打开一个.cpp类型的文件并因此使用 .vim / after / ftplugin / cpp.vim 时,唯一的活动(显示为:VundleInstall)插件是指定的插件在cpp.vim文件中。

我的错误是什么?

这是我的vimrc:

FileDetail

这是我的cpp.vim文件:

syntax on
set nocompatible
set t_Co=256

filetype plugin indent on

" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" alternatively, pass a path where Vundle should install plugins
"call vundle#begin('~/some/path/here')

" let Vundle manage Vundle, required
Plugin 'VundleVim/Vundle.vim'

" syntax check during writing
Plugin 'scrooloose/syntastic'

....

"swap two panes in an open session
Plugin 'wesQ3/vim-windowswap'

" All of your Plugins must be added before the following line
call vundle#end()            " required

....

我已经缩短了映射,并用点替换了插件的长列表(...)

1 个答案:

答案 0 :(得分:1)

如果有人遇到同样的问题:

在此thread中,您可以找到解决方案。