diff options
| author | Grant Ammons <gammons@gmail.com> | 2016-05-03 14:39:52 -0400 |
|---|---|---|
| committer | Grant Ammons <gammons@gmail.com> | 2016-05-03 14:39:52 -0400 |
| commit | 82dbd4a62ac62d97a61386696d992e3400167d97 (patch) | |
| tree | 49f16375ab6b3e4ff045123beb53b516aeb0eff6 /todo.go | |
| parent | ea7732efeba8fbb987117394055c11b574fc1649 (diff) | |
Add agenda function
Diffstat (limited to 'todo.go')
| -rw-r--r-- | todo.go | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -42,7 +42,7 @@ func usage() { blueBold.Println("\nListing todos") fmt.Println(" When listing todos, you can filter and group the output.\n") - fmt.Println(" todo l due (tod|today|tom|tomorrow|overdue|this week|next week|mon|tue|wed|thu|fri|sat|sun)") + fmt.Println(" todo l due (agenda|tod|today|tom|tomorrow|overdue|this week|next week|mon|tue|wed|thu|fri|sat|sun)") fmt.Println(" todo l overdue") cyan.Println(" Filtering by date:\n") @@ -54,6 +54,8 @@ func usage() { fmt.Println("\tlists all todos due monday\n") yellow.Println("\ttodo l overdue") fmt.Println("\tlists all todos where the due date is in the past\n") + yellow.Println("\ttodo l agenda") + fmt.Println("\tlists all todos where the due date is today or in the past\n") cyan.Println(" Grouping:") fmt.Println(" You can group todos by context or project.") |
