未知功能:vundle #start


0

我将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
在cygwin下你应该使用posix路径 /home/USERNAME/.vim/bundle/C:/cygwin64/home/USERNAME/.vim/bundle/ 并非所有程序都能管理
matzeri

谢谢,这解决了问题,并导致了实现。我非常感谢你的评论。
noer

Answers:


-1

这一行:

Error detected while processing /home/username/.vimrc

应该给你一个很好的想法,你做错了什么。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.