在 Taskwarrior 中使用 "add" 命令添加注释
Add an annotation with "add" command in Taskwarrior
我可以在 Taskwarrior 中创建任务时添加注释吗?
task add Description annotation:Anno
通常我必须用两个命令来完成
task add Description
task 1 annotate Anno
无法使用添加命令作为 documentation 状态:
You cannot add annotations while creating a task because it interferes with the task description.
一个可能的解决方法是脚本请求注释:
#!/bin/bash
set -e
task add $@
ID=$(task +LATEST ids)
read -p "Annotation: " ANNOTATION
task $ID annotate $ANNOTATION
我可以在 Taskwarrior 中创建任务时添加注释吗?
task add Description annotation:Anno
通常我必须用两个命令来完成
task add Description
task 1 annotate Anno
无法使用添加命令作为 documentation 状态:
You cannot add annotations while creating a task because it interferes with the task description.
一个可能的解决方法是脚本请求注释:
#!/bin/bash
set -e
task add $@
ID=$(task +LATEST ids)
read -p "Annotation: " ANNOTATION
task $ID annotate $ANNOTATION