diff options
Diffstat (limited to 'slack/config.py')
-rw-r--r-- | slack/config.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/slack/config.py b/slack/config.py index 4533780..7efe69b 100644 --- a/slack/config.py +++ b/slack/config.py @@ -43,6 +43,13 @@ class SlackConfigSectionColor: WeeChatColor("darkgray"), ) + self.user_mention_color = WeeChatOption( + self._section, + "user_mention_color", + "text color for mentioned user names in the chat", + WeeChatColor("blue"), + ) + class SlackConfigSectionLook: def __init__(self, weechat_config: WeeChatConfig): |