Ignore .svn version control files (#10536)

Co-authored-by: Simran Kedia <simk@fb.com>
This commit is contained in:
Simran Kedia 2024-04-21 04:00:30 +01:00 committed by GitHub
parent efae85ec20
commit 26d9610e78
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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