mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-11-15 09:27:27 +00:00
fix recursive watch
This commit is contained in:
parent
2a1afad3ed
commit
eeed6cf53b
1 changed files with 8 additions and 3 deletions
|
@ -91,9 +91,14 @@ impl Watcher {
|
|||
match res {
|
||||
Ok(entry) => {
|
||||
if entry.path().is_dir() {
|
||||
match self.watcher.watch(dir, RecursiveMode::NonRecursive) {
|
||||
Ok(()) => log::debug!("watching \"{}\"", dir.display()),
|
||||
Err(e) => log::warn!("could not watch \"{}\": {}", dir.display(), e),
|
||||
match self
|
||||
.watcher
|
||||
.watch(entry.path(), RecursiveMode::NonRecursive)
|
||||
{
|
||||
Ok(()) => log::debug!("watching \"{}\"", entry.path().display()),
|
||||
Err(e) => {
|
||||
log::warn!("could not watch \"{}\": {}", entry.path().display(), e)
|
||||
}
|
||||
}
|
||||
}
|
||||
if emit_for_contents && entry.depth() > 0 {
|
||||
|
|
Loading…
Reference in a new issue