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
Output from a hook script is a combination of a JSON-formatted task and text. Just as the JSON for a task must occupy a single line, so must a single feedback message. Feedback text is optional for a successful hook script, but required for a failing script. If provided it will be displayed by Taskwarrior according to the verbosity setting.
Here is sample output from a hypothetical spell-checking hook script:
{"description":"Buy some milk","entry":"20141118T050231Z","status":"pending","uuid":"a360fc44-315c-4366-b70c-ea7e7520b749"}
Spell checking found no errors.
The output is a single line JSON object which represents an optionally modified task, and a single line of feedback text to be displayed.
There may only be one line of JSON, and it must be for the same task that was provided as input.
taskpirate, adding as it does an abstraction layer between tasklib and hooks, does not seem to have a (documented) mechanism for sending feedback text from a hook back to taskpirate, together with JSON. That is, it has no (documented) mechanism for fully utilising TaskWarrior's hook support. This should probably be addressed.
The text was updated successfully, but these errors were encountered:
For failing hooks, a workaround is to do something within the hook like:
print("Hook failed!")
sys.exit(1)
If this is the intended approach for handling failing hooks with taskpirate, then it should ideally be mentioned in the taskpirate docs, and then this issue closed as fixed.
Alternatively, if another approach is intended, then that other approach should be documented/implemented.
Thank you for making/maintaining
taskpirate
!Per https://taskwarrior.org/docs/hooks.html (my emphasis):
tasklib
does not explicitly support feedback text yet, but in some ways that is less of an issue, as it interfaces with TaskWarrior more directly.taskpirate
, adding as it does an abstraction layer betweentasklib
and hooks, does not seem to have a (documented) mechanism for sending feedback text from a hook back to taskpirate, together with JSON. That is, it has no (documented) mechanism for fully utilising TaskWarrior's hook support. This should probably be addressed.The text was updated successfully, but these errors were encountered: