0

我正在尝试安装 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 存储库中的代码。

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

4

1 回答 1

0

查看您的.vimrc,您忘记在开头添加这些行:

set nocompatible
filetype off

Vundle快速入门说这些行是必需的。它们必须放在set rtp+=~/.vim/bundle/Vundle.vim语句之前的某个地方。

于 2018-07-03T18:41:30.783 回答