HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

topydo — A to-do list application that uses the todo.txt format. More information: <https://github.com/topydo

Submitted by: @import:tldr-pages··
0
Viewed 0 times
thecommandtopydousesclithatlistapplication

Problem

How to use the topydo command: A to-do list application that uses the todo.txt format. More information: <https://github.com/topydo/topydo>.

Solution

topydo — A to-do list application that uses the todo.txt format. More information: <https://github.com/topydo/topydo>.

Add a to-do to a specific project with a given context:
topydo add "{{todo_message}} +{{project_name}} @{{context_name}}"


Add a to-do with a due date of tomorrow with a priority of A:
topydo add "(A) {{todo _message}} due:{{1d}}"


Add a to-do with a due date of Friday:
topydo add "{{todo_message}} due:{{fri}}"


Add a non-strict repeating to-do (next due = now + rec):
topydo add "water flowers due:{{mon}} rec:{{1w}}"


Add a strict repeating to-do (next due = current due + rec):
topydo add "{{todo_message}} due:{{2020-01-01}} rec:{{+1m}}"


Revert the last topydo command executed:
topydo revert

Code Snippets

Add a to-do to a specific project with a given context

topydo add "{{todo_message}} +{{project_name}} @{{context_name}}"

Add a to-do with a due date of tomorrow with a priority of `A`

topydo add "(A) {{todo _message}} due:{{1d}}"

Add a to-do with a due date of Friday

topydo add "{{todo_message}} due:{{fri}}"

Add a non-strict repeating to-do (next due = now + rec)

topydo add "water flowers due:{{mon}} rec:{{1w}}"

Add a strict repeating to-do (next due = current due + rec)

topydo add "{{todo_message}} due:{{2020-01-01}} rec:{{+1m}}"

Context

tldr-pages: common/topydo

Revisions (0)

No revisions yet.