You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -169,14 +174,26 @@ It is structured in the following way:
169
174
# NOTE: the paths must be within the project this server is being build for
170
175
- source: "/your/host/source/path"
171
176
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
172
189
#+end_src
173
190
174
191
*** Registering a language server using a =.dir-locals= file:
175
192
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
+
177
194
*** Automatic image building:
178
195
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
+
180
197
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*=)
0 commit comments