commit 3465cdd255db647b3603bc089a0607598f89f75d from: Sven M. Hallberg date: Tue Dec 2 19:58:13 2025 UTC 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. commit - 6fd7adae9768592024bdc76eefd111ea87b404c8 commit + 3465cdd255db647b3603bc089a0607598f89f75d blob - 5adffabe31c23a01307f347b9b2303ec9b58b3a8 blob + 223edcd797d89dbf71766c34fc060468be250e8d --- 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 = "" }