我可以在创建任务时在 Taskwarrior 中为任务添加注释吗?
task add Description annotation:Anno
Normaly 我必须用两个命令来做
task add Description
task 1 annotate Anno
我可以在创建任务时在 Taskwarrior 中为任务添加注释吗?
task add Description annotation:Anno
Normaly 我必须用两个命令来做
task add Description
task 1 annotate Anno
正如文档所述,使用 add 命令是不可能的:
您不能在创建任务时添加注释,因为它会干扰任务描述。
一个可能的解决方法是要求注释的脚本:
#!/bin/bash
set -e
task add $@
ID=$(task +LATEST ids)
read -p "Annotation: " ANNOTATION
task $ID annotate $ANNOTATION