diff options
author | Arun Isaac | 2022-06-25 14:25:46 +0530 |
---|---|---|
committer | Arun Isaac | 2022-06-25 14:25:46 +0530 |
commit | 8b735e1a5b1023c465dd1ed3d0fff86b15529023 (patch) | |
tree | f0eb7d80096b3a6bc73e3ad844423d9f8b50b747 | |
parent | b153b85841d779c9f5e418a9eec4d979872b450d (diff) | |
download | tissue-8b735e1a5b1023c465dd1ed3d0fff86b15529023.tar.gz tissue-8b735e1a5b1023c465dd1ed3d0fff86b15529023.tar.lz tissue-8b735e1a5b1023c465dd1ed3d0fff86b15529023.zip |
bin: Underline issue title when printing.
* bin/tissue (print-issue): Underline issue title.
-rwxr-xr-x | bin/tissue | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -84,7 +84,7 @@ to run tissue." (define (print-issue issue-number issue) "Print ISSUE with number ISSUE-NUMBER." (let ((number-of-posts (length (issue-posts issue)))) - (display (colorize-string (issue-title issue) 'MAGENTA)) + (display (colorize-string (issue-title issue) 'MAGENTA 'UNDERLINE)) ;; Highlight keywords containing "bug" or "critical" as whole ;; words in red. Else, highlight in blue. (unless (null? (issue-keywords issue)) |