Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions src/fs/dir.rs
Original file line number Diff line number Diff line change
Expand Up @@ -129,13 +129,6 @@ impl<'dir, 'ig> Files<'dir, 'ig> {
continue;
}

// Also hide _prefix files on Windows because it's used by old applications
// as an alternative to dot-prefix files.
#[cfg(windows)]
if !self.dotfiles && filename.starts_with('_') {
continue;
}

if self.git_ignoring {
let git_status = self.git.map(|g| g.get(&path, false)).unwrap_or_default();
if git_status.unstaged == GitStatus::Ignored {
Expand Down