Commit Diff
- Commit:
3465cdd255db647b3603bc089a0607598f89f75d- From:
- Sven M. Hallberg <pesco@khjk.org>
- Date:
- Message:
- let postponed state take precedence over urgent I have a hard time imagining a viable use case for the old way around. On the other hand, this way allows items that are urgent as soon as they become active. Think things that must be done on (but not before) a certain date.
- Actions:
- Patch | Tree
--- painlist +++ painlist @@ -184,7 +184,7 @@ awk ' #if(item && (up || urg)) { if(item) { if(plus) plus = " " plus - printf("%5.1f %s %s%s\n", pain, urg?"!":up?" ":"^", item, plus) + printf("%5.1f %s %s%s\n", pain, !up?"^":urg?"!":" ", item, plus) } item = "" }
