We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44051de commit 5ed2685Copy full SHA for 5ed2685
unison-cli/src/Unison/CommandLine/OutputMessages.hs
@@ -307,13 +307,13 @@ notifyNumbered = \case
307
Nothing -> []
308
Just (HistoryComment {author, subject, content}) ->
309
Monoid.whenM prefixSpacer [""]
310
- <> [P.bold (P.text $ "⊙ " <> author <> " 💬")]
311
- <> [ P.indent (P.blue " > ") (P.yellow $ P.text subject)
+ <> [(P.text "⊙ " <> P.bold (P.text (author <> " 💬")))]
+ <> [ P.indent (P.blue " ┃ ") (P.text subject)
312
]
313
<> Monoid.whenM
314
(not (Text.null content))
315
- [ (P.blue " > "),
316
- P.indent (P.blue " > ") (P.text content)
+ [ (P.blue " ┃ "),
+ P.indent (P.blue " ┃ ") (P.text content)
317
318
<> [ ""
319
0 commit comments