mirror of
https://github.com/weechat/weechat.git
synced 2026-06-30 06:46:38 +02:00
fset: allow long type name in type filter
This commit is contained in:
@@ -676,7 +676,8 @@ fset_command_init ()
|
||||
" * show all options (no filter)\n"
|
||||
" xxx show only options with \"xxx\" in name\n"
|
||||
" f:xxx show only configuration file \"xxx\"\n"
|
||||
" t:xxx show only type \"xxx\" (bool/int/str/col/enum)\n"
|
||||
" t:xxx show only type \"xxx\" (bool/int/str/col/enum "
|
||||
"or boolean/integer/string/color/enum)\n"
|
||||
" d show only changed options\n"
|
||||
" d:xxx show only changed options with \"xxx\" in "
|
||||
"name\n"
|
||||
|
||||
@@ -344,9 +344,14 @@ fset_option_match_filter (struct t_fset_option *fset_option, const char *filter)
|
||||
else if (strncmp (filter, "t:", 2) == 0)
|
||||
{
|
||||
/* filter by type */
|
||||
return (weechat_strcasecmp (
|
||||
fset_option_type_string_short[fset_option->type],
|
||||
filter + 2) == 0) ? 1 : 0;
|
||||
return (
|
||||
(weechat_strcasecmp (
|
||||
fset_option_type_string_short[fset_option->type],
|
||||
filter + 2) == 0)
|
||||
|| (weechat_strcasecmp (
|
||||
fset_option_type_string[fset_option->type],
|
||||
filter + 2) == 0)) ?
|
||||
1 : 0;
|
||||
}
|
||||
else if (strncmp (filter, "d==", 3) == 0)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user