mirror of
https://github.com/zed-industries/zed.git
synced 2024-12-28 11:29:25 +00:00
Ignore diagnostics received for invisible worktrees
This commit is contained in:
parent
d0d6916167
commit
c613b22619
1 changed files with 4 additions and 0 deletions
|
@ -1218,6 +1218,10 @@ impl Project {
|
|||
let (worktree, relative_path) = self
|
||||
.find_local_worktree(&abs_path, cx)
|
||||
.ok_or_else(|| anyhow!("no worktree found for diagnostics"))?;
|
||||
if !worktree.read(cx).is_visible() {
|
||||
return Ok(());
|
||||
}
|
||||
|
||||
let project_path = ProjectPath {
|
||||
worktree_id: worktree.read(cx).id(),
|
||||
path: relative_path.into(),
|
||||
|
|
Loading…
Reference in a new issue