kujiu (@uberwald)
8ca6287fb1
-> Passwords in KeePassXC (access by keyring) -> Neomutt + Aerc (mail) -> vdirsyncer + khal + khard (calendar and contacts) zsh -> fish -> poezio (XMPP) -> newsboat (RSS with FreshRSS) -> toot (Mastodon client) vim -> neovim (with lunarvim) -> nvimpager (pager based on neovim) -> konsole With Nightfox theme.
33 lines
911 B
Python
33 lines
911 B
Python
"""
|
||
Repeats the last message in the conversation.
|
||
|
||
Command
|
||
-------
|
||
|
||
.. glossary::
|
||
|
||
/mirror
|
||
**Usage:** ``/mirror``
|
||
|
||
"""
|
||
from poezio.plugin import BasePlugin
|
||
from poezio import tabs
|
||
|
||
|
||
class Plugin(BasePlugin):
|
||
def init(self):
|
||
for tab_type in (tabs.MucTab, tabs.PrivateTab, tabs.DynamicConversationTab, tabs.StaticConversationTab):
|
||
self.api.add_tab_command(
|
||
tab_type,
|
||
'mirror',
|
||
handler=self.mirror,
|
||
help='Repeat the last message from the conversation.',
|
||
short='Repeat the last message from the conversation.')
|
||
|
||
def mirror(self, args):
|
||
messages = self.api.get_conversation_messages()
|
||
if not messages:
|
||
# Do nothing if the conversation doesn’t contain any message
|
||
return
|
||
last_message = messages[-1]
|
||
self.api.send_message(last_message.txt)
|