aboutsummaryrefslogtreecommitdiffstats
path: root/slack/config.py
diff options
context:
space:
mode:
Diffstat (limited to 'slack/config.py')
-rw-r--r--slack/config.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/slack/config.py b/slack/config.py
index e7dbbaf..890d6be 100644
--- a/slack/config.py
+++ b/slack/config.py
@@ -93,6 +93,20 @@ class SlackConfigSectionLook:
"*",
)
+ self.typing_status_nicks = WeeChatOption(
+ self._section,
+ "typing_status_nicks",
+ 'display nicks typing on the channel in bar item "typing" (option typing.look.enabled_nicks must be enabled)',
+ True,
+ )
+
+ self.typing_status_self = WeeChatOption(
+ self._section,
+ "typing_status_self",
+ "send self typing status to channels so that other users see when you are typing a message (option typing.look.enabled_self must be enabled)",
+ True,
+ )
+
weechat.hook_config(
"weechat.look.nick_color_*",
get_callback_name(self.config_change_nick_colors_cb),