diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2023-07-08 14:45:25 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2023-07-08 14:45:25 +0200 |
commit | 4c0c7d9adc28687b2a9ab9f82e2d84deb6c69560 (patch) | |
tree | dec39ac0e5ef47cc1c925969257146d8031fb0f0 /src/plugins/fset | |
parent | 89856079518454909793f6bf48425459af64adbb (diff) | |
download | weechat-4c0c7d9adc28687b2a9ab9f82e2d84deb6c69560.zip |
fset: add missing enum in /help fset
Diffstat (limited to 'src/plugins/fset')
-rw-r--r-- | src/plugins/fset/fset-command.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/fset/fset-command.c b/src/plugins/fset/fset-command.c index 4f8e6f6f8..723a877a4 100644 --- a/src/plugins/fset/fset-command.c +++ b/src/plugins/fset/fset-command.c @@ -694,7 +694,7 @@ fset_command_init () " c:xxx show only options matching the evaluated " "condition \"xxx\", using following variables: file, section, " "option, name, parent_name, type, type_en, type_short " - "(bool/int/str/col/enum), type_tiny (b/i/s/c), default_value, " + "(bool/int/str/col/enum), type_tiny (b/i/s/c/e), default_value, " "default_value_undef, value, quoted_value, value_undef, " "value_changed, parent_value, min, max, description, description2, " "description_en, description_en2, string_values\n" @@ -715,7 +715,7 @@ fset_command_init () " - ${type}: option type (translated)\n" " - ${type_en}: option type (in English)\n" " - ${type_short}: short option type (bool/int/str/col/enum)\n" - " - ${type_tiny}: tiny option type (b/i/s/c)\n" + " - ${type_tiny}: tiny option type (b/i/s/c/e)\n" " - ${default_value}: option default value\n" " - ${default_value_undef}: \"1\" if default value is null, " "otherwise \"0\"\n" |