diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2013-03-22 09:40:44 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2013-03-22 09:40:44 +0100 |
commit | 55e58811b3df451db4f95b1035a39f5659788989 (patch) | |
tree | 3ee1db79c2863d353dda84d759207374c00675be /src/plugins/irc | |
parent | 19acf8121fc55eff7b74e819a5d24298e3b9a3e0 (diff) | |
download | weechat-55e58811b3df451db4f95b1035a39f5659788989.zip |
irc: fix default completion (like nicks) in commands /msg, /notice, /query and /topic
Diffstat (limited to 'src/plugins/irc')
-rw-r--r-- | src/plugins/irc/irc-command.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/plugins/irc/irc-command.c b/src/plugins/irc/irc-command.c index 3436b85fa..d53794ba9 100644 --- a/src/plugins/irc/irc-command.c +++ b/src/plugins/irc/irc-command.c @@ -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>]"), |