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
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 AutoTagctags should be ctags.vimtaglist should be taglist.vimI 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
Most helpful comment
Also this could happen if your
~/.vimdirectory is not writable!Got this error when provisioning my vagrant machine.