about summary refs log tree commit diff
path: root/handle.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-07-13 10:22:33 -0400
committerJune McEnroe <june@causal.agency>2020-07-13 10:22:33 -0400
commit3e03b7502b1b13842b5a34481671499129916ce2 (patch)
treeeeb1cb220f7d3267aabf74e1c5ac3c8c60a9c14c /handle.c
parentKeep scrolled up windows in status line (diff)
downloadcatgirl-3e03b7502b1b13842b5a34481671499129916ce2.tar.gz
catgirl-3e03b7502b1b13842b5a34481671499129916ce2.zip
Add current topic to tab-complete so it can edited
Diffstat (limited to '')
-rw-r--r--handle.c18
1 files changed, 17 insertions, 1 deletions
diff --git a/handle.c b/handle.c
index a7a44b8..441bbc5 100644
--- a/handle.c
+++ b/handle.c
@@ -528,11 +528,25 @@ static void handleReplyNoTopic(struct Message *msg) {
 	);
 }
 
+static void topicComplete(uint id, const char *topic) {
+	char buf[512];
+	const char *prev = complete(id, "/topic ");
+	if (prev) {
+		snprintf(buf, sizeof(buf), "%s", prev);
+		completeRemove(id, buf);
+	}
+	if (topic) {
+		snprintf(buf, sizeof(buf), "/topic %s", topic);
+		completeAdd(id, buf, Default);
+	}
+}
+
 static void handleReplyTopic(struct Message *msg) {
 	require(msg, false, 3);
+	uint id = idFor(msg->params[1]);
+	topicComplete(id, msg->params[2]);
 	if (!replies.topic) return;
 	replies.topic--;
-	uint id = idFor(msg->params[1]);
 	urlScan(id, NULL, msg->params[2]);
 	uiFormat(
 		id, Cold, tagTime(msg),
@@ -549,6 +563,7 @@ static void handleTopic(struct Message *msg) {
 	require(msg, true, 2);
 	uint id = idFor(msg->params[0]);
 	if (msg->params[1][0]) {
+		topicComplete(id, msg->params[1]);
 		urlScan(id, msg->nick, msg->params[1]);
 		uiFormat(
 			id, Warm, tagTime(msg),
@@ -561,6 +576,7 @@ static void handleTopic(struct Message *msg) {
 			msg->nick, msg->params[0], msg->params[1]
 		);
 	} else {
+		topicComplete(id, NULL);
 		uiFormat(
 			id, Warm, tagTime(msg),
 			"\3%02d%s\3\tremoves the sign in \3%02d%s\3",
a href='/src/commit/www/git.causal.agency/cgit/favicon.ico?id=5a8f6f3698fbd69b97483c7b84bf661f4761124f&follow=1'>Remove default faviconJune McEnroe 2021-09-21Use Z_FILTERED strategyJune McEnroe 2021-09-21Recalculate various lengths only as neededJune McEnroe 2021-09-21Rewrite pngo, add explicit optionsJune McEnroe 2021-09-16Fix /* **/ comment matchingJune McEnroe 2021-09-15Remove typer, add downgrade to READMEJune McEnroe 2021-09-15Set bot mode on downgradeJune McEnroe 2021-09-15Enter capsicum in downgradeJune McEnroe 2021-09-15Factor out common parts of downgrade messagesJune McEnroe 2021-09-14Add downgrade IRC botJune McEnroe 2021-09-14Sort by title if authors matchJune McEnroe 2021-09-13Swap-remove tags as they're foundJune McEnroe 2021-09-12Replace htagml regex with strncmpJune McEnroe 2021-09-11Also defer printing comment for lone close-parensJune McEnroe 2021-09-10Publish "git-comment"June McEnroe 2021-09-10Add git comment --pretty optionJune McEnroe 2021-09-08Defer printing comment if line is blank or closing braceJune McEnroe 2021-09-08Up default min-repeat to 30 linesJune McEnroe 2021-09-08Handle dirty lines in git-commentJune McEnroe 2021-09-08Document and install git-commentJune McEnroe 2021-09-08Add repeat and all options to git-commentJune McEnroe 2021-09-08Add group threshold to git-commentJune McEnroe