我开始使用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
....
我已经缩短了映射,并用点替换了插件的长列表(...)