irc: fix default completion (like nicks) in commands /msg, /notice, /query and /topic
This commit is contained in:
parent
19acf8121f
commit
55e58811b3
@ -1,7 +1,7 @@
|
||||
WeeChat ChangeLog
|
||||
=================
|
||||
Sébastien Helleu <flashcode@flashtux.org>
|
||||
v0.4.1-dev, 2013-03-21
|
||||
v0.4.1-dev, 2013-03-22
|
||||
|
||||
|
||||
This document lists all changes for each version.
|
||||
@ -44,6 +44,8 @@ Version 0.4.1 (under dev!)
|
||||
list with arguments inside), guile >= 2.0 is now required (bug #38350)
|
||||
* guile: fix crash on calls to callbacks during load of script (bug #38343)
|
||||
* guile: fix compilation with guile 2.0
|
||||
* irc: fix default completion (like nicks) in commands /msg, /notice, /query and
|
||||
/topic
|
||||
* irc: fix prefix color for nick when the prefix is not in
|
||||
irc.color.nick_prefixes: use default color (key "*")
|
||||
* irc: add option irc.look.pv_buffer: automatically merge private buffers
|
||||
|
@ -5850,7 +5850,7 @@ irc_command_init ()
|
||||
"current channel)\n"
|
||||
" text: text to send"),
|
||||
"-server %(irc_servers)"
|
||||
" || %(nicks) %-",
|
||||
" || %(nicks)",
|
||||
&irc_command_msg, NULL);
|
||||
weechat_hook_command ("names",
|
||||
N_("list nicks on channels"),
|
||||
@ -5872,7 +5872,7 @@ irc_command_init ()
|
||||
N_("server: send to this server (internal name)\n"
|
||||
"target: nick or channel\n"
|
||||
" text: text to send"),
|
||||
"%(nicks)|-server %(irc_servers) %-", &irc_command_notice, NULL);
|
||||
"%(nicks)|-server %(irc_servers)", &irc_command_notice, NULL);
|
||||
weechat_hook_command ("notify",
|
||||
N_("add a notification for presence or away status "
|
||||
"of nicks on servers"),
|
||||
@ -5940,7 +5940,7 @@ irc_command_init ()
|
||||
N_("server: send to this server (internal name)\n"
|
||||
" nick: nick for private conversation\n"
|
||||
" text: text to send"),
|
||||
"%(nicks)|-server %(irc_servers) %-", &irc_command_query, NULL);
|
||||
"%(nicks)|-server %(irc_servers)", &irc_command_query, NULL);
|
||||
weechat_hook_command ("quiet",
|
||||
N_("quiet nicks or hosts"),
|
||||
N_("[<channel>] [<nick> [<nick>...]]"),
|
||||
@ -6114,7 +6114,7 @@ irc_command_init ()
|
||||
N_("channel: channel name\n"
|
||||
" topic: new topic for channel\n"
|
||||
"-delete: delete channel topic"),
|
||||
"%(irc_channel_topic)|-delete %-", &irc_command_topic, NULL);
|
||||
"%(irc_channel_topic)|-delete", &irc_command_topic, NULL);
|
||||
weechat_hook_command ("trace",
|
||||
N_("find the route to specific server"),
|
||||
N_("[<target>]"),
|
||||
|
Loading…
x
Reference in New Issue
Block a user