Package: hledger
Severity: normal
X-Debbugs-Cc: [email protected]
Please package 1.42 or newer, because it adds the following
capabilities to CSV importation, and this basic functionality allows
the construction of significantly more useful rules:
Multiple matchers
When an if block has multiple matchers, each on its own line,
* By default they are OR'd (any of them can match).
* Matcher lines beginning with & (or &&, since 1.42) are AND'ed with the
matcher above (all in the AND'ed group must match).
* Matcher lines beginning with & ! (since 1.41, or && !, since 1.42) are
first negated and then AND'ed with the matcher above.
You can also combine multiple matchers one the same line separated
by && (AND) or && ! (AND NOT). Eg %description amazon && %date
2025-01-01 will match only when the description field contains
"amazon" and the date field contains "2025-01-01". Added in 1.42.
Regards,
Nicholas