From 0a7aecb9e8398a32fc041411ae45b85bcf477cea Mon Sep 17 00:00:00 2001 From: Trygve Aaberge Date: Mon, 21 Nov 2022 00:10:50 +0100 Subject: Show a loading indicator in the input --- slack/config.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'slack/config.py') diff --git a/slack/config.py b/slack/config.py index e9be0ba..8ee1e1c 100644 --- a/slack/config.py +++ b/slack/config.py @@ -158,10 +158,17 @@ class SlackConfigSectionColor: def __init__(self, weechat_config: WeeChatConfig): self._section = WeeChatSection(weechat_config, "color") + self.loading = WeeChatOption( + self._section, + "loading", + "text color for the loading text", + WeeChatColor("yellow"), + ) + self.reaction_suffix = WeeChatOption( self._section, "reaction_suffix", - "Color to use for the [:wave:(@user)] suffix on messages that have " + "text color for the [:wave:(@user)] suffix on messages that have " "reactions attached to them.", WeeChatColor("darkgray"), ) -- cgit