Acting on Items
Items in wdid can be in one of four states:
waiting: items to be worked on (default).
skipped: items that have been skipped/dropped and no longer are waiting to be done.
bumped: items that have been bumped forward (carried over) to another time.
done: items that have been completed.
It's possible to move an item between states, through one of four actions:
Do
Items start in a waiting state, and then can be moved to done with do $item_id
, and be marked with a green tick:
Note here that we can use the item ID prefix, similarly to how we can view with a prefix.
Skip
Items can be moved to skipped with skip
, and be marked with a red x:
Bump
Items can be bumped or carried forward with bump
. This will return a new 'waiting' item, linked to the old one:
The old item gets marked as bumped, have a reference to the new item, and be marked with a yellow ⇒:
Times can also be passed to the bump
command to bump to a paricular time:
Remove
Items can also be hard deleted. Gone forever.
Last updated