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 b5a7cb3 commit a1773f8Copy full SHA for a1773f8
crates/rust-analyzer/src/config.rs
@@ -120,7 +120,7 @@ impl Config {
120
set(value, "/withSysroot", &mut self.with_sysroot);
121
set(value, "/featureFlags/lsp.diagnostics", &mut self.publish_diagnostics);
122
set(value, "/lruCapacity", &mut self.lru_capacity);
123
- self.files.watcher = match get::<&str>(value, "/files/watcher") {
+ self.files.watcher = match get(value, "/files/watcher") {
124
Some("client") => FilesWatcher::Client,
125
Some("notify") | _ => FilesWatcher::Notify
126
};
0 commit comments