搜索

首页  >  问答  >  正文

macos - 在 OS X 上安装好 Vundle 后 出现 Not an editor command: Bundle

安装的是最新的 Vundle ,安装方法来自 Github ,安装已完成,能够使用 PluginInstall 等命令。

.vimrc 中添加以下这行想要使用的插件( https://github.com/Lokaltog/vim-powerline )。

Bundle 'Lokaltog/vim-powerline'

会出现一下报错:
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 了一圈还是没搞明白...

只好来求助了 TAT !

顺便求推荐个不错的 Laravel4 、 Laravel5 、 PHP 的代码自动提示插件哟~


补充:
已将Bundle替换为Plugin命令尝试PluginInstall:

習慣沉默習慣沉默2778 天前936

全部回复(1)我来回复

  • 高洛峰

    高洛峰2017-05-16 16:40:48

    建议你参照Vundle的文档,其他人可能不清楚你的实际情况。可以确定的是Bundle并不是一个vim命令,并且你的Vundle没有在Vim中引入这样一个命令。我的vimrc中是通过Plugin来声明插件的:

    set rtp+=~/.vim/bundle/Vundle.vim
    call vundle#begin()
    
    Plugin 'gmarik/Vundle.vim'
    Plugin 'Valloric/YouCompleteMe'
    Plugin 'Chiel92/vim-autoformat'
    
    call vundle#end()

    回复
    0
  • 取消回复