Macvim に Vundle をインストールしようとしています。次のリンクをたどって Vundle を入手しました。.vimrc ファイルも構成しました。しかし、PluginInstall を試みると、次のエラーが発生します。
E492: Not an editor command: PluginInstall
私の .vimrc には以下が含まれています:
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#begin()
9 " alternatively, pass a path where Vundle should install plugins
10 "call vundle#begin('~/some/path/here')
11
12 " let Vundle manage Vundle, required
13 Plugin 'gmarik/Vundle.vim'
14
15 " All of your Plugins must be added before the following line
16 call vundle#end() " required
17 filetype plugin indent on " required
私のvimディレクトリ:
Username-MacBook-Pro:bundle u1$ pwd
/Users/u1/.vim/bundle
Username-MacBook-Pro:bundle u1$ ls
Vundle.vim
このスタックオーバーフローの投稿も確認しました。しかし、それは私の問題を解決しませんでした。なぜこのようなエラーがスローされるのか、どうすれば自分の問題を正確に見つけることができますか.