Falha ao instalar o plugin Vim na máquina local pela Vundle

1

Para testar, tento instalar um plug-in local como este passo:

  1. Clone qualquer plugin útil para o local, como o vim-fugitive:

    git clone https://github.com/tpope/vim-fugitive.git ~/devspace/vim-fugitive
    
  2. Adicione Bundle '~/devspace/vim-fugitive.git no arquivo .vimrc.

  3. Execute vim +BundleInstall no shell.

Tudo é feito, exceto o seguinte plugin, o log é:

Bundle ~/devspace/vim-fugitive.git
$ git clone --recursive '~/devspace/vim-fugitive.git' '/home/USER/.vim/bundle/vim-fugitive'                                                               
> fatal: Could not switch to '~/devspace': No such file or directory^@

Se eu não entendi direito, por favor, me diga, obrigado.

- ATUALIZAÇÃO -

Eu apenas altero o .vimrc para Bundle '/home/leiming/devspace/vim-fugitive' , o log de erros como abaixo:

Bundle /home/leiming/devspace/vim-fugitive
$ git clone --recursive 'https://github.com/vim-scripts//home/leiming/devspace/vim-fugitive.git' '/home/leiming/.vim/bundle/home/leiming/devspace/vim-fugitive'                                                                                                                                                                   
> Cloning into /home/leiming/.vim/bundle/home/leiming/devspace/vim-fugitive...^@error: The requested URL returned error: 403 while accessing https://github.com/vim-scripts//home/leiming/devspace/vim-fugitive.git/info/refs^@^@fatal: HTTP request failed^@     
    
por Lei Ming 30.12.2013 / 04:41

1 resposta

2

Porque você clonou ~/devspace/vim-fugitive , mas isso não é um repositório. Então mude assim: Bundle 'tpope/vim-fugitive' e se você quiser trabalhar em seu repositório local, siga isto: %código% " Git repos on your local machine (i.e. when working on your own plugin)

Você pode ver a configuração do vundle aqui: Vundle no Github

    
por 30.12.2013 / 05:18

Tags