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 30be95a commit 6f28325Copy full SHA for 6f28325
crates/rust-analyzer/src/config.rs
@@ -673,8 +673,7 @@ impl Config {
673
FilesConfig {
674
watcher: match self.data.files_watcher.as_str() {
675
"notify" => FilesWatcher::Notify,
676
- // A fallback for the file watcher, defaulting to use the file watcher client
677
- _ => FilesWatcher::Client,
+ "client" | _ => FilesWatcher::Client,
678
},
679
exclude: self.data.files_excludeDirs.iter().map(|it| self.root_path.join(it)).collect(),
680
}
0 commit comments