1
0
mirror of https://github.com/helix-editor/helix synced 2024-11-10 10:34:45 +01:00

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

@ -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;
}