Ignore .svn version control files (#10536)

Co-authored-by: Simran Kedia <simk@fb.com>
pull/10538/head
Simran Kedia 7 months ago committed by GitHub
parent efae85ec20
commit 26d9610e78
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -51,7 +51,7 @@ fn filter_picker_entry(entry: &DirEntry, root: &Path, dedup_symlinks: bool) -> b
// in our picker. // in our picker.
if matches!( if matches!(
entry.file_name().to_str(), entry.file_name().to_str(),
Some(".git" | ".pijul" | ".jj" | ".hg") Some(".git" | ".pijul" | ".jj" | ".hg" | ".svn")
) { ) {
return false; return false;
} }

Loading…
Cancel
Save