In the README.org, lsp-docker-client-configs designates server-command as clangd. But actually, clangd executable does not exist in the $PATH of the container.
It does exist as /ccls/clang+llvm-8.0.0-x86_64-linux-gnu-ubuntu-18.04/bin/clangd.
One trivial work around is changing server-command from clangd to /ccls/clang+llvm-8.0.0-x86_64-linux-gnu-ubuntu-18.04/bin/clangd. Now, I can use this package with the modification.
But in principle, I think we should modify the docker image. I tried building the image with the /lsp-docker-langservers/dockerfile in this repository, but it fails. I will register another issue about this.
In the README.org,
lsp-docker-client-configs
designatesserver-command
asclangd
. But actually,clangd
executable does not exist in the$PATH
of the container.It does exist as
/ccls/clang+llvm-8.0.0-x86_64-linux-gnu-ubuntu-18.04/bin/clangd
.One trivial work around is changing
server-command
fromclangd
to/ccls/clang+llvm-8.0.0-x86_64-linux-gnu-ubuntu-18.04/bin/clangd
. Now, I can use this package with the modification.But in principle, I think we should modify the docker image. I tried building the image with the
/lsp-docker-langservers/dockerfile
in this repository, but it fails. I will register another issue about this.