We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05cbb94 commit a31dfc1Copy full SHA for a31dfc1
lsp-mode.el
@@ -5889,7 +5889,11 @@ PARAMS are the `workspace/configuration' request params"
5889
((<= path-parts-len 1)
5890
(apply 'ht-get* `(,(lsp-configuration-section section?) ,@path-parts)))
5891
((> path-parts-len 1)
5892
- (apply 'ht-get* `(,(lsp-configuration-section path-without-last) ,@path-parts)))))))
+ (when-let ((section (lsp-configuration-section path-without-last))
5893
+ (keys path-parts))
5894
+ (while (and keys section)
5895
+ (setf section (ht-get section (pop keys))))
5896
+ section))))))
5897
(apply #'vector)))
5898
5899
(defun lsp--send-request-response (workspace recv-time request response)
0 commit comments