We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6cd669e commit f45c1ffCopy full SHA for f45c1ff
crates/rust-analyzer/src/main_loop.rs
@@ -571,6 +571,12 @@ impl GlobalState {
571
this.cancel(id);
572
Ok(())
573
})?
574
+ .on::<lsp_types::notification::WorkDoneProgressCancel>(|_this, _params| {
575
+ // Just ignore this. It is OK to continue sending progress
576
+ // notifications for this token, as the client can't know when
577
+ // we accepted notification.
578
+ Ok(())
579
+ })?
580
.on::<lsp_types::notification::DidOpenTextDocument>(|this, params| {
581
if let Ok(path) = from_proto::vfs_path(¶ms.text_document.uri) {
582
if this
0 commit comments