你好,我正在尝试安装一些插件,并使用vundle作为我的插件管理器。
当我打开gvim时,这是我得到的错误
Error detected while processing /home/user/.vimrc:
line 9:
E117: Unknown function: vundle#rc
line 12:
E492: Not an editor command: Bundle 'gmarik/vundle'下面是我的.vimrc文件顶部的代码片段
set nocompatible
filetype off
set rtp+=~/.vim/bundle/vundel/
call vundle#rc()
"Required Bundel Statement
Bundle 'gmarik/vundle'
"User Installed Bundles
Bundle 'neocomplcache/neocomplcache.vim'
Bunlde 'perlomni/perlomni.vim'
filetype plugin indent on
filetype on
syntax on我是根据git hub和下载的read安装的。
我没有超级用户帐户的访问权限,因此尝试卸载并重新安装vim将不起作用。
有人能帮我让我的捆绑包正常工作吗?
我正在尝试使用从git存储库下载的包或存储在共享根目录中的包。
谢谢
发布于 2013-07-22 23:04:30
您的set rtp行中的vundle拼写错误
set rtp+=~/.vim/bundle/vundel/可能应该是
set rtp+=~/.vim/bundle/vundle/https://stackoverflow.com/questions/17790897
复制相似问题