1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-06 01:33:12 +02:00

irc: fix completion of commands /msg, /notice and /query

This commit is contained in:
Sébastien Helleu
2014-10-09 21:20:43 +02:00
parent 1bda9f1077
commit a06be57eb7
2 changed files with 8 additions and 3 deletions
+1
View File
@@ -34,6 +34,7 @@ http://weechat.org/files/releasenotes/ReleaseNotes-devel.html[release notes]
=== Bugs fixed
* core: fix translation of message displayed after /upgrade
* irc: fix completion of commands /msg, /notice and /query
* irc: fix translation of CTCP PING reply (closes #137)
* lua: add detection of Lua 5.2
* python: fix Python detection with Homebrew (closes #217)
+7 -3
View File
@@ -6195,7 +6195,7 @@ irc_command_init ()
N_("server: send to this server (internal name)\n"
"target: nick or channel (may be mask, '*' = current channel)\n"
" text: text to send"),
"-server %(irc_servers)"
"-server %(irc_servers) %(nicks)"
" || %(nicks)",
&irc_command_msg, NULL);
weechat_hook_command (
@@ -6220,7 +6220,9 @@ irc_command_init ()
N_("server: send to this server (internal name)\n"
"target: nick or channel name\n"
" text: text to send"),
"%(nicks)|-server %(irc_servers)", &irc_command_notice, NULL);
"-server %(irc_servers) %(nicks)"
" || %(nicks)",
&irc_command_notice, NULL);
weechat_hook_command (
"notify",
N_("add a notification for presence or away status of nicks on servers"),
@@ -6289,7 +6291,9 @@ irc_command_init ()
N_("server: send to this server (internal name)\n"
" nick: nick\n"
" text: text to send"),
"%(nicks)|-server %(irc_servers)", &irc_command_query, NULL);
"-server %(irc_servers) %(nicks)"
" || %(nicks)",
&irc_command_query, NULL);
weechat_hook_command (
"quiet",
N_("quiet nicks or hosts"),