@@ -119,6 +119,7 @@ data Command
119119 | ListWaiting
120120 | ListOverdue
121121 | ListRepeating
122+ | ListRecurring
122123 | ListNoTag
123124 | ListWithTag [Text]
124125 | CountFiltered (Maybe [Text])
@@ -481,6 +482,9 @@ commandParser conf =
481482<> command "repeating" (toParserInfo (pure ListRepeating)
482483"List all repeating tasks by priority desc")
483484485+<> command "recurring" (toParserInfo (pure ListRecurring)
486+"List all recurring tasks by priority desc")
487+484488<> command "new" (toParserInfo (pure ListNew)
485489 ("List " <> numTasks
486490<> " newest open tasks by creation UTC desc"))
@@ -843,6 +847,7 @@ executeCLiCommand conf now connection cmd =
843847ListOpen -> openTasks conf now connection
844848ListOverdue -> overdueTasks conf now connection
845849ListRepeating -> listRepeating conf now connection
850+ListRecurring -> listRecurring conf now connection
846851ListReady -> listReady conf now connection
847852ListWaiting -> listWaiting conf now connection
848853ListDone -> doneTasks conf now connection