diff --git a/src/fs/dir.rs b/src/fs/dir.rs index 98dafa33e..74d09db4f 100644 --- a/src/fs/dir.rs +++ b/src/fs/dir.rs @@ -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 {