diff options
author | Trygve Aaberge <trygveaa@gmail.com> | 2020-03-03 00:37:52 +0100 |
---|---|---|
committer | Trygve Aaberge <trygveaa@gmail.com> | 2020-03-03 00:38:27 +0100 |
commit | 334b04798a51363c041d7fd7d441ca90a8658c0f (patch) | |
tree | ca26c5eccd17bbf30612f4d37193c72b763f39b0 /wee_slack.py | |
parent | 375e33a88130e6f5a56687994c3e5dac3ffb69f6 (diff) | |
download | wee-slack-334b04798a51363c041d7fd7d441ca90a8658c0f.tar.gz |
Improve help text for /reply and update Commands.md
Diffstat (limited to 'wee_slack.py')
-rw-r--r-- | wee_slack.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/wee_slack.py b/wee_slack.py index 9471674..b6494f1 100644 --- a/wee_slack.py +++ b/wee_slack.py @@ -4040,15 +4040,15 @@ command_thread.completion = '%(threads)' @utf8_decode def command_reply(data, current_buffer, args): """ - /reply [-alsochannel] [<count/message_id>] <text> + /reply [-alsochannel] [<count/message_id>] <message> When in a channel buffer: - /reply [-alsochannel] <count/message_id> <text> + /reply [-alsochannel] <count/message_id> <message> Reply in a thread on the message. Specify either the message id or a count upwards to the message from the last message. When in a thread buffer: - /reply [-alsochannel] <text> + /reply [-alsochannel] <message> Reply to the current thread. This can be used to send the reply to the rest of the channel. @@ -4069,7 +4069,7 @@ def command_reply(data, current_buffer, args): try: msg_id, text = args.split(None, 1) except ValueError: - w.prnt('', 'Usage (when in a channel buffer): /reply [-alsochannel] <count/id> <message>') + w.prnt('', 'Usage (when in a channel buffer): /reply [-alsochannel] <count/message_id> <message>') return w.WEECHAT_RC_OK_EAT msg = get_msg_from_id(channel, msg_id) |