我正在尝试安装Vundle,Vim 的插件管理器,我正在按照信中的说明进行操作,但要么真的遗漏了一些东西,要么我应该使用的另一种方法没有在他们的Github 存储库中提供。
步骤 1. 我在终端中执行以下操作:git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
步骤 2. 我 cd 进入以下目录,以便编辑我的 vimrc 文件:
/usr/share/vim
根据 Vundle Github 上的第三步,我将输入以下内容:
set nocompatible " be iMproved, required
filetype off " required
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" alternatively, pass a path where Vundle should install plugins
"call vundle#begin('~/some/path/here')
" let Vundle manage Vundle, required
Plugin 'VundleVim/Vundle.vim'
" The following are examples of different formats supported.
" Keep Plugin commands between vundle#begin/end.
" plugin on GitHub repo
Plugin 'tpope/vim-fugitive'
" plugin from http://vim-scripts.org/vim/scripts.html
Plugin 'L9'
" Git plugin not hosted on GitHub
Plugin 'git://git.wincent.com/command-t.git'
" git repos on your local machine (i.e. when working on your own plugin)
Plugin 'file:///home/gmarik/path/to/plugin'
" The sparkup vim script is in a subdirectory of this repo called vim.
" Pass the path to set the runtimepath properly.
Plugin 'rstacruz/sparkup', {'rtp': 'vim/'}
" Avoid a name conflict with L9
Plugin 'user/L9', {'name': 'newL9'}
" All of your Plugins must be added before the following line
call vundle#end() " required
filetype plugin indent on " required
" To ignore plugin indent changes, instead use:
"filetype plugin on
"
" Brief help
" :PluginList - lists configured plugins
" :PluginInstall - installs plugins; append `!` to update or just :PluginUpdate
" :PluginSearch foo - searches for foo; append `!` to refresh local cache
" :PluginClean - confirms removal of unused plugins; append `!` to auto-approve removal
"
" see :h vundle for more details or wiki for FAQ
" Put your non-Plugin stuff after this line
我打开一个新的终端 shell,输入
Vim
启动 Vim,然后运行以下命令::PluginInstall
这就是我卡住的地方,因为我在进入 Vim 后收到此错误
:PluginInstall
E492: Not an editor command: PluginInstall
我在这里想念什么?