feat(core): Expand filtering into pipeline supporting multiple text search modes.

Modes include: exact match, smart-case, and regular expressions.
This commit is contained in:
2026-03-13 22:55:47 -04:00
parent 6187b83f26
commit 6a4cc85285
10 changed files with 1352 additions and 10 deletions

View File

@@ -1,2 +1,6 @@
pub mod exact;
pub mod filter;
pub mod navigation;
pub mod pipeline;
pub mod regex_filter;
pub mod strategy;