Don't report a buffer when it doesn't contain any matches
This commit is contained in:
parent
2611b5449f
commit
29e035a70d
1 changed files with 5 additions and 2 deletions
|
@ -2205,8 +2205,11 @@ impl Project {
|
|||
snapshot.anchor_before(range.start)
|
||||
..snapshot.anchor_after(range.end)
|
||||
})
|
||||
.collect();
|
||||
worker_matched_buffers.insert(buffer.clone(), buffer_matches);
|
||||
.collect::<Vec<_>>();
|
||||
if !buffer_matches.is_empty() {
|
||||
worker_matched_buffers
|
||||
.insert(buffer.clone(), buffer_matches);
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue