diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2010-10-11 16:29:15 +0200 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2010-10-11 16:29:15 +0200 |
commit | fe2a36136429f451db2546b10502df2655a2b1c8 (patch) | |
tree | 30ed8c1fc9be1c5da04470d1bebfd78087e89b64 /src/core | |
parent | f32e18c717520e3482b1a4155ff4e804da7aecbb (diff) | |
download | weechat-fe2a36136429f451db2546b10502df2655a2b1c8.zip |
Add property "no_highlight_nicks" in buffers to disable highlight for some nicks in buffer
This can be used with script buffer_autoset.py (see /help autosetbuffer).
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/wee-upgrade.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/wee-upgrade.c b/src/core/wee-upgrade.c index 90983b1e5..f6810d091 100644 --- a/src/core/wee-upgrade.c +++ b/src/core/wee-upgrade.c @@ -412,6 +412,8 @@ upgrade_weechat_read_cb (void *data, infolist_string (infolist, "highlight_words")); gui_buffer_set_highlight_tags (upgrade_current_buffer, infolist_string (infolist, "highlight_tags")); + gui_buffer_set_no_highlight_nicks (upgrade_current_buffer, + infolist_string (infolist, "no_highlight_nicks")); index = 0; while (1) { |