pope410211 / TIY-Assignments

0 stars 0 forks source link

Prioritize Something #6

Open pope410211 opened 9 years ago

pope410211 commented 9 years ago
I can prioritize tasks so that I can do them in order of most important to least important.
$> todo ls
[ ] 1) Remember the milk
[ ] 2) Have Cake
[ ] 3) Complete JavaScript definitions

$> todo priority
usage: todo priority <task#> <"!", "/", "0">

$> todo priority 3 !
Prioritized: Complete JavaScript definitions

$> todo priority 1 /
Prioritized: Remember the milk

$> todo priority 2 0
Prioritized: Have Cake

$> todo ls
[ ] 1) Complete JavaScript definitions
[ ] 2) Remember the milk
[ ] 3) Have Cake