Skip to content

Commit 6f28325

Browse files
committed
fix
1 parent 30be95a commit 6f28325

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

crates/rust-analyzer/src/config.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -673,8 +673,7 @@ impl Config {
673673
FilesConfig {
674674
watcher: match self.data.files_watcher.as_str() {
675675
"notify" => FilesWatcher::Notify,
676-
// A fallback for the file watcher, defaulting to use the file watcher client
677-
_ => FilesWatcher::Client,
676+
"client" | _ => FilesWatcher::Client,
678677
},
679678
exclude: self.data.files_excludeDirs.iter().map(|it| self.root_path.join(it)).collect(),
680679
}

0 commit comments

Comments
 (0)