在一行中添加其他人依赖的任务

Adding tasks that others depend on in one line

有没有办法添加一个任务并在一行中指定其他任务依赖于这个任务??例如,我基本上是在尝试这样做:

task add proj:one Base task         # task 1
task add proj:one subtask1 blocks:1 # task 2
task add proj:one subtask2 blocks:2 # task 3

我知道没有 blocks 描述符,但如果有或类似的东西就好了。否则,我的工作流程是

task add proj:one Base task         # task 1
task add proj:one subtask1          # task 2
task 1 modify depends:2

task add proj:one subtask2          # task 3
task 1 modify depends:3

我知道我能做到:

task 1 modify depends:2,3

但是我随着时间的推移添加了这些子任务,所以每次都是两行。有什么办法可以合二为一吗?

我找到了一个解决方案,目前效果非常好并且完全符合我的期望:https://gist.github.com/wbsch/a2f7264c6302918dfb30

这是一个完全按照我的描述添加 blocks: 属性的钩子。感谢社区!