summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--handle.c14
1 files changed, 9 insertions, 5 deletions
diff --git a/handle.c b/handle.c
index e2169e5..88c17b7 100644
--- a/handle.c
+++ b/handle.c
@@ -222,16 +222,20 @@ static void handlePrivmsg(char *prefix, char *params) {
 	shift(&params);
 	char *mesg = shift(&params);
 	tabTouch(nick);
+	bool self = !strcmp(user, chat.user);
+	bool ping = !strncasecmp(mesg, chat.nick, strlen(chat.nick));
+	if (ping) uiBeep();
 	if (mesg[0] == '\1') {
 		strsep(&mesg, " ");
 		char *action = strsep(&mesg, "\1");
-		uiFmt("* \3%d%s\3 %s", color(user), nick, action);
+		uiFmt(
+			"* \3%d%s\3%s %s",
+			color(user), nick, (self ? "15" : ""), action
+		);
 	} else {
-		bool ping = !strncasecmp(mesg, chat.nick, strlen(chat.nick));
-		if (ping) uiBeep();
 		uiFmt(
-			"<%s\3%d%s\17> %s",
-			(ping ? "\26" : ""), color(user), nick, mesg
+			"<%s\3%d%s\17>\3%s %s",
+			(ping ? "\26" : ""), color(user), nick, (self ? "15" : ""), mesg
 		);
 	}
 }
d colspan='3' class='logmsg'> Missed this because operator(7) just doesn't list it, oddly. 2020-12-30Add postfix $ operator to bitJune McEnroe 2020-12-29Add make lexerJune McEnroe This is kind of a mess and needs to be cleaned up against more careful reading of the make grammar. 2020-12-29Clean up C lexerJune McEnroe This ordering of rules feels much cleaner. 2020-12-29Clean up hilex code somewhatJune McEnroe 2020-12-29Match lex/yacc %% %{ %} lines as MacroJune McEnroe 2020-12-29Match top-level C definitions as IdentifierTagJune McEnroe 2020-12-29Match C type declarations as IdentifierTagJune McEnroe 2020-12-29Match function-like macro definitions as IdentifierTagJune McEnroe 2020-12-29Reconfigure C macro start conditionsJune McEnroe 2020-12-29Document HTML class namesJune McEnroe 2020-12-29Rename Tag class to IdentifierTagJune McEnroe 2020-12-29Change HTML class from hi to hilexJune McEnroe You can tell I was just copying the HTML code huh. 2020-12-29Add hilex HTML outputJune McEnroe