# HG changeset patch
# User Goffi <goffi@goffi.org>
# Date 1400176313 -7200
# Node ID 24fe24cfb363a54bfdc8cccc0ef93c248c0283bd
# Parent  7e43ea75cce88fb48d61aae33aef615265b79bfc
plugin text commands: added /me command to avoid the need to escape the /

diff -r 7e43ea75cce8 -r 24fe24cfb363 src/plugins/plugin_misc_text_commands.py
--- a/src/plugins/plugin_misc_text_commands.py	Thu May 15 16:35:28 2014 +0200
+++ b/src/plugins/plugin_misc_text_commands.py	Thu May 15 19:51:53 2014 +0200
@@ -233,3 +233,8 @@
 
         help_mess = _(u"Text commands available:\n%s") % (u'\n'.join(help_cmds), )
         self.feedBack(help_mess, mess_data, profile)
+
+    def cmd_me(self, mess_data, profile):
+        """Display a message at third person"""
+        # We just catch the method and continue it as the frontends should manage /me display
+        return True