From ae8a4633efcbba8bc34072dd1b539a1b550a5341 Mon Sep 17 00:00:00 2001 From: Sebastien Helleu Date: Thu, 7 Apr 2005 18:58:01 +0000 Subject: Allow nick completion in private buffer with /me command --- src/common/completion.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src') diff --git a/src/common/completion.c b/src/common/completion.c index 03546ae45..27bc9b5a5 100644 --- a/src/common/completion.c +++ b/src/common/completion.c @@ -392,6 +392,11 @@ completion_build_list (t_completion *completion, void *channel) completion_stop (completion); return; } + if (strcasecmp (completion->base_command, "me") == 0) + { + completion->context = COMPLETION_NICK; + return; + } if (strcasecmp (completion->base_command, "notice") == 0) { if (completion->base_command_arg != 1) -- cgit v1.2.3