首页 > 代码库 > debian下安装vundle出现unknow function begin 错误解决

debian下安装vundle出现unknow function begin 错误解决

首先说下我的原因

是因为配置中

set nocompatible " be iMproved, requiredfiletype off " required" set the runtime path to include Vundle and initializeset rtp+=~/.vim/bundle/Vundle.vim    //这里设置错误了call vundle#begin()" alternatively, pass a path where Vundle should install plugins"call vundle#begin(‘~/some/path/here‘)" let Vundle manage Vundle, requiredPlugin ‘gmarik/Vundle.vim‘" The following are examples of different formats supported." Keep Plugin commands between vundle#begin/end." plugin on GitHub repoPlugin ‘tpope/vim-fugitive‘

 在vim 中运行 :echo &rtp  发现上面的路径对应着是  /root/.vim/bundle/Vundle.vim

而我实际的应该是 /home/[用户名]/.vim/bundle/Vundle.vim      这里~代表的不一样

所以将上面那一行修改成

set rtp+=/home/[用户名]/.vim/bundle/Vundle.vim

这是我遇到的问题

附上参考的链接 https://github.com/gmarik/Vundle.vim/issues/506    (上面不能解决的看看这个,可能是没更新什么的)

安装说明 https://github.com/gmarik/Vundle.vim/blob/v0.10.2/doc/vundle.txt#L234-L254

其它 http://www.cnblogs.com/Hsin/p/4064640.html

转载请保留出处,虽然感觉没人转,,呃呃。。

 

debian下安装vundle出现unknow function begin 错误解决