我正在尝试安装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中的代码。
关于如何停止这种行为的任何想法?
答案 0 :(得分:0)
看着your .vimrc
,您忘了在开头添加以下行:
set nocompatible
filetype off
Vundle Quick Start说这些行是必需的。必须将它们放在set rtp+=~/.vim/bundle/Vundle.vim
语句之前。