Update README.md
This commit is contained in:
21
README.md
21
README.md
@@ -3,8 +3,19 @@
|
|||||||
A CLI to-do app written in Rust.
|
A CLI to-do app written in Rust.
|
||||||
|
|
||||||
## List of Commands
|
## List of Commands
|
||||||
- [ ] `todo list`        - lists all the tasks (should be numbered)
|
| Implemented | Command | Description |
|
||||||
- [ ] `todo add {}`       - adds {} to the tasks
|
|-------------|---------|-------------|
|
||||||
- [ ] `todo did {number}`    - mark a numbered task as completed
|
| [ ] | `todo list` | lists all the incomplete tasks (should be numbered) |
|
||||||
- [ ] `todo undid {number}`   - mark a numbered task as incomplete
|
| [ ] | `todo list --done` | lists all the completed tasks |
|
||||||
- [ ] `todo done`        - lists all the completed tasks
|
| [ ] | `todo list --all` | lists all the completed tasks |
|
||||||
|
| [ ] | `todo list --category {_category_}` | lists all the tasks of the category \_category\_ |
|
||||||
|
| [ ] | `todo add {_task_}` | adds \_task\_ to the tasks |
|
||||||
|
| [ ] | `todo add --category {_category_} {_task_}` | adds \_task\_ to the tasks with category \_category\_ |
|
||||||
|
| [ ] | `todo did {_number_}` | mark a task with number \_number\_ as completed |
|
||||||
|
| [ ] | `todo undid {_number_}` | mark a task with number \_number\_ as not completed |
|
||||||
|
| [ ] | `todo update --category {new_category} {}` | updates the category of existing task |
|
||||||
|
|
||||||
|
__Example of todo lists__ <br>
|
||||||
|
| __ID__ | __Name__ | __category__ |
|
||||||
|
| -------| ---------| --------------|
|
||||||
|
| 5 | Finish Todo App | side-project |
|
||||||
|
|||||||
Reference in New Issue
Block a user