The installation is the latest Vundle. The installation method is from Github. The installation has been completed and commands such as PluginInstall can be used.
Add the following line of plug-ins to. vimrc (https://github.com/Lokaltog/vim-powerline)。
Bundle ‘Lokaltog/vim-powerline’
There will be an error:
Error detected while processing /Users/mac/.vimrc:
line 9:
E492: Not an editor command: Bundle ‘Lokaltog/vim-powerline’
Press ENTER or type command to continue
Google did not understand after a circle. …
Had to come to TAT for help!
By the way, please recommend a good Laravel4, Laravel5, PHP code auto-prompt plugin yo ~
Add:
Bundle has been replaced with Plugin command. try PluginInstall:
It is suggested that you refer to Vundle’s documents. others may not know your actual situation. It can be determined that
Bundle
It is not a vim command, and your Vundle did not introduce such a command in Vim. My vimrc is throughPlugin
To declare the plug-in:set rtp+=~/.vim/bundle/Vundle.vim call vundle#begin() Plugin 'gmarik/Vundle.vim' Plugin 'Valloric/YouCompleteMe' Plugin 'Chiel92/vim-autoformat' call vundle#end()