diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2013-12-14 11:26:03 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2013-12-14 11:26:03 +0100 |
commit | 811b68991e1635967334b9a2f0ba4468bbb9f44b (patch) | |
tree | caf48db443e263d81955ca83f9e56575eb73d437 /src/gui/gui-filter.h | |
parent | 542dc8cd33e1be4c310cba4253b986a01abe7675 (diff) | |
download | weechat-811b68991e1635967334b9a2f0ba4468bbb9f44b.zip |
core: add logical "and" between tags in filters, weechat.look.highlight_tags and buffer property "highlight_tags"
The logical "and" is made with the separator "+".
Example: "irc_notice+nick_toto,nick_test"
will match a notice from nick "toto" or any message from nick "test".
Diffstat (limited to 'src/gui/gui-filter.h')
-rw-r--r-- | src/gui/gui-filter.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/gui-filter.h b/src/gui/gui-filter.h index b89263559..1eb019bac 100644 --- a/src/gui/gui-filter.h +++ b/src/gui/gui-filter.h @@ -37,7 +37,7 @@ struct t_gui_filter char **buffers; /* list of buffer names */ char *tags; /* tags */ int tags_count; /* number of tags */ - char **tags_array; /* array of tags */ + char ***tags_array; /* array of tags */ char *regex; /* regex */ regex_t *regex_prefix; /* regex for line prefix */ regex_t *regex_message; /* regex for line message */ |