未知函数:vundle#begin

未知函数:vundle#begin

我将 vundle 文件克隆到 cygwin 下的主目录中

然后我按照以下说明进行操作:https://github.com/VundleVim/Vundle.vim

由于我在 cygwin 下运行 vim,因此我将文件中的运行时路径更改.vimrc为:

set rtp+=C:cygwin64/home/USERNAME/.vim/bundle/Vundle.vim/
call vundle#begin('C:/cygwin64/home/USERNAME/.vim/bundle/')

现在,每次我在 cygwin 下运行 vim 时都会收到以下错误:

Error detected while processing /home/username/.vimrc
line 7:
E117: Unknown function: vundle#begin
line 10:
E492: Not an editor comand: Plugin 'VundleVim/Vundle.vim'
line 15:
E117: Unknown function: vundle#end
Press ENTER or type command to continue

按下 Enter 后,vim 正常运行,但没有 vundle。

问题:

  1. 知道可能是什么问题吗?
  2. vundle 与 cygwin 兼容吗?

答案1

这一行:

Error detected while processing /home/username/.vimrc

应该能让你很清楚地了解你做错了什么。

相关内容