2015-09-30 70 views
2

好像并非所有的插件都正确安装。我有以下的日志文件:Vundle未正确安装

[2015-09-30 14:58:32] Plugin user/L9                  |~                           
[2015-09-30 14:58:32] $ git clone --recursive 'https://github.com/user/L9.git' '/home/sachin/.vim/bundle/n|~                           
ewL9'                          |~                           
[2015-09-30 14:58:32] > Cloning into '/home/sachin/.vim/bundle/newL9'...         |~                           
[2015-09-30 14:58:32] > remote: Repository not found.              |~                           
[2015-09-30 14:58:32] > fatal: repository 'https://github.com/user/L9.git/' not found      Username for 'https://github.com': sachinruk                
[2015-09-30 14:58:32] >                     |~                           
[2015-09-30 14:58:33]                      |~                           
[2015-09-30 14:58:33] Helptags:                   |~                           
[2015-09-30 14:58:33] :helptags /home/sachin/.vim/bundle/Vundle.vim/doc         |~                           
[2015-09-30 14:58:33] :helptags /home/sachin/.vim/bundle/vim-fugitive/doc         |~                           
[2015-09-30 14:58:33] :helptags /home/sachin/.vim/bundle/L9/doc           |~                           
[2015-09-30 14:58:33] :helptags /home/sachin/.vim/bundle/command-t/doc         |~                           
[2015-09-30 14:58:33] Helptags: 4 plugins processed    

我的.vimrc文件是这样的:

set nocompatible    " be iMproved, required 
filetype off     " required 

set rtp+=~/.vim/bundle/Vundle.vim 
call vundle#begin() 
" let Vundle manage Vundle, required 
Plugin 'VundleVim/Vundle.vim' 
" plugin on GitHub repo 
Plugin 'tpope/vim-fugitive' 
" plugin from http://vim-scripts.org/vim/scripts.html 
Plugin 'L9' 
" Git plugin not hosted on GitHub 
Plugin 'git://git.wincent.com/command-t.git'  
Plugin 'rstacruz/sparkup', {'rtp': 'vim/'} 
" Avoid a name conflict with L9 
Plugin 'user/L9', {'name': 'newL9'} 

call vundle#end()   " required 
filetype plugin indent on " required 

其明显没有https://github.com/user/L9页面,但我不能肯定它是什么,我做错了。它在失败之前请求我的github用户名和密码。

更重要的是我需要担心这个错误吗?

回答