From 99bef421874f57743cb0316d80f6b948a1424b47 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?poljar=20=28Damir=20Jeli=C4=87=29?= Date: Sat, 24 Feb 2018 17:56:29 +0100 Subject: [PATCH] Set highlight_tags_restrict to the channel buffers. --- matrix/rooms.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/matrix/rooms.py b/matrix/rooms.py index 7bf4547..140f9ad 100644 --- a/matrix/rooms.py +++ b/matrix/rooms.py @@ -87,6 +87,9 @@ def matrix_create_room_buffer(server, room_id): W.buffer_set(buf, "nicklist", "1") W.buffer_set(buf, "nicklist_display_groups", "0") + # TODO make this configurable + W.buffer_set(buf, "highlight_tags_restrict", "matrix_message") + server.buffers[room_id] = buf server.rooms[room_id] = MatrixRoom(room_id)