I am trying to install Vundle on my Macvim. I got the following link to get Vundle. I also configured the .vimrc file. But when I try to connect to PluginInstall, I get the following error.
E492: Not an editor command: PluginInstall
My.vimrc contains the following:
1 set nocompatible "https://stackoverflow.com/questions/5845557/in-a-vimrc-is-set-nocc ompatible-completely-useless 2 3 " https://github.com/gmarik/Vundle.vim 4 filetype off " required 5 6 " set the runtime path to include Vundle and initialize 7 set rtp+=~/.vim/bundle/Vundle.vim 8 call vundle
My vim directory:
Username-MacBook-Pro:bundle u1$ pwd /Users/u1/.vim/bundle Username-MacBook-Pro:bundle u1$ ls Vundle.vim
I also checked this postoverflow post. But that did not solve my problem. Why does this cause such an error and how can I find what exactly is my problem.
source share