0

I'm trying to install Vundle in order to have an IDE for Python in Vim. But every time I start Vim it gives me this message:

    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

I've used the code found in the Vundle repository.

Any idea on how to stop this behavior?

Rory O'Kane
  • 29,210
  • 11
  • 96
  • 131
Giuseppe Minardi
  • 411
  • 4
  • 16

1 Answers1

0

Looking at your .vimrc, you forgot to add these lines at the start:

set nocompatible
filetype off

The Vundle Quick Start says those lines are required. They must be placed somewhere before the set rtp+=~/.vim/bundle/Vundle.vim statement.

Rory O'Kane
  • 29,210
  • 11
  • 96
  • 131