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.
workspace/didChangeConfiguration
1 parent 1558355 commit f0f22faCopy full SHA for f0f22fa
crates/emmylua_ls/src/server/message_processor.rs
@@ -30,10 +30,7 @@ impl ServerMessageProcessor {
30
Message::Response(_) => true,
31
// Allow specific notifications
32
Message::Notification(notify) => {
33
- matches!(
34
- notify.method.as_str(),
35
- "workspace/didChangeConfiguration" | "$/cancelRequest" | "initialized"
36
- )
+ matches!(notify.method.as_str(), "$/cancelRequest" | "initialized")
37
}
38
// Don't process other requests during initialization
39
Message::Request(_) => false,
0 commit comments