56
56
; ; 1st sub-node keys
57
57
(defconst lsp-docker--server-key 'server
58
58
" LSP sub-key holding a single (or a group of) server(s)" )
59
+
59
60
(defconst lsp-docker--mappings-key 'mappings
60
61
" Collection of mappings between host-paths and
61
62
containerized-paths (host paths must be within the project)" )
@@ -64,18 +65,22 @@ containerized-paths (host paths must be within the project)")
64
65
; ; supported keys in YAML configuration file(s)
65
66
(defconst lsp-docker--srv-cfg-type-key 'type
66
67
" The type of server (at the moment only `docker' is supported)." )
68
+
67
69
(defconst lsp-docker--srv-cfg-subtype-key 'subtype
68
70
" For type container it can be:
69
71
- `container' : attach to an already running container
70
72
- `image' : when the image does not exist, try to build it based on the dockerfile
71
73
found in the project-scope An image might feature an optional tag, i.e.
72
74
`<image>:<tag>' . the If a tagless image is indicated `latest' will be assumed" )
75
+
73
76
(defconst lsp-docker--srv-cfg-name-key 'name
74
77
" Depending on the `lsp-docker--srv-cfg-subtype-key' it holds the
75
78
name of the container/image for the described language server." )
79
+
76
80
(defconst lsp-docker--srv-cfg-server-key 'server
77
81
" Server ID of a registered LSP server. You can find the list of
78
82
registered servers evaluating: `(ht-keys lsp-clients)'." )
83
+
79
84
(defconst lsp-docker--srv-cfg-launch-command-key 'launch_command
80
85
" Command to launch the language server in stdio mode. This key is
81
86
not used when the `lsp-docker--srv-cfg-subtype-key' is set to
@@ -108,7 +113,6 @@ Argument PATH the path to translate."
108
113
(replace-regexp-in-string (format " \\ (%s \\ ).*" local) remote path nil nil 1 )
109
114
(user-error " The path %s is not under path mappings" path))))
110
115
111
-
112
116
(defvar lsp-docker-container-name-suffix 0
113
117
" Used to prevent collision of container names." )
114
118
@@ -337,9 +341,8 @@ be bigger than default servers in order to override them)")
337
341
" Get the LSP configuration based on a project-local configuration (using lsp-mode)"
338
342
(let ((project-config-file-path (lsp-docker--find-project-config-file-from-lsp)))
339
343
(if project-config-file-path
340
- (or (lsp-docker-get-config-from-project-config-file project-config-file-path)
341
- (ht-copy lsp-docker-persistent-default-config))
342
- (user-error " cannot find LSP configuration file project, refer to the documentation" ))))
344
+ (lsp-docker-get-config-from-project-config-file project-config-file-path)
345
+ (ht-copy lsp-docker-persistent-default-config))))
343
346
344
347
(defvar lsp-docker-supported-server-types-subtypes
345
348
(ht ('docker (list 'container 'image )))
0 commit comments