尝试设置Vundle时启动Vim时出现奇怪的消息

时间:2018-07-03 17:02:22

标签: vim vundle

我正在尝试安装Vundle,以便在Vim中具有适用于Python的IDE。但是每次我启动Vim都会给我以下信息:

    Name        Args       Address   Complete  Definition
    Bundle      +                                  call vundle#config#bundle(<args>)
!   BundleClean ?                                  PluginClean<bang>
    BundleDocs  0                                  PluginDocs
!   BundleInstall ?                    custom        PluginInstall<bang> <args>
!   BundleList  0                                  PluginList<bang>
!   BundleSearch ?                    custom        PluginSearch<bang> <args>
    BundleUpdate 0                                  PluginInstall!
    Plugin      +                                  call vundle#config#bundle(<args>)
!   PluginClean ?                                  call vundle#installer#clean('!' == '<bang>')
    PluginDocs  0                                  call vundle#installer#helptags(g:vundle#bundles)
!   PluginInstall *                    custom        call vundle#installer#new('!' == '<bang>', <f-args>)
!   PluginList  0                                  call vundle#installer#list('!' == '<bang>')
!   PluginSearch ?                    custom        call vundle#scripts#all('!' == '<bang>', <q-args>)
    PluginUpdate *                    custom        PluginInstall! <args>
!   VundleClean ?                                  PluginClean<bang>
    VundleDocs  0                                  PluginDocs
!   VundleInstall ?                    custom        PluginInstall<bang> <args>
!   VundleSearch ?                    custom        PluginSearch<bang> <args>
    VundleUpdate *                    custom        PluginInstall! <args>
Press ENTER or type command to continue

我使用了Vundle repository中的代码。

关于如何停止这种行为的任何想法?

1 个答案:

答案 0 :(得分:0)

看着your .vimrc,您忘了在开头添加以下行:

set nocompatible
filetype off

Vundle Quick Start说这些行是必需的。必须将它们放在set rtp+=~/.vim/bundle/Vundle.vim语句之前。