From 2ae5b6b9ab2a528425c1c5265b04bb01a5246e29 Mon Sep 17 00:00:00 2001 From: Curtis McEnroe Date: Mon, 13 Aug 2018 13:49:03 -0400 Subject: Add /query, /part and /close Closing a channel before parting it is a bit weird, but if I send a PART on /close, it would get reopened again to show the part message. --- handle.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'handle.c') diff --git a/handle.c b/handle.c index 4d2d4b1..80ed1b4 100644 --- a/handle.c +++ b/handle.c @@ -122,12 +122,15 @@ static void handleJoin(char *prefix, char *params) { char *nick, *user, *chan; shift(prefix, &nick, &user, NULL, params, 1, 0, &chan); struct Tag tag = tagFor(chan); + if (isSelf(nick, user)) { + tabTouch(TAG_NONE, chan); + uiViewTag(tag); + } tabTouch(tag, nick); uiFmt( tag, "\3%d%s\3 arrives in \3%d%s\3", color(user), nick, color(chan), chan ); - if (isSelf(nick, user)) uiViewTag(tag); } static void handlePart(char *prefix, char *params) { -- cgit 1.4.1