period expressions: allow "until", like Ledger (synonym for "to")

This commit is contained in:
Simon Michael 2020-04-08 14:26:38 -07:00
parent 34dd7bf053
commit 10f8dc84a5

View File

@ -1091,7 +1091,7 @@ fromdatespanp rdate = do
todatespanp :: Day -> TextParser m DateSpan
todatespanp rdate = do
choice [string' "to", string' "-"] >> skipMany spacenonewline
choice [string' "to", string' "until", string' "-"] >> skipMany spacenonewline
DateSpan Nothing . Just . fixSmartDate rdate <$> smartdate
justdatespanp :: Day -> TextParser m DateSpan