about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--handle.c3
-rw-r--r--ui.c2
2 files changed, 3 insertions, 2 deletions
diff --git a/handle.c b/handle.c
index b5cba26..0694764 100644
--- a/handle.c
+++ b/handle.c
@@ -1274,7 +1274,8 @@ static void handlePrivmsg(struct Message *msg) {
 		colorMentions(buf, sizeof(buf), id, msg);
 		uiFormat(
 			id, heat, tagTime(msg),
-			"%s\35\3%d* jan %s\17\35\t%s%s",
+			"%s\35\3%d*\17\35 jan %s\3%d%s\17\35\t%s%s",
+			(highlight ? "\26" : ""), hash(msg->user),
 			(highlight ? "\26" : ""), hash(msg->user), msg->nick,
 			buf, msg->params[1]
 		);
diff --git a/ui.c b/ui.c
index 2789bd7..5282407 100644
--- a/ui.c
+++ b/ui.c
@@ -770,7 +770,7 @@ static void inputUpdate(void) {
 		styleInput.fg = LightGray;
 		skip = notice;
 	} else if (action) {
-		prefix = "* "; suffix = " ";
+		prefix = "* jan "; suffix = " ";
 		stylePrompt.attr |= Italic;
 		styleInput.attr |= Italic;
 		skip = action;