1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-07 11:25:41 +02:00

fset: add different types of filters

Existing filter:

- by option name (part of name)

New filters:

- by configuration file ("f:xxx")
- by section name ("s:xxx")
- by options changed ("d:" or "d:xxx")
- by exact value ("==xxx")
- by value, format ("=xxx")
This commit is contained in:
Sébastien Helleu
2017-05-29 21:11:23 +02:00
parent fb363eb723
commit 7b5b123365
2 changed files with 84 additions and 26 deletions
File diff suppressed because it is too large Load Diff
+1
View File
@@ -43,6 +43,7 @@ extern struct t_fset_option *fset_option_search_by_name (const char *name,
int *line);
extern int fset_option_value_different_from_default (struct t_fset_option *option);
extern void fset_option_set_filter (const char *filter);
extern void fset_option_free (struct t_fset_option *fset_option);
extern void fset_option_get_options ();
extern void fset_option_filter_options (const char *search);
extern int fset_option_config_cb (const void *pointer,