首页 > 其他 > 详细

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

时间:2015-01-24 23:55:46      阅读:370      评论:0      收藏:0      [点我收藏+]

首先说下我的原因

是因为配置中

set nocompatible " be iMproved, required
filetype off " required
" set the runtime path to include Vundle and initialize
set 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, required
Plugin ‘gmarik/Vundle.vim‘
" The following are examples of different formats supported.
" Keep Plugin commands between vundle#begin/end.
" plugin on GitHub repo
Plugin ‘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 错误解决

原文:http://www.cnblogs.com/Hsin/p/4246778.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!