diff --git a/crates/project/src/worktree_store.rs b/crates/project/src/worktree_store.rs index a966861630652a83d421988f265fcde17f950182..e0b71a86c0b556ded7d1a1e66ec50b1fcc5584c9 100644 --- a/crates/project/src/worktree_store.rs +++ b/crates/project/src/worktree_store.rs @@ -413,6 +413,9 @@ impl WorktreeStore { if skip_entries.contains(&entry.id) { continue; } + if entry.is_fifo { + continue; + } let matched_path = if include_root { let mut full_path = PathBuf::from(snapshot.root_name());