diff options
author | er-1 <erwan@linux.ibm.com> | 2018-11-12 00:04:13 +0100 |
---|---|---|
committer | Trygve Aaberge <trygveaa@gmail.com> | 2018-11-12 00:04:13 +0100 |
commit | fce90fa74e1fae2e0abb8566951a2aceced224cf (patch) | |
tree | df5e47eb86d3f71fc73baf54c2a97fcb394a8697 /wee_slack.py | |
parent | 6670b9e678d01896aa3c419160f3b64df6745e69 (diff) | |
download | wee-slack-fce90fa74e1fae2e0abb8566951a2aceced224cf.tar.gz |
Add an option to set color of (edited) suffix (#660)
This option allows a user to set a custom color to the (edited)
suffix on messages that have been edited.
The default color is set to '095', as it was the former choice.
Diffstat (limited to 'wee_slack.py')
-rw-r--r-- | wee_slack.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/wee_slack.py b/wee_slack.py index 7bc5d96..0ce3671 100644 --- a/wee_slack.py +++ b/wee_slack.py @@ -2884,7 +2884,7 @@ def render(message_json, team, force=False): if "edited" in message_json: text += "{}{}{}".format( - w.color("095"), ' (edited)', w.color("reset")) + w.color(config.color_edited_suffix), ' (edited)', w.color("reset")) text += unfurl_refs(unwrap_attachments(message_json, text)) @@ -3980,6 +3980,9 @@ class PluginConfig(object): 'color_buflist_muted_channels': Setting( default='darkgray', desc='Color to use for muted channels in the buflist'), + 'color_edited_suffix': Setting( + default='095', + desc='Color to use for (edited) suffix on messages that have been edited.'), 'color_reaction_suffix': Setting( default='darkgray', desc='Color to use for the [:wave:(@user)] suffix on messages that' @@ -4145,6 +4148,7 @@ class PluginConfig(object): return w.config_get_plugin(key) == default get_color_buflist_muted_channels = get_string + get_color_edited_suffix = get_string get_color_reaction_suffix = get_string get_color_thread_suffix = get_string get_debug_level = get_int |