23 lines
551 B
Python
23 lines
551 B
Python
|
"""
|
||
|
Insert a space between each character, in messages that you send.
|
||
|
|
||
|
Installation
|
||
|
------------
|
||
|
|
||
|
You only have to load the plugin:
|
||
|
|
||
|
.. code-block:: none
|
||
|
/load spaces
|
||
|
|
||
|
"""
|
||
|
from plugin import BasePlugin
|
||
|
|
||
|
class Plugin(BasePlugin):
|
||
|
def init(self):
|
||
|
self.api.add_event_handler('muc_say', self.add_spaces)
|
||
|
self.api.add_event_handler('conversation_say', self.add_spaces)
|
||
|
self.api.add_event_handler('private_say', self.add_spaces)
|
||
|
|
||
|
def add_spaces(self, msg, tab):
|
||
|
msg['body'] = " ".join(x for x in msg['body'])
|