diff options
| author | Grant Ammons <gammons@gmail.com> | 2017-08-02 19:04:15 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-08-02 19:04:15 -0400 |
| commit | c22022d228b19f89aa84f8a7514b10c789ebea95 (patch) | |
| tree | a018c42068b24359fa645903a48cdb6c6f9d43df /todo.go | |
| parent | ca8ee26484fa425b8228417534aca557bc7f04f6 (diff) | |
| parent | 810399690f556f4c4eac53d041e1a86d91b890e6 (diff) | |
Merge pull request #82 from stuartskelton/Add_list_completed
Add list completed
Diffstat (limited to 'todo.go')
| -rw-r--r-- | todo.go | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -58,6 +58,14 @@ func usage() { yellow.Println("\ttodo agenda") fmt.Println("\tlists all todos where the due date is today or in the past\n") + fmt.Println(" todo l completed (tod|today|this week)") + cyan.Println(" Filtering by date:\n") + + yellow.Println("\ttodo l completed (tod|today)") + fmt.Println("\tlists all todos that were completed today\n") + yellow.Println("\ttodo l completed this week") + fmt.Println("\tlists all todos that were completed this week\n") + cyan.Println(" Grouping:") fmt.Println(" You can group todos by context or project.") yellow.Println("\ttodo l by c") |
