mirror of https://github.com/helix-editor/helix
lsp: Add workspace/applyEdit to client capabilites (#3012)
The functionality already existed, but the capability wasn't being
reported correctly to the server:
230ba264bf/helix-term/src/application.rs (L716-L728)
pull/3017/head
parent
b7a3531b8f
commit
21b66ba068
|
@ -294,6 +294,7 @@ impl Client {
|
||||||
dynamic_registration: Some(false),
|
dynamic_registration: Some(false),
|
||||||
}),
|
}),
|
||||||
workspace_folders: Some(true),
|
workspace_folders: Some(true),
|
||||||
|
apply_edit: Some(true),
|
||||||
..Default::default()
|
..Default::default()
|
||||||
}),
|
}),
|
||||||
text_document: Some(lsp::TextDocumentClientCapabilities {
|
text_document: Some(lsp::TextDocumentClientCapabilities {
|
||||||
|
|
Loading…
Reference in New Issue