about summary refs log tree commit diff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--complete.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/complete.c b/complete.c
index ead2457..9e59db5 100644
--- a/complete.c
+++ b/complete.c
@@ -122,7 +122,7 @@ const char *complete(uint id, const char *prefix) {
 const char *completeSubstr(uint id, const char *substr) {
 	for (match = (match ? match->next : head); match; match = match->next) {
 		if (match->id && match->id != id) continue;
-		if (!strcasestr(match->str, substr)) continue;
+		if (!strstr(match->str, substr)) continue;
 		return match->str;
 	}
 	return NULL;
mp;follow=1'>Move scroll marker on resizeJune McEnroe 2020-02-10Update line count for words longer than linesJune McEnroe 2020-02-10Simplify mark, heat, unread trackingJune McEnroe 2020-02-10Update prompt when own nick changesJune McEnroe 2020-02-10Match URLs surrounded by parenthesesJune McEnroe 2020-02-10Fix M-a so it properly cycles back to where it startedJune McEnroe 2020-02-09Add M-lJune McEnroe 2020-02-09Add /whoisJune McEnroe 2020-02-09Add /msgJune McEnroe