首页 > 代码库 > 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 错误解决
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。