Now you can take a note with vim for each task if necessary:
task note 1
And you may also filter them by UDA:
task note.isnt:
I stole this from https://www.reddit.com/r/taskwarrior/comments/k0ubxe/comment/gdmqcca
# append this to your ~/.taskrc | |
uda.note.type=date | |
uda.note.label=Note | |
alias.note=execute "${HOME}/.task/hooks/note"uda.note.type=date |
Now you can take a note with vim for each task if necessary:
task note 1
And you may also filter them by UDA:
task note.isnt:
I stole this from https://www.reddit.com/r/taskwarrior/comments/k0ubxe/comment/gdmqcca
#!/bin/env bash | |
NOTE_DIR=${HOME}/.task/notes | |
mkdir -p notes/ | |
if [[ $# -eq 1 ]]; then | |
uuid=$(task _get $1.uuid) | |
note="${NOTE_DIR}/${uuid}.md" | |
vim $note || exit 1 | |
task ${uuid} mod note:$(date --iso-8601=seconds) >/dev/null | |
else | |
vim ${NOTE_DIR}/buffer | |
fi |