about summary refs log tree commit diff
path: root/complete.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-02-08 00:58:17 -0500
committerJune McEnroe <june@causal.agency>2020-02-08 00:58:17 -0500
commitb5707af4b842f521104c5fba07e5685612ff91f2 (patch)
treeaa599074d2fa08fc12cdf005e867a1c030b13526 /complete.c
parentHandle QUIT (diff)
downloadcatgirl-b5707af4b842f521104c5fba07e5685612ff91f2.tar.gz
catgirl-b5707af4b842f521104c5fba07e5685612ff91f2.zip
Handle KICK
See I knew the color cache in complete would be useful in at least one
place!
Diffstat (limited to 'complete.c')
-rw-r--r--complete.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/complete.c b/complete.c
index c194536..2f5275f 100644
--- a/complete.c
+++ b/complete.c
@@ -90,6 +90,11 @@ void completeTouch(size_t id, const char *str, enum Color color) {
 	prepend(node ? detach(node) : alloc(id, str, color));
 }
 
+enum Color completeColor(size_t id, const char *str) {
+	struct Node *node = find(id, str);
+	return (node ? node->color : Default);
+}
+
 static struct Node *match;
 
 const char *complete(size_t id, const char *prefix) {