diff options
author | Arun Isaac | 2021-09-26 23:24:18 +0530 |
---|---|---|
committer | Arun Isaac | 2021-09-26 23:24:18 +0530 |
commit | 0fc8d16049dad035d58d37d71561976b5434babb (patch) | |
tree | 9511965cfae01e59163fad9647bcb34a56e9993e /gnbug | |
parent | 80c4ca88df30277cae30ded1c1691c0231bad8b9 (diff) | |
download | gn-gemtext-0fc8d16049dad035d58d37d71561976b5434babb.tar.gz |
gnbug: Print tasks.
* gnbug (print-issue): If the issue has tasks, print the fraction
completed.
Diffstat (limited to 'gnbug')
-rwxr-xr-x | gnbug | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -332,6 +332,12 @@ List recent updates. (cyan (issue-created-relative-date issue)) " by " (cyan (issue-creator issue)))) + (unless (zero? (issue-tasks issue)) + (display (string-append (cyan "; ") + (number->string (issue-completed-tasks issue)) + "/" + (number->string (issue-tasks issue)) + " tasks done"))) (newline)) (define gnbug-list |