fix: Resolve filter parsing and default directory errors

Co-authored-by: aider (openai/andrew/openrouter/sonoma-sky-alpha) <aider@aider.chat>
This commit is contained in:
Andrew Phillips
2025-09-10 16:15:51 -03:00
parent 9bade07938
commit 71fa20ebb3
3 changed files with 17 additions and 8 deletions

View File

@@ -1,6 +1,6 @@
WHITESPACE = _{ " " | "\t" | "\n" | "\r" }
//! This Pest grammar defines the syntax for filter chains used in the Keep application.
#! This Pest grammar defines the syntax for filter chains used in the Keep application.
// Main entry point for parsing multiple filters separated by pipes
filters = { SOI ~ filter ~ (pipe ~ filter)* ~ EOI }