-
I have a somewhat weird issue with Terraform's LSP server, which I was trying to address by changing the {
"terraform-ls": {
"workspaceFolders": [
{
"uri": "foo",
"name": "bar"
}
]
}
} Turns out, I'm hitting the limits of my ELisp knowledge here, as this is the closest I could get without ((nil
. ((eglot-workspace-configuration
. (terraform-ls
(workspaceFolders
(uri "foo" name "bar"))))))) which in turn produces this which is not correct ( {
"terraform-ls": {
"workspaceFolders": {
"uri": "foo",
"name": "bar"
}
}
} So while the question is not exactly Eglot-specific, I'm still wondering if someone here with much stronger ELisp knowledge could give a helping hand. Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Well, obviously writing this question led me on a path of discovery of correct syntax: ((nil
. ((eglot-workspace-configuration
. (terraform-ls
(workspaceFolders [(uri "foo" name "bar")])))))) Apologies for spamming the discussions section. I'll show myself out. |
Beta Was this translation helpful? Give feedback.
Well, obviously writing this question led me on a path of discovery of correct syntax:
Apologies for spamming the discussions section. I'll show myself out.