Vundle.vim: Error processing: 'plugin_name'

Created on 24 Feb 2013  路  6Comments  路  Source: VundleVim/Vundle.vim

I've just installed Vundle for the very first time. Before that I've used pathogen and everything worked fine. Now I've configured my .vimrc file and when I run vim and type :BundleInstall, some of the plugins couldn't be processed. I get the following message: Error processing: 'plugin_name'. Vundle couldn't process these plugins: autotag, ctags, taglist and gdbmgr.

My setup is:

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

Bundle 'vundle'
... -- other plugins

Most helpful comment

Also this could happen if your ~/.vim directory is not writable!
Got this error when provisioning my vagrant machine.

All 6 comments

Can't really tell what's wrong from what you've given. Could be a simple misspelling.
Please post your full vundle list in between backticks (```). Like so:

Bundle 'Lokaltog/vim-easymotion'
Bundle 'Raimondi/delimitMate'
Bundle 'Valloric/YouCompleteMe'
Bundle 'aaronbieber/quicktask'
Bundle 'altercation/vim-colors-solarized'
Bundle 'dan-bolsun/vim-tmux'
Bundle 'imaginationac/html.vim'
Bundle 'imaginationac/jade.vim'
Bundle 'kchmck/vim-coffee-script'
Bundle 'kien/ctrlp.vim'
Bundle 'mattn/zencoding-vim'
Bundle 'mihaifm/vimpanel'
Bundle 'msanders/snipmate.vim'
Bundle 'scrooloose/syntastic'
Bundle 'sjl/badwolf'
Bundle 'sjl/clam.vim'
Bundle 'sjl/gundo.vim'
Bundle 'slim-template/vim-slim'
Bundle 'tomtom/tcomment_vim'
Bundle 'tpope/vim-fugitive'
Bundle 'tpope/vim-surround'
Bundle 'vim-json-bundle'
Bundle 'wavded/vim-stylus'
Bundle 'vundle'
Bundle 'autotag'
Bundle 'ctrlp.vim'
Bundle 'vim-valloric-colorscheme'
Bundle 'YouCompleteMe'
Bundle 'ctags'
Bundle 'taglist'
Bundle 'gdbmgr'

Yep, thought so.

  • autotag should be AutoTag
  • ctags should be ctags.vim
  • taglist should be taglist.vim

I don't know to which plugin gdbmgr refers.

Regardless, the portion of text you specify after the word Bundle refers to either the username/reponame of the GitHub repo for a plugin, or the reponame of a plugin under the vim-scripts user (which you're using). Either way, the name has to be correct.

Thanks @imaginationac !

Also this could happen if your ~/.vim directory is not writable!
Got this error when provisioning my vagrant machine.

or git is not installed

Was this page helpful?
0 / 5 - 0 ratings

Related issues

genokan picture genokan  路  4Comments

Dbz picture Dbz  路  6Comments

Zane-XY picture Zane-XY  路  8Comments

binarykitchen picture binarykitchen  路  3Comments

PeterBocan picture PeterBocan  路  4Comments