aboutsummaryrefslogtreecommitdiff
path: root/src/utils/globber.rs
Commit message (Collapse)AuthorAgeFilesLines
* Add debug glob command for testing file matching魏曹先生2025-12-021-0/+24
| | | | | | The new `jv _glob` command allows testing glob patterns against both local files and sheet contents. It helps verify how the globber matches files in different contexts.
* Add glob pattern matching utility魏曹先生2025-12-011-0/+239
This implements a Globber struct that can match files and directories using wildcard patterns (* and ?). It supports relative paths, home directory expansion with ~, and cross-platform path separators. The implementation includes pattern matching with backtracking for complex patterns and handles different directory prefixes (current, user home, and root).