:PluginInstall 不是编辑器命令?

windows上 用vundle 来安装插件,已经安装配置了 vundle, 执行 :PluginInstall 时 提示 不是编辑器命令

set nocompatible              " be iMproved, required
filetype off                  " required

" set the runtime path to include Vundle and initialize
set rtp+=~/vimfiles/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 'gmarik/Vundle.vim'

" The following are examples of different formats supported.
" Keep Plugin commands between vundle#begin/end.
" plugin on GitHub repo

" All of your Plugins must be added before the following line

Plugin 'git://github.com/scrooloose/nerdtree.git'
Plugin 'git://github.com/scrooloose/nerdtree.git'

call vundle#end()            " required
filetype plugin indent on    " required
阅读 28.5k
2 个回答

set rtp+=~/vimfiles/bundle/Vundle.vim
估计是这个目录不对。放到.vim(他文档里说的)下试试。

我也是一样的问题,我把路径都设成绝对路径就好了

set rtp+=D://Programs/Vim/vimfiles/bundle/Vundle.vim/
call vundle#begin('D://Programs/Vim/vimfiles/')
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进