It's showing this obnoxious error after running a script that has always worked perfectly for me before.
Error detected while processing function vundle#config#bundle..<SNR>8_check_bundle_name:
line 2:
Vundle error: Name collision for Plugin jistr/vim-nerdtree-tabs. Plugin jistr/vim-nerdtree-tabs previously used the name "vim-nerdtree-tabs". Skipping Plugin jistr/vim-nerdtree-tabs.
Press ENTER or type command to continue
Not very familiar with vundle, I tried deleting the ~/.vim/bundles and reinstalling vundle and I can't find any similar issues. Not sure with jist/vim-nerdtree-tabs is locate, I delete the bundle and the error still persists.
Honestly I just want the error to stop showing and not need to press enter, because it still works with nerd tree
I think it is your .vimrc problem.
Plugin 'jistr/vim-nerdtree-tabs' and jistr/vim-nerdtree-tabs are exists in your .vimrc.
You have this Plugin line repeated in your vimrc:
Plugin 'jistr/vim-nerdtree-tabs'
Just remove one and everything will work again.
Vundle prevents users from having a config with two plugins that would end up installing on the same directory, since one would overwrite the other.
In this case it happens to be the same script, but now you know you have unnecessary lines in your vimrc.
On windows 10, I had a file named ._vimrc.un~. Renaming this file resolved the issue for me.
I also encountered this problem. However, I do not have the plugin line in my .vimrc
I also encountered this problem. However, I do not have the plugin line in my .vimrc
Me, too. But I found I was trying to install this plugin again after run PluginInstall using Bundle. No problem actually with Vundle. Thanks.
Most helpful comment
I think it is your .vimrc problem.
Plugin 'jistr/vim-nerdtree-tabs'andjistr/vim-nerdtree-tabsare exists in your .vimrc.