Not sure if this is the right repo to ask or in the main Zed repo because not sure as to underlying cause or mechanism.
I am trying out the phpantom_lsp as my LSP for Zed. Seems to work well, MUCH lighter in system load than devsense. As far as I'm aware, I've disabled the other LSPs from running like so in my settings.json:
"languages": {
"PHP": {
"language_servers": [
"phpantom_lsp",
"!intelephense",
"!phpactor",
"!phptools",
"...",
],
},
},
However after some time (when indexing needs to run maybe?) I see processes running for other LSPs and Zed confirms it:
Is it because of the ... config overriding other settings? What's the behaviour here supposed to be?
Not sure if this is the right repo to ask or in the main Zed repo because not sure as to underlying cause or mechanism.
I am trying out the phpantom_lsp as my LSP for Zed. Seems to work well, MUCH lighter in system load than devsense. As far as I'm aware, I've disabled the other LSPs from running like so in my settings.json:
However after some time (when indexing needs to run maybe?) I see processes running for other LSPs and Zed confirms it:
Is it because of the
...config overriding other settings? What's the behaviour here supposed to be?