From c32f46e99fff3dcbdf88d6cd6db075c9acfce070 Mon Sep 17 00:00:00 2001 From: copyleftie Date: Tue, 21 May 2019 00:47:24 -0400 Subject: [PATCH] add plural-affirmative aliases for `/me` --- gajim/command_system/implementation/standard.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gajim/command_system/implementation/standard.py b/gajim/command_system/implementation/standard.py index 863486ca8..44aaf3100 100644 --- a/gajim/command_system/implementation/standard.py +++ b/gajim/command_system/implementation/standard.py @@ -74,7 +74,7 @@ class StandardCommonCommands(CommandContainer): def say(self, message): self.send(message) - @command(raw=True) + @command('we','us',raw=True) @doc(_("Send action (in the third person) to the current chat")) def me(self, action): self.send("/me %s" % action)