diff options
-rw-r--r-- | app.go | 4 | ||||
-rw-r--r-- | doc/senpai.1.scd | 4 |
2 files changed, 4 insertions, 4 deletions
@@ -697,13 +697,13 @@ func (app *App) formatMessage(ev irc.MessageEvent) (buffer string, line ui.Line, body := strings.TrimSuffix(ev.Content, "\x01") if isNotice && isAction { c := ircColorSequence(ui.IdentColor(ev.User)) - body = fmt.Sprintf("(%s%s\x0F:%s)", c, ev.User, body[7:]) + body = fmt.Sprintf("%s%s\x0F:%s", c, ev.User, body[7:]) } else if isAction { c := ircColorSequence(ui.IdentColor(ev.User)) body = fmt.Sprintf("%s%s\x0F%s", c, ev.User, body[7:]) } else if isNotice { c := ircColorSequence(ui.IdentColor(ev.User)) - body = fmt.Sprintf("(%s%s\x0F: %s)", c, ev.User, body) + body = fmt.Sprintf("%s%s\x0F: %s", c, ev.User, body) } line = ui.Line{ diff --git a/doc/senpai.1.scd b/doc/senpai.1.scd index d3781e9..52f8568 100644 --- a/doc/senpai.1.scd +++ b/doc/senpai.1.scd @@ -58,8 +58,8 @@ of messages are in the timeline: nickname, - Status messages, such as joins, parts, topics and name lists, are shown with two dashes (*--*), -- Notices are shown with an asterisk (*\**) followed by the message in - parenthesis. +- Notices are shown with an asterisk (*\**) followed by the user nickname and a + colon # KEYBOARD SHORTCUTS |