diff --git a/crates/project/src/lsp_store.rs b/crates/project/src/lsp_store.rs index ad24c94a45b423bffb6a04b209701cdc5ae29660..ba88b5e48503204468322720daa0f36ef0ce699d 100644 --- a/crates/project/src/lsp_store.rs +++ b/crates/project/src/lsp_store.rs @@ -699,6 +699,9 @@ impl LocalLspStore { anyhow::Ok(()) })??; } + "workspace/didChangeConfiguration" => { + // Ignore payload since we notify clients of setting changes unconditionally, relying on them pulling the latest settings. + } _ => log::warn!("unhandled capability registration: {reg:?}"), } }