summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2011-11-13 16:29:36 +0100
committermathieui <mathieui@mathieui.net>2011-11-13 16:29:36 +0100
commited53ab4edf1b99fb6b48b3e23848d234ef612044 (patch)
treef132c5dcee3c009299059124c38b2f27f0cb0885
parent552c504559eef91a525f1794d4954f311314d075 (diff)
downloadpoezio-ed53ab4edf1b99fb6b48b3e23848d234ef612044.tar.gz
poezio-ed53ab4edf1b99fb6b48b3e23848d234ef612044.tar.bz2
poezio-ed53ab4edf1b99fb6b48b3e23848d234ef612044.tar.xz
poezio-ed53ab4edf1b99fb6b48b3e23848d234ef612044.zip
Completion for /query (re-uses /ignore)
-rw-r--r--src/tabs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tabs.py b/src/tabs.py
index 38737890..03f47744 100644
--- a/src/tabs.py
+++ b/src/tabs.py
@@ -478,7 +478,7 @@ class MucTab(ChatTab):
self.commands['role'] = (self.command_role, _("Usage: /role <nick> <role> [reason]\nRole: Set the role of an user. Roles can be: none, visitor, participant, moderator. You also can give an optional reason."), self.completion_role)
self.commands['affiliation'] = (self.command_affiliation, _("Usage: /affiliation <nick> <affiliation> [reason]\nAffiliation: Set the affiliation of an user. Affiliations can be: none, member, admin, owner. You also can give an optional reason."), self.completion_affiliation)
self.commands['topic'] = (self.command_topic, _("Usage: /topic <subject>\nTopic: Change the subject of the room."), self.completion_topic)
- self.commands['query'] = (self.command_query, _('Usage: /query <nick> [message]\nQuery: Open a private conversation with <nick>. This nick has to be present in the room you\'re currently in. If you specified a message after the nickname, it will immediately be sent to this user.'), None)
+ self.commands['query'] = (self.command_query, _('Usage: /query <nick> [message]\nQuery: Open a private conversation with <nick>. This nick has to be present in the room you\'re currently in. If you specified a message after the nickname, it will immediately be sent to this user.'), self.completion_ignore)
self.commands['part'] = (self.command_part, _("Usage: /part [message]\nPart: Disconnect from a room. You can specify an optional message."), None)
self.commands['close'] = (self.command_close, _("Usage: /close [message]\nClose: Disconnect from a room and close the tab. You can specify an optional message if you are still connected."), None)
self.commands['nick'] = (self.command_nick, _("Usage: /nick <nickname>\nNick: Change your nickname in the current room."), None)