lsp-docker icon indicating copy to clipboard operation
lsp-docker copied to clipboard

Scripts and configurations to leverage lsp-mode in docker environment

Results 20 lsp-docker issues
Sort by recently updated
recently updated
newest added

emacs-lsp/lsp-mode#1147 added support for Terraform development using `terraform-lsp`. The binary needs to be added to the project Docker image, along with a sample project.

Here it is what we can use as a base: https://hub.docker.com/r/andreacorallo/emacs-nativecomp Goals: 1. Promote emacs native support 2. Make "ultimate speed" setup easier to try/test We have to decide if...

This project appears to be missing an F# sample project + FSAutoComplete. They should be added.

…type For image type, the container-name is nil and makes the name of repeated creation of container conflicts with each other.

rust-analyzer with lsp-docker works well in my environment, but for functions with lens, it reports path not found, and the path is a 'destination-path' in docker, i think it may...

Doing ``` sh git clone https://github.com/emacs-lsp/lsp-docker ``` and ``` sh docker pull emacslsp/lsp-docker-langservers ``` with ``` lisp ;; Uncomment the next line if you are using this from source ;;...

fix for https://github.com/emacs-lsp/lsp-docker/issues/48 The issue was that every time a new connection is requested to the lsp-server a new server process and thus a new container should be created. However,...

Assuming a multi-language project. Is it possible to define multiple language-servers within a `.lsp-docker.yml` file? The same goes for the debug servers, is it possible to define multiple?

I'm confused, how do I install this properly for spacemacs and how do I use this with a different docker instance? Do I have to use `start-spacemacs.sh`? Or do I...

by using .lsp-docker.yaml, it is good for mapping only one source to one destinations like this : ``` mappings: - source: "~/A" destination: "A-in-docker" ``` myquestion is, is it possible...