Skip to content

Can't install with specify tag. #242

@yymm

Description

@yymm

I trird vim-plug and dein.vim, both failure.

INFO

  • NVIM v0.2.2
  • Ubuntu 16.04 (Xenial)

I write minimal reproduce way.

vim-plug: Minimal vimrc & Error info

Install

curl -fLo ~/.local/share/nvim/site/autoload/plug.vim --create-dirs \
    https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim

vimrc(~/.config/nvim/init.vim)

call plug#begin('~/.vim/plugged')
Plug 'autozimu/LanguageClient-neovim', { 'tag': 'binary-*-x86_64-unknown-linux-musl' }
call plug#end()

:PlugInstall

Installing plugins (0/1) 
[ ]

+ LanguageClient-neovim: remote: Counting objects: 4450, done. 

stop in this state forever...

dein.vim: Minimal vimrc & Error info

Install

$ mkdir -p ~/.vim/bundle/repos/github.com/Shougo/dein.vim
$ git clone https://github.com/Shougo/dein.vim \
~/.vim/bundle/repos/github.com/Shougo/dein.vim

vimrc(~/.config/nvim/init.vim)

if &compatible
  set nocompatible
endif

set runtimepath+=~/.vim/bundle/repos/github.com/Shougo/dein.vim

if dein#load_state('~/.vim/bundle')
  call dein#begin('~/.vim/bundle')
  call dein#add('Shougo/dein.vim')
  call dein#add('autozimu/LanguageClient-neovim', { 'rev': 'binary-*-x86_64-unknown-linux-musl' })
  call dein#end()
  call dein#save_state()
endif

filetype plugin indent on
syntax enable

Error info

  1. :call dein#install()
  2. :message after "[dein] Done"
[dein] Update started: (2017/12/28 04:22:50)
[dein] LanguageClient-neovim
[dein] Error revision number: fatal: Unable to read current working directory: No such file or directory
[dein] /root/.vim/bundle/repos/github.com/autozimu/LanguageClient-neovim
[dein] fatal: Not a git repository (or any of the parent directories): .git
[dein] /root/.vim/bundle/repos/github.com/autozimu/LanguageClient-neovim
[dein] Maybe wrong username or repository.
[dein] Process timeout: (2017/12/28 04:24:52)
[dein] Error installing plugins:
[dein]   LanguageClient-neovim
[dein] Please read the error message log with the :message command.
[dein] Done: (2017/12/28 04:24:53)

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions