Skip to content

Commit 5ed2685

Browse files
committed
Use box-drawing characters
1 parent 44051de commit 5ed2685

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

unison-cli/src/Unison/CommandLine/OutputMessages.hs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -307,13 +307,13 @@ notifyNumbered = \case
307307
Nothing -> []
308308
Just (HistoryComment {author, subject, content}) ->
309309
Monoid.whenM prefixSpacer [""]
310-
<> [P.bold (P.text $ "" <> author <> " 💬")]
311-
<> [ P.indent (P.blue " > ") (P.yellow $ P.text subject)
310+
<> [(P.text "" <> P.bold (P.text (author <> " 💬")))]
311+
<> [ P.indent (P.blue " ") (P.text subject)
312312
]
313313
<> Monoid.whenM
314314
(not (Text.null content))
315-
[ (P.blue " > "),
316-
P.indent (P.blue " > ") (P.text content)
315+
[ (P.blue " "),
316+
P.indent (P.blue " ") (P.text content)
317317
]
318318
<> [ ""
319319
]

0 commit comments

Comments
 (0)