summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2011-11-13 16:31:03 +0100
committermathieui <mathieui@mathieui.net>2011-11-13 16:31:03 +0100
commit6af593f44b2f9326fa18f4c09f8580941b8acc00 (patch)
treecdfa7faaf5a1c9db0f120f8938fdf0a8e5896995
parented53ab4edf1b99fb6b48b3e23848d234ef612044 (diff)
downloadpoezio-6af593f44b2f9326fa18f4c09f8580941b8acc00.tar.gz
poezio-6af593f44b2f9326fa18f4c09f8580941b8acc00.tar.bz2
poezio-6af593f44b2f9326fa18f4c09f8580941b8acc00.tar.xz
poezio-6af593f44b2f9326fa18f4c09f8580941b8acc00.zip
Completion for /info
-rw-r--r--src/tabs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tabs.py b/src/tabs.py
index 03f47744..54207ba9 100644
--- a/src/tabs.py
+++ b/src/tabs.py
@@ -484,7 +484,7 @@ class MucTab(ChatTab):
self.commands['nick'] = (self.command_nick, _("Usage: /nick <nickname>\nNick: Change your nickname in the current room."), None)
self.commands['recolor'] = (self.command_recolor, _('Usage: /recolor\nRecolor: Re-assign a color to all participants of the current room, based on the last time they talked. Use this if the participants currently talking have too many identical colors.'), None)
self.commands['cycle'] = (self.command_cycle, _('Usage: /cycle [message]\nCycle: Leave the current room and rejoin it immediately.'), None)
- self.commands['info'] = (self.command_info, _('Usage: /info <nickname>\nInfo: Display some information about the user in the MUC: its/his/her role, affiliation, status and status message.'), None)
+ self.commands['info'] = (self.command_info, _('Usage: /info <nickname>\nInfo: Display some information about the user in the MUC: its/his/her role, affiliation, status and status message.'), self.completion_ignore)
self.commands['configure'] = (self.command_configure, _('Usage: /configure\nConfigure: Configure the current room, through a form.'), None)
self.commands['version'] = (self.command_version, _('Usage: /version <jid or nick>\nVersion: Get the software version of the given JID or nick in room (usually its XMPP client and Operating System).'), None)
self.commands['names'] = (self.command_names, _('Usage: /names\nNames: Get the list of the users in the room, and the list of the people assuming the different roles.'), None)