summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app.go4
-rw-r--r--doc/senpai.1.scd4
2 files changed, 4 insertions, 4 deletions
diff --git a/app.go b/app.go
index ef93e51..aebf157 100644
--- a/app.go
+++ b/app.go
@@ -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