diff --git a/crates/project/src/lsp_store.rs b/crates/project/src/lsp_store.rs index ad24c94a45..ba88b5e485 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:?}"), } }