Skip to content

Commit 5554349

Browse files
authored
Merge pull request #88 from factyy/fix/use-default-config-too
Use the default configuration when no config was found
2 parents e4401a4 + fd5f81f commit 5554349

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

lsp-docker.el

+7-4
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@
5656
;; 1st sub-node keys
5757
(defconst lsp-docker--server-key 'server
5858
"LSP sub-key holding a single (or a group of) server(s)")
59+
5960
(defconst lsp-docker--mappings-key 'mappings
6061
"Collection of mappings between host-paths and
6162
containerized-paths (host paths must be within the project)")
@@ -64,18 +65,22 @@ containerized-paths (host paths must be within the project)")
6465
;; supported keys in YAML configuration file(s)
6566
(defconst lsp-docker--srv-cfg-type-key 'type
6667
"The type of server (at the moment only `docker' is supported).")
68+
6769
(defconst lsp-docker--srv-cfg-subtype-key 'subtype
6870
"For type container it can be:
6971
- `container': attach to an already running container
7072
- `image': when the image does not exist, try to build it based on the dockerfile
7173
found in the project-scope An image might feature an optional tag, i.e.
7274
`<image>:<tag>'. the If a tagless image is indicated `latest' will be assumed")
75+
7376
(defconst lsp-docker--srv-cfg-name-key 'name
7477
"Depending on the `lsp-docker--srv-cfg-subtype-key' it holds the
7578
name of the container/image for the described language server.")
79+
7680
(defconst lsp-docker--srv-cfg-server-key 'server
7781
"Server ID of a registered LSP server. You can find the list of
7882
registered servers evaluating: `(ht-keys lsp-clients)'.")
83+
7984
(defconst lsp-docker--srv-cfg-launch-command-key 'launch_command
8085
"Command to launch the language server in stdio mode. This key is
8186
not used when the `lsp-docker--srv-cfg-subtype-key' is set to
@@ -108,7 +113,6 @@ Argument PATH the path to translate."
108113
(replace-regexp-in-string (format "\\(%s\\).*" local) remote path nil nil 1)
109114
(user-error "The path %s is not under path mappings" path))))
110115

111-
112116
(defvar lsp-docker-container-name-suffix 0
113117
"Used to prevent collision of container names.")
114118

@@ -337,9 +341,8 @@ be bigger than default servers in order to override them)")
337341
"Get the LSP configuration based on a project-local configuration (using lsp-mode)"
338342
(let ((project-config-file-path (lsp-docker--find-project-config-file-from-lsp)))
339343
(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))))
343346

344347
(defvar lsp-docker-supported-server-types-subtypes
345348
(ht ('docker (list 'container 'image)))

0 commit comments

Comments
 (0)