1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-27 13:26:38 +02:00

Allow nick completion in private buffer with /me command

This commit is contained in:
Sebastien Helleu
2005-04-07 18:58:01 +00:00
parent 38505d02dd
commit ae8a4633ef
2 changed files with 10 additions and 0 deletions
+5
View File
@@ -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)
+5
View File
@@ -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)