1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-29 22:36:38 +02:00

irc: fix completion of commands /halfop and /dehalfop

This commit is contained in:
Sébastien Helleu
2020-12-06 15:48:55 +01:00
parent cd7947d8fc
commit ee25c74903
2 changed files with 3 additions and 2 deletions
+2 -2
View File
@@ -6583,7 +6583,7 @@ irc_command_init ()
N_("nick: nick or mask (wildcard \"*\" is allowed)\n"
" *: remove channel half-operator status from everybody on channel "
"except yourself"),
"%(nicks)", &irc_command_dehalfop, NULL, NULL);
"%(nicks)|%*", &irc_command_dehalfop, NULL, NULL);
weechat_hook_command (
"deop",
N_("remove channel operator status from nick(s)"),
@@ -6622,7 +6622,7 @@ irc_command_init ()
N_("<nick> [<nick>...] || * -yes"),
N_("nick: nick or mask (wildcard \"*\" is allowed)\n"
" *: give channel half-operator status to everybody on channel"),
"%(nicks)", &irc_command_halfop, NULL, NULL);
"%(nicks)|%*", &irc_command_halfop, NULL, NULL);
weechat_hook_command (
"ignore",
N_("ignore nicks/hosts from servers or channels"),