You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Modify taskwarrior block to support more general filter instead of filter_tags
This deprecates `filter_tags`. `filter_tags` prepended with '+' and
concatenated them to build `filter`.
e.g.
filter_tags = [ "tag1", "tag2"]
becomes
filter = "+tag1 +tag2"
`interval` | Update interval, in seconds. | No | `600` (10min)
1333
1333
`warning_threshold` | The threshold of pending (or started) tasks when the block turns into a warning state. | No | `10`
1334
1334
`critical_threshold` | The threshold of pending (or started) tasks when the block turns into a critical state. | No | `20`
1335
-
`filter_tags` | A list of tags a task has to have before its counted as a pending task. | No | ```<empty>```
1335
+
`filter_tags` | Deprecated in favour of `filter`. A list of tags a task has to have before its counted as a pending task. | No | ```<empty>```
1336
+
`filter` | A filter that a task has to match to be counted as a pending task. | No | ```<empty```
1336
1337
`format` | A string to customise the output of this block. See below for available placeholders. Text may need to be escaped, refer to [Escaping Text](#escaping-text). | No | `"{count}"`
1337
1338
`format_singular` | Same as `format` but for when exactly one task is pending. | No | `"{count}"`
1338
1339
`format_everything_done` | Same as `format` but for when all tasks are completed. | No | `"{count}"`
0 commit comments