taskwarrior

Taskwarrior server

Using with vim

Install taskwiki

1
NeoBundle 'tbabej/taskwiki'

Install tasklib

1
sudo pip install --upgrade git+git://github.com/tbabej/tasklib@develop

List tasks

1
task list

TAGS

Modify task tags

1
task modify <task-id> +newTag -removeTag

Urgency

Urgency coefficients

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
urgency.user.tag.next.coefficient          15.0 # +next tag
urgency.due.coefficient 12.0 # overdue or near due date
urgency.blocking.coefficient 8.0 # blocking other tasks
urgency.uda.priority.H.coefficient 6.0 # high Priority
urgency.uda.priority.M.coefficient 3.9 # medium Priority
urgency.uda.priority.L.coefficient 1.8 # low Priority
urgency.active.coefficient 4.0 # already started tasks
urgency.scheduled.coefficient 4.0 # scheduled tasks
urgency.age.coefficient 2.0 # coefficient for age
urgency.annotations.coefficient 1.0 # has annotations
urgency.tags.coefficient 1.0 # has tags
urgency.project.coefficient 1.0 # assigned to any project
urgency.blocked.coefficient -5.0 # blocked by other tasks
urgency.waiting.coefficient -3.0 # waiting task
urgency.user.project.<project>.coefficient 5.0 # specific project
urgency.user.tag.<tag>.coefficient 5.0 # specific tag
urgency.uda.<name>.coefficient 5.0 # specific UDA

Comments

⬆︎TOP