wip: "full" finder

This commit is contained in:
2026-06-17 10:38:22 -04:00
parent 54c92ed1fc
commit ea0dbab5f7
2 changed files with 9 additions and 9 deletions

View File

@@ -205,7 +205,7 @@ process_dir :: proc(pool: ^WalkerPool, item: WorkItem) {
if entry.name == ".git" do continue
is_dir := entry.type == .DIR
is_regular := entry.type == .REG || entry.type == .UNKNOWN
is_regular := entry.type == .REG || entry.type == .UNKNOWN || entry.type == .LNK
if pool.exclude_gi != nil && is_ignored(pool.exclude_gi, entry.name, is_dir) {
continue