mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 03:17:45 +03:00
Bump lsp-types to 0.91.0 (#932)
This commit is contained in:
parent
cec0cfdaec
commit
49f6c2623f
5 changed files with 38 additions and 35 deletions
|
@ -19,7 +19,7 @@ futures-executor = "0.3"
|
|||
futures-util = { version = "0.3", features = ["std", "async-await"], default-features = false }
|
||||
jsonrpc-core = { version = "18.0", default-features = false } # don't pull in all of futures
|
||||
log = "0.4"
|
||||
lsp-types = { version = "0.90", features = ["proposed"] }
|
||||
lsp-types = { version = "0.91", features = ["proposed"] }
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
serde_json = "1.0"
|
||||
thiserror = "1.0"
|
||||
|
|
|
@ -461,7 +461,7 @@ impl Client {
|
|||
};
|
||||
|
||||
let changes = match sync_capabilities {
|
||||
lsp::TextDocumentSyncKind::Full => {
|
||||
lsp::TextDocumentSyncKind::FULL => {
|
||||
vec![lsp::TextDocumentContentChangeEvent {
|
||||
// range = None -> whole document
|
||||
range: None, //Some(Range)
|
||||
|
@ -469,10 +469,11 @@ impl Client {
|
|||
text: new_text.to_string(),
|
||||
}]
|
||||
}
|
||||
lsp::TextDocumentSyncKind::Incremental => {
|
||||
lsp::TextDocumentSyncKind::INCREMENTAL => {
|
||||
Self::changeset_to_changes(old_text, new_text, changes, self.offset_encoding)
|
||||
}
|
||||
lsp::TextDocumentSyncKind::None => return None,
|
||||
lsp::TextDocumentSyncKind::NONE => return None,
|
||||
kind => unimplemented!("{:?}", kind),
|
||||
};
|
||||
|
||||
Some(self.notify::<lsp::notification::DidChangeTextDocument>(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue