mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 19:37:54 +03:00
lsp: Disable snippet_support until we implement it.
This commit is contained in:
parent
004a4f37a7
commit
61ce2c9cfe
2 changed files with 20 additions and 7 deletions
|
@ -189,12 +189,25 @@ impl Client {
|
||||||
root_uri: None, // set to project root in the future
|
root_uri: None, // set to project root in the future
|
||||||
initialization_options: None,
|
initialization_options: None,
|
||||||
capabilities: lsp::ClientCapabilities {
|
capabilities: lsp::ClientCapabilities {
|
||||||
// text_document:
|
text_document: Some(lsp::TextDocumentClientCapabilities {
|
||||||
// { completion: {
|
completion: Some(lsp::CompletionClientCapabilities {
|
||||||
// dynamic_registration: bool
|
completion_item: Some(lsp::CompletionItemCapability {
|
||||||
// completion_item: { snippet, documentation_format, ... }
|
snippet_support: Some(false), // TODO
|
||||||
// completion_item_kind: { }
|
..Default::default()
|
||||||
// } }
|
}),
|
||||||
|
completion_item_kind: Some(lsp::CompletionItemKindCapability {
|
||||||
|
..Default::default()
|
||||||
|
}),
|
||||||
|
context_support: None, // additional context information Some(true)
|
||||||
|
..Default::default()
|
||||||
|
}),
|
||||||
|
// { completion: {
|
||||||
|
// dynamic_registration: bool
|
||||||
|
// completion_item: { snippet, documentation_format, ... }
|
||||||
|
// completion_item_kind: { }
|
||||||
|
// } }
|
||||||
|
..Default::default()
|
||||||
|
}),
|
||||||
..Default::default()
|
..Default::default()
|
||||||
},
|
},
|
||||||
trace: None,
|
trace: None,
|
||||||
|
|
|
@ -31,7 +31,7 @@ futures-util = "0.3"
|
||||||
|
|
||||||
# Logging
|
# Logging
|
||||||
fern = "0.6"
|
fern = "0.6"
|
||||||
chrono = "0.4"
|
chrono = { version = "0.4", default-features = false, features = ["clock"] }
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
|
|
||||||
# File picker
|
# File picker
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue