diff options
Diffstat (limited to 'plugins/quote.py')
-rw-r--r-- | plugins/quote.py | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/plugins/quote.py b/plugins/quote.py index 50c390f2..ebd9b15e 100644 --- a/plugins/quote.py +++ b/plugins/quote.py @@ -12,9 +12,12 @@ log = logging.getLogger(__name__) class Plugin(BasePlugin): def init(self): - self.add_tab_command(tabs.MucTab, 'quote', self.command_quote, "Usage: /quote <timestamp>\nQuote: takes the message received at <timestamp> and insert it in the input, to quote it.", self.completion_quote) - self.add_tab_command(tabs.ConversationTab, 'quote', self.command_quote, "Usage: /quote <timestamp>\nQuote: takes the message received at <timestamp> and insert it in the input, to quote it.", self.completion_quote) - self.add_tab_command(tabs.PrivateTab, 'quote', self.command_quote, "Usage: /quote <timestamp>\nQuote: takes the message received at <timestamp> and insert it in the input, to quote it.", self.completion_quote) + for _class in (tabs.MucTab, tabs.ConversationTab, tabs.PrivateTab): + self.add_tab_command(_class, 'quote', self.command_quote, + usage='<timestamp>', + help='Takes the message received at <timestamp> and insert it in the input, to quote it.', + short='Quote a message from a timestamp', + completion=self.completion_quote) def command_quote(self, args): args = common.shell_split(args) |