How can one uninstall Vundle.vim, I removed it and I still see errors from Vundle.
There are two places where one needs to remove vim plugins: from your vimrc/config files and from your .vim directory.
Vundle's typical location is in ~/.vim/bundle/Vundle.vim/. (More generally, it's wherever you put it. But this is where the README suggests putting it). You can delete this whole directory.
Typically, the only configuration file containing vundle commands is your .vimrc. You can delete the lines appearing in the README, essentially. The lines you should delete are those looking like
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'VundleVim/Vundle.vim'
Plugin <other_vim_plugins>
...
call vundle#end()
Most helpful comment
There are two places where one needs to remove vim plugins: from your vimrc/config files and from your .vim directory.
Vundle's typical location is in
~/.vim/bundle/Vundle.vim/. (More generally, it's wherever you put it. But this is where the README suggests putting it). You can delete this whole directory.Typically, the only configuration file containing vundle commands is your
.vimrc. You can delete the lines appearing in the README, essentially. The lines you should delete are those looking like