diff options
author | Trygve Aaberge <trygveaa@gmail.com> | 2018-02-18 16:38:20 +0100 |
---|---|---|
committer | Trygve Aaberge <trygveaa@gmail.com> | 2018-02-18 16:54:39 +0100 |
commit | 8cfc05e7d79c581de0310ead583017bbc7512e2f (patch) | |
tree | ddc814f14f6a9aa08559d4b3e104ec46d4184068 /wee_slack.py | |
parent | 63b93d8ae78906de85680d45002a00dcfa5191d2 (diff) | |
download | wee-slack-8cfc05e7d79c581de0310ead583017bbc7512e2f.tar.gz |
Prevent highlights on team messages
If the user has set up highlight for e.g. their own nick, the team
buffer will trigger a highlight when wee-slack is loaded because it
prints the nick. You will also get a highlight from e.g. /slack users.
The messages we send to the team buffer are informational messages that
I don't think should trigger highlights. They will still show up in the
hotlist as normal messages.
Diffstat (limited to 'wee_slack.py')
-rw-r--r-- | wee_slack.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wee_slack.py b/wee_slack.py index 873d163..6b19da3 100644 --- a/wee_slack.py +++ b/wee_slack.py @@ -2928,7 +2928,7 @@ def tag(tagset, user=None): default_tag = 'nick_unknown' tagsets = { # messages in the team/server buffer, e.g. "new channel created" - "team": "log3", + "team": "no_highlight,log3", # when replaying something old "backlog": "irc_privmsg,no_highlight,notify_none,logger_backlog", # when posting messages to a muted channel |