Skip to content

Commit e4401a4

Browse files
authored
Merge pull request #85 from sfavazza/feature/multiple-servers-support
Add multi-server feature
2 parents f5eb3f4 + b23d606 commit e4401a4

12 files changed

+330
-129
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,6 @@ emacs.d
2727
Debug
2828
.log
2929
*.ccls-cache*
30+
31+
# test files
32+
test/.lsp-docker.yml

README.org

+25-8
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,11 @@
1313
- [[#flags][Flags]]
1414
- [[#emacs][Emacs]]
1515
- [[#spacemacs][Spacemacs]]
16-
- [[#custom-language-server-containers][Custom language server containers]]
16+
- [[#custom-language-server-containers][Custom language server containers]]
17+
- [[#building-a-container-or-an-image-manually][Building a container (or an image) manually:]]
18+
- [[#registering-a-language-server-using-a-persistent-configuration-file][Registering a language server using a persistent configuration file:]]
19+
- [[#registering-a-language-server-using-a-dir-locals-file][Registering a language server using a =.dir-locals= file:]]
20+
- [[#automatic-image-building][Automatic image building:]]
1721
- [[#docker-over-tramp-tbd][Docker over TRAMP (TBD)]]
1822
- [[#see-also][See also]]
1923
- [[#maintainers][Maintainers]]
@@ -115,11 +119,11 @@
115119
#+begin_src bash
116120
EMACS_D_VOLUME=/path/to/spacemacs bash start-spacemacs.sh
117121
#+end_src
118-
119-
** Custom language server containers
122+
123+
** Custom language server containers
120124
You can use manually built language containers or images hosting language server(s), just follow a few simple rules (shown below).
121125
The docker images may feature an optional tag, if omitted _latest_ will be assumed.
122-
126+
123127
*** Building a container (or an image) manually:
124128
You have 2 constraints:
125129
- A language server must be launched in =stdio= mode (other types of communication are yet to be supported)
@@ -143,6 +147,7 @@
143147
It is structured in the following way:
144148

145149
#+begin_src yaml
150+
# single server configuration
146151
lsp:
147152
server:
148153
type: docker
@@ -152,11 +157,11 @@ It is structured in the following way:
152157
# (see Automatic image building). An image might feature an optional tag, i.e. '<image>:<tag>'. If a
153158
# tagless image is indicated 'latest' will be assumed.
154159
subtype: container
155-
# image/container name to use for this language server
160+
# Image/container name to use for this language server.
156161
name: image-container-name
157162
# server id of a registered LSP server. You can find the list of registered servers evaluating:
158163
#
159-
# `(let ((keys ())) (maphash (lambda (k v) (push k keys)) lsp-clients) keys)`
164+
# `(ht-keys lsp-clients)`
160165
#
161166
# source:
162167
# https://stackoverflow.com/questions/17066169/retrieve-keys-from-hash-table-sorted-by-the-values-efficiently
@@ -169,14 +174,26 @@ It is structured in the following way:
169174
# NOTE: the paths must be within the project this server is being build for
170175
- source: "/your/host/source/path"
171176
destination: "/your/path/inside/the/container"
177+
178+
# multiple server configuration
179+
lsp:
180+
server:
181+
- type: ...
182+
subtype: ...
183+
... # keys as in the classic single server case, e.g. type, subtype, etc...
184+
- ... # other single server configuration(s)
185+
mappings: # shared among all servers
186+
- source: <path-on-host>
187+
destination: <path-on-lang-server>
188+
... # other mappings
172189
#+end_src
173190

174191
*** Registering a language server using a =.dir-locals= file:
175192
Just refer to the source code and general conventions of using =.dir-locals=. The variable you need is =lsp-docker-persistent-default-config=, its content is merged with the =lsp= section from a configuration file (if present).
176-
193+
177194
*** Automatic image building:
178195
You can also build an image automatically (currently supported only for =image= subtype): just drop the corresponding =Dockerfile= into the =.lsp-docker= folder in the project root (=Dockerfile= may be named as =Dockerfile= or =Dockerfile.lsp=). Building process is triggered by the =lsp-docker-register= call (you will be prompted whether you want to build the image). Image building *takes place in the project root* (*not* in the =.lsp-docker= subfolder)! In case of an automatic build the image will be registered automatically (based on the values from the config or =.dir-locals= file).
179-
196+
180197
You can also troubleshoot any issues with supplemental docker calls (checking whether the required image already exists, building a new image) using the supplemental logging functionality: there are 2 variables: first you have to set =lsp-docker-log-docker-supplemental-calls= to true-like value (by default it is =nil=) and then specify the log buffer in the =lsp-docker-log-docker-supplemental-calls-buffer-name= variable (by default it is set to =*lsp-docker-supplemental-calls*=)
181198

182199
** Docker over TRAMP (TBD)

0 commit comments

Comments
 (0)