在 Taskwarrior 中篩選未來計畫的任務

在 Taskwarrior 中篩選未來計畫的任務

我在 Taskwarrior 中的自訂報告設定如下:

report.custom.filter=status:pending

我想更改此設置,以便隱藏未來計劃的任務直到其開始日期。例如,代替:

username@hostname:~% task custom
ID PROJECT           TAGS    DUE DESCRIPTION
 9 Reading           next        Read Gödel, Escher, Bach 
10 Social            waiting 4mo Wish Alice a happy birthday          

其中任務 10 具有屬性scheduled:2018-01-01,我希望看到:

username@hostname:~% task custom
ID PROJECT           TAGS    DUE DESCRIPTION
 9 Reading           next        Read Gödel, Escher, Bach

然後任務 10 出現在 2018-01-01。

答案1

只需添加and +READY到過濾器即可。

report.custom.filter=status:pending and +READY

答案2

您可以為此使用預定或等待設定嗎?

https://taskwarrior.org/docs/using_dates.html

相關內容