From d7a077eee63a26725662570c18ba0c2bb37d963a Mon Sep 17 00:00:00 2001 From: Adrien Thebo Date: Thu, 1 Sep 2022 18:49:36 -0700 Subject: [PATCH] task: refresh page (#8328) --- pages/common/task.md | 36 ++++++++++++++++++++++++------------ 1 file changed, 24 insertions(+), 12 deletions(-) diff --git a/pages/common/task.md b/pages/common/task.md index 9a6ec3c9b..5983ea46d 100644 --- a/pages/common/task.md +++ b/pages/common/task.md @@ -1,24 +1,36 @@ # task -> TODO list manager. -> More information: . +> Command-line to-do list manager. +> More information: . -- Add new task: +- Add a new task which is due tomorrow: -`task add {{thing_to_do}}` +`task add {{description}} due:{{tomorrow}}` -- List tasks: +- Update a task's priority: -`task list` +`task {{task_id}} modify priority:{{H|M|L}}` -- Mark task as completed: +- Complete a task: `task {{task_id}} done` -- Modify task: - -`task {{task_id}} modify {{new_thing_to_do}}` - -- Delete task: +- Delete a task: `task {{task_id}} delete` + +- List all open tasks: + +`task list` + +- List open tasks due before the end of the week: + +`task list due.before:{{eow}}` + +- Show a graphical burndown chart, by day: + +`task burndown.daily` + +- List all reports: + +`task reports`