本文介绍了Vundle - E492:不是编辑器命令:PluginInstall的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我无法让 Vundle for Vim 工作(我使用的是 Ubuntu 14.04).这里是我的 .vimrc 的相关部分

I am having trouble getting Vundle for Vim to work (I am on Ubuntu 14.04). Here the relevant part from my .vimrc

  4 " For Vundle$
  5 filetype off$
  6 set rtp+=~/.vim/bundle/vundle$
  7 call vundle#rc()$
  8 $
  9 " Let Vundle manage Vandle$
 10 Plugin 'gmarik/vundle'$
 11 $
 12 Plugin 'honza/vim-snippets'$
 13 Plugin 'bling/vim-airline'$
 14 Plugin 'tpope/vim-fugitive'$
 15 Plugin 'tpope/vim-rails.git'$
 16 Plugin 'tomtom/tcomment_vim'$
 17 Plugin 'altercation/vim-colors-solarized'$
 18 Plugin 'tomasr/molokai'$
 19 Plugin 'vim-ruby/vim-ruby'$
 20 Plugin 'tpope/vim-surround'$
 21 Plugin 'jiangmiao/auto-pairs'$
 22 Plugin 'ervandew/supertab'$
 23 Plugin 'kchmck/vim-coffee-script'$
 24 Plugin 'kien/ctrlp.vim'$
 25 Plugin 'skalnik/vim-vroom'$
 26 Plugin 'tpope/vim-dispatch'$
 27 $
 28 call vundle#end()$
 29 $
 30 filetype plugin indent on$

为什么它会抛出错误 E492: Not an editor command: PluginInstall ?

Why does it throw an error E492: Not an editor command: PluginInstall ?

推荐答案

原来 call vundle#rc() 似乎已被弃用.使用 call vundle#begin() 为我解决了这个问题.

Turns out that call vundle#rc() seems to be deprecated. Using call vundle#begin() fixed the issue for me.

这篇关于Vundle - E492:不是编辑器命令:PluginInstall的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

05-19 01:38