diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2017-06-26 07:19:18 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2017-06-26 07:19:18 +0200 |
commit | a727248624319be7ac8542b927ee26f10d068c80 (patch) | |
tree | 1c1766368fbc5e511462c51f3d6c9952ac50a87d /doc/ja/autogen/user | |
parent | e2c51670f17f433ba9af1fde5ec45ce104fd3a09 (diff) | |
download | weechat-a727248624319be7ac8542b927ee26f10d068c80.zip |
doc: update auto-generated files
Diffstat (limited to 'doc/ja/autogen/user')
-rw-r--r-- | doc/ja/autogen/user/fset_commands.adoc | 159 | ||||
-rw-r--r-- | doc/ja/autogen/user/fset_options.adoc | 483 |
2 files changed, 642 insertions, 0 deletions
diff --git a/doc/ja/autogen/user/fset_commands.adoc b/doc/ja/autogen/user/fset_commands.adoc new file mode 100644 index 000000000..7733cc3b1 --- /dev/null +++ b/doc/ja/autogen/user/fset_commands.adoc @@ -0,0 +1,159 @@ +// +// This file is auto-generated by script docgen.py. +// DO NOT EDIT BY HAND! +// +[[command_fset_fset]] +* `+fset+`: fast set WeeChat and plugins options + +---- +/fset -bar + -refresh + -up|-down [<number>] + -left|-right [<percent>] + -go <line>|end + -toggle + -add [<value>] + -reset + -unset + -set + -setnew + -append + -mark + -format + -export [-help|-nohelp] <filename> + <filter> + + -bar: add the help bar + -refresh: refresh list of options, then whole screen (command: /window refresh) + -up: move the selected line up by "number" lines + -down: move the selected line down by "number" lines + -left: scroll the fset buffer by "percent" of width on the left + -right: scroll the fset buffer by "percent" of width on the right + -go: select a line by number, first line number is 0 ("end" to select the last line) + -toggle: toggle the boolean value, set a new value for other types + -add: add "value" (which can be a negative number) for integers and colors, set/append to value for other types (set for a negative value, append for a positive value) + -reset: reset the value of option + -unset: unset the option + -set: add the /set command in input to edit the value of option (move the cursor at the beginning of value) + -setnew: add the /set command in input to edit a new value for the option + -append: add the /set command to append something in the value of option (move the cursor at the end of value) + -mark: toggle mark + -format: switch to the next available format + -export: export the options and values displayed in a file (each line has format: "/set name value" or "/unset name") + -help: force writing of help on options in exported file (see /help fset.look.export_help_default) + -nohelp: do not write help on options in exported file (see /help fset.look.export_help_default) + filter: set a new filter to see only matching options (this filter can be used as input in fset buffer as well); allowed formats are: + * show all options (no filter) + xxx show only options with "xxx" in name + f:xxx show only configuration file "xxx" + t:xxx show only type "xxx" (bool/int/str/col) + d show only changed options + d:xxx show only changed options with "xxx" in name + d=xxx show only changed options with "xxx" in value + d==xxx show only changed options with exact value "xxx" + =xxx show only options with "xxx" in value + ==xxx show only options with exact value "xxx" + 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), type_tiny (b/i/s/c), default_value, default_value_undef, value, quoted_value, value_undef, value_changed, parent_value, min, max, description, description2, description_en, description_en2, string_values + +The lines with options are displayed using string evaluation (see /help eval for the format), with these options: + - fset.format.option{1,2}: formats for an option which is not marked nor the selected line + - fset.format.option_marked{1,2}: formats for a marked option + - fset.format.option_selected{1,2}: formats for the selected option + +The following variables can be used in these options: + - option data, with color and padded by spaces on the right: + - ${file}: configuration file (for example "weechat" or "irc") + - ${section}: section + - ${option}: option name + - ${name}: full option name (file.section.option) + - ${parent_name}: parent option name + - ${type}: option type (translated) + - ${type_en}: option type (in English) + - ${type_short}: short option type (bool/int/str/col) + - ${type_tiny}: tiny option type (b/i/s/c) + - ${default_value}: option default value + - ${default_value_undef}: "1" if default value is null, otherwise "0" + - ${value}: option value + - ${value_undef}: "1" if value is null, otherwise "0" + - ${value_changed}: "1" if value is different from default value, otherwise "0" + - ${value2}: option value, with inherited value if null + - ${parent_value}: parent option value + - ${min}: min value + - ${max}: max value + - ${description}: option description (translated) + - ${description2}: option description (translated), "(no description)" (translated) if there's no description + - ${description_en}: option description (in English) + - ${description_en2}: option description (in English), "(no description)" if there's no description + - ${string_values}: string values allowed for set of an integer option using strings + - ${marked}: "1" if option is marked, otherwise "0" + - ${index}: index of option in list + - option data, with color but no spaces: + - same names prefixed by underscore, for example: ${_name}, ${_type}, ... + - option data, raw format (no colors/spaces): + - same names prefixed by two underscores, for example: ${__name}, ${__type}, ... + - option data, only spaces: + - same names prefixed with "empty_", for example: ${empty_name}, ${empty_type} + - other data: + - ${selected_line}: "1" if the line is selected, otherwise "0" + - ${newline}: insert a new line at point, so the option is displayed on multiple lines + +Keys and input to move in on fset buffer: + up move one line up + down move one line down + pgup move one page up + pgdn move one page down + alt-home << move to first line + alt-end >> move to last line + F11 < scroll horizontally on the left + F12 > scroll horizontally on the right + +Keys and input to set options on fset buffer: + alt+space t toggle boolean value + alt+'-' - subtract 1 from value for integer/color, set value for other types + alt+'+' + add 1 to value for integer/color, append to value for other types + alt+f, alt+r r reset value + alt+f, alt+u u unset value + alt+enter s set value + alt+f, alt+n n set new value + alt+f, alt+a a append to value + alt+',' , mark/unmark option + shift+up move one line up and mark/unmark option + shift+down mark/unmark option and move one line down + m:xxx mark options displayed that are matching filter "xxx" (any filter on option or value is allowed, see filters above) + u:xxx unmark options displayed that are matching filter "xxx" (any filter on option or value is allowed, see filters above) + +Other keys and input on fset buffer: + ctrl+L refresh options and whole screen (command: /fset -refresh) + $ refresh options (keep marked options) + $$ refresh options (unmark all options) + p toggle plugin description options (plugins.desc.*) + v toggle help bar + s:x,y sort options by fields x,y (see /help fset.look.sort) + s: reset sort to its default value (see /help fset.look.sort) + w:xxx export options in file "xxx" + w-:xxx export options in file "xxx" without help + w+:xxx export options in file "xxx" with help + ctrl+X x switch the format used to display options + q close fset buffer + +Mouse actions on fset buffer: + wheel up/down move line up/down + left button move line here + right button toggle boolean (on/off) or edit the option value + right button + drag left/right increase/decrease value for integer/color, set/append to value for other types + right button + drag up/down mark/unmark multiple options + +Note: spaces at beginning of input are ignored, so for example "q" closes the fset buffer while " q" searches all options with "q" inside name. + +Examples: + show IRC options changed: + /fset d:irc.* + show all options with "nicklist" in name: + /fset nicklist + show all values which contain "red": + /fset =red + show all values which are exactly "red": + /fset ==red + show all integer options in irc plugin: + /fset c:${file} == irc && ${type_en} == integer +---- diff --git a/doc/ja/autogen/user/fset_options.adoc b/doc/ja/autogen/user/fset_options.adoc new file mode 100644 index 000000000..34bb3d9a1 --- /dev/null +++ b/doc/ja/autogen/user/fset_options.adoc @@ -0,0 +1,483 @@ +// +// This file is auto-generated by script docgen.py. +// DO NOT EDIT BY HAND! +// +* [[option_fset.color.default_value]] *fset.color.default_value* +** 説明: pass:none[color for default value] +** タイプ: 色 +** 値: WeeChat の色名 (default、black、(dark)gray、white、(light)red、(light)green、brown、yellow、(light)blue、(light)magenta、(light)cyan) 、端末色番号またはその別名; 色の前に属性を置くことができます (テキスト前景色のみ、背景色は出来ません): 太字は "*"、反転は "!"、イタリックは "/"、下線は "_" +** デフォルト値: `+default+` + +* [[option_fset.color.default_value_selected]] *fset.color.default_value_selected* +** 説明: pass:none[color for default value on the selected line] +** タイプ: 色 +** 値: WeeChat の色名 (default、black、(dark)gray、white、(light)red、(light)green、brown、yellow、(light)blue、(light)magenta、(light)cyan) 、端末色番号またはその別名; 色の前に属性を置くことができます (テキスト前景色のみ、背景色は出来ません): 太字は "*"、反転は "!"、イタリックは "/"、下線は "_" +** デフォルト値: `+white+` + +* [[option_fset.color.description]] *fset.color.description* +** 説明: pass:none[color for description] +** タイプ: 色 +** 値: WeeChat の色名 (default、black、(dark)gray、white、(light)red、(light)green、brown、yellow、(light)blue、(light)magenta、(light)cyan) 、端末色番号またはその別名; 色の前に属性を置くことができます (テキスト前景色のみ、背景色は出来ません): 太字は "*"、反転は "!"、イタリックは "/"、下線は "_" +** デフォルト値: `+default+` + +* [[option_fset.color.description_selected]] *fset.color.description_selected* +** 説明: pass:none[color for description on the selected line] +** タイプ: 色 +** 値: WeeChat の色名 (default、black、(dark)gray、white、(light)red、(light)green、brown、yellow、(light)blue、(light)magenta、(light)cyan) 、端末色番号またはその別名; 色の前に属性を置くことができます (テキスト前景色のみ、背景色は出来ません): 太字は "*"、反転は "!"、イタリックは "/"、下線は "_" +** デフォルト値: `+white+` + +* [[option_fset.color.file]] *fset.color.file* +** 説明: pass:none[color for file] +** タイプ: 色 +** 値: WeeChat の色名 (default、black、(dark)gray、white、(light)red、(light)green、brown、yellow、(light)blue、(light)magenta、(light)cyan) 、端末色番号またはその別名; 色の前に属性を置くことができます (テキスト前景色のみ、背景色は出来ません): 太字は "*"、反転は "!"、イタリックは "/"、下線は "_" +** デフォルト値: `+default+` + +* [[option_fset.color.file_changed]] *fset.color.file_changed* +** 説明: pass:none[color for file if value is changed] +** タイプ: 色 +** 値: WeeChat の色名 (default、black、(dark)gray、white、(light)red、(light)green、brown、yellow、(light)blue、(light)magenta、(light)cyan) 、端末色番号またはその別名; 色の前に属性を置くことができます (テキスト前景色のみ、背景色は出来ません): 太字は "*"、反転は "!"、イタリックは "/"、下線は "_" +** デフォルト値: `+brown+` + +* [[option_fset.color.file_changed_selected]] *fset.color.file_changed_selected* +** 説明: pass:none[color for file if value is changed on the selected line] +** タイプ: 色 +** 値: WeeChat の色名 (default、black、(dark)gray、white、(light)red、(light)green、brown、yellow、(light)blue、(light)magenta、(light)cyan) 、端末色番号またはその別名; 色の前に属性を置くことができます (テキスト前景色のみ、背景色は出来ません): 太字は "*"、反転は "!"、イタリックは "/"、下線は "_" +** デフォルト値: `+yellow+` + +* [[option_fset.color.file_selected]] *fset.color.file_selected* +** 説明: pass:none[color for file on the selected line] +** タイプ: 色 +** 値: WeeChat の色名 (default、black、(dark)gray、white、(light)red、(light)green、brown、yellow、(light)blue、(light)magenta、(light)cyan) 、端末色番号またはその別名; 色の前に属性を置くことができます (テキスト前景色のみ、背景色は出来ません): 太字は "*"、反転は "!"、イタリックは "/"、下線は "_" +** デフォルト値: `+white+` + +* [[option_fset.color.help_default_value]] *fset.color.help_default_value* +** 説明: pass:none[color for default value in help bar] +** タイプ: 色 +** 値: WeeChat の色名 (default、black、(dark)gray、white、(light)red、(light)green、brown、yellow、(light)blue、(light)magenta、(light)cyan) 、端末色番号またはその別名; 色の前に属性を置くことができます (テキスト前景色のみ、背景色は出来ません): 太字は "*"、反転は "!"、イタリックは "/"、下線は "_" +** デフォルト値: `+white+` + +* [[option_fset.color.help_description]] *fset.color.help_description* +** 説明: pass:none[color for description in help bar] +** タイプ: 色 +** 値: WeeChat の色名 (default、black、(dark)gray、white、(light)red、(light)green、brown、yellow、(light)blue、(light)magenta、(light)cyan) 、端末色番号またはその別名; 色の前に属性を置くことができます (テキスト前景色のみ、背景色は出来ません): 太字は "*"、反転は "!"、イタリックは "/"、下線は "_" +** デフォルト値: `+default+` + +* [[option_fset.color.help_name]] *fset.color.help_name* +** 説明: pass:none[color for name in help bar] +** タイプ: 色 +** 値: WeeChat の色名 (default、black、(dark)gray、white、(light)red、(light)green、brown、yellow、(light)blue、(light)magenta、(light)cyan) 、端末色番号またはその別名; 色の前に属性を置くことができます (テキスト前景色のみ、背景色は出来ません): 太字は "*"、反転は "!"、イタリックは "/"、下線は "_" +** デフォルト値: `+white+` + +* [[option_fset.color.help_quotes]] *fset.color.help_quotes* +** 説明: pass:none[color for quotes around string values] +** タイプ: 色 +** 値: WeeChat の色名 (default、black、(dark)gray、white、(light)red、(light)green、brown、yellow、(light)blue、(light)magenta、(light)cyan) 、端末色番号またはその別名; 色の前に属性を置くことができます (テキスト前景色のみ、背景色は出来ません): 太字は "*"、反転は "!"、イタリックは "/"、下線は "_" +** デフォルト値: `+darkgray+` + +* [[option_fset.color.help_values]] *fset.color.help_values* +** 説明: pass:none[color for allowed values] +** タイプ: 色 +** 値: WeeChat の色名 (default、black、(dark)gray、white、(light)red、(light)green、brown、yellow、(light)blue、(light)magenta、(light)cyan) 、端末色番号またはその別名; 色の前に属性を置くことができます (テキスト前景色のみ、背景色は出来ません): 太字は "*"、反転は "!"、イタリックは "/"、下線は "_" +** デフォルト値: `+default+` + +* [[option_fset.color.index]] *fset.color.index* +** 説明: pass:none[color for index of option] +** タイプ: 色 +** 値: WeeChat の色名 (default、black、(dark)gray、white、(light)red、(light)green、brown、yellow、(light)blue、(light)magenta、(light)cyan) 、端末色番号またはその別名; 色の前に属性を置くことができます (テキスト前景色のみ、背景色は出来ません): 太字は "*"、反転は "!"、イタリックは "/"、下線は "_" +** デフォルト値: `+cyan+` + +* [[option_fset.color.index_selected]] *fset.color.index_selected* +** 説明: pass:none[color for index of option on the selected line] +** タイプ: 色 +** 値: WeeChat の色名 (default、black、(dark)gray、white、(light)red、(light)green、brown、yellow、(light)blue、(light)magenta、(light)cyan) 、端末色番号またはその別名; 色の前に属性を置くことができます (テキスト前景色のみ、背景色は出来ません): 太字は "*"、反転は "!"、イタリックは "/"、下線は "_" +** デフォルト値: `+lightcyan+` + +* [[option_fset.color.line_marked_bg1]] *fset.color.line_marked_bg1* +** 説明: pass:none[background color for a marked line (used with the first format, see option fset.format.option1)] +** タイプ: 色 +** 値: WeeChat の色名 (default、black、(dark)gray、white、(light)red、(light)green、brown、yellow、(light)blue、(light)magenta、(light)cyan) 、端末色番号またはその別名; 色の前に属性を置くことができます (テキスト前景色のみ、背景色は出来ません): 太字は "*"、反転は "!"、イタリックは "/"、下線は "_" +** デフォルト値: `+default+` + +* [[option_fset.color.line_marked_bg2]] *fset.color.line_marked_bg2* +** 説明: pass:none[background color for a marked line (used with the second format, see option fset.format.option2)] +** タイプ: 色 +** 値: WeeChat の色名 (default、black、(dark)gray、white、(light)red、(light)green、brown、yellow、(light)blue、(light)magenta、(light)cyan) 、端末色番号またはその別名; 色の前に属性を置くことができます (テキスト前景色のみ、背景色は出来ません): 太字は "*"、反転は "!"、イタリックは "/"、下線は "_" +** デフォルト値: `+default+` + +* [[option_fset.color.line_selected_bg1]] *fset.color.line_selected_bg1* +** 説明: pass:none[background color for the selected line (used with the first format, see option fset.format.option1)] +** タイプ: 色 +** 値: WeeChat の色名 (default、black、(dark)gray、white、(light)red、(light)green、brown、yellow、(light)blue、(light)magenta、(light)cyan) 、端末色番号またはその別名; 色の前に属性を置くことができます (テキスト前景色のみ、背景色は出来ません): 太字は "*"、反転は "!"、イタリックは "/"、下線は "_" +** デフォルト値: `+blue+` + +* [[option_fset.color.line_selected_bg2]] *fset.color.line_selected_bg2* +** 説明: pass:none[background color for the selected line (used with the second format, see option fset.format.option2)] +** タイプ: 色 +** 値: WeeChat の色名 (default、black、(dark)gray、white、(light)red、(light)green、brown、yellow、(light)blue、(light)magenta、(light)cyan) 、端末色番号またはその別名; 色の前に属性を置くことができます (テキスト前景色のみ、背景色は出来ません): 太字は "*"、反転は "!"、イタリックは "/"、下線は "_" +** デフォルト値: `+red+` + +* [[option_fset.color.marked]] *fset.color.marked* +** 説明: pass:none[color for mark indicator] +** タイプ: 色 +** 値: WeeChat の色名 (default、black、(dark)gray、white、(light)red、(light)green、brown、yellow、(light)blue、(light)magenta、(light)cyan) 、端末色番号またはその別名; 色の前に属性を置くことができます (テキスト前景色のみ、背景色は出来ません): 太字は "*"、反転は "!"、イタリックは "/"、下線は "_" +** デフォルト値: `+brown+` + +* [[option_fset.color.marked_selected]] *fset.color.marked_selected* +** 説明: pass:none[color for mark indicator on the selected line] +** タイプ: 色 +** 値: WeeChat の色名 (default、black、(dark)gray、white、(light)red、(light)green、brown、yellow、(light)blue、(light)magenta、(light)cyan) 、端末色番号またはその別名; 色の前に属性を置くことができます (テキスト前景色のみ、背景色は出来ません): 太字は "*"、反転は "!"、イタリックは "/"、下線は "_" +** デフォルト値: `+yellow+` + +* [[option_fset.color.max]] *fset.color.max* +** 説明: pass:none[color for max value] +** タイプ: 色 +** 値: WeeChat の色名 (default、black、(dark)gray、white、(light)red、(light)green、brown、yellow、(light)blue、(light)magenta、(light)cyan) 、端末色番号またはその別名; 色の前に属性を置くことができます (テキスト前景色のみ、背景色は出来ません): 太字は "*"、反転は "!"、イタリックは "/"、下線は "_" +** デフォルト値: `+default+` + +* [[option_fset.color.max_selected]] *fset.color.max_selected* +** 説明: pass:none[color for max value on the selected line] +** タイプ: 色 +** 値: WeeChat の色名 (default、black、(dark)gray、white、(light)red、(light)green、brown、yellow、(light)blue、(light)magenta、(light)cyan) 、端末色番号またはその別名; 色の前に属性を置くことができます (テキスト前景色のみ、背景色は出来ません): 太字は "*"、反転は "!"、イタリックは "/"、下線は "_" +** デフォルト値: `+white+` + +* [[option_fset.color.min]] *fset.color.min* +** 説明: pass:none[color for min value] +** タイプ: 色 +** 値: WeeChat の色名 (default、black、(dark)gray、white、(light)red、(light)green、brown、yellow、(light)blue、(light)magenta、(light)cyan) 、端末色番号またはその別名; 色の前に属性を置くことができます (テキスト前景色のみ、背景色は出来ません): 太字は "*"、反転は "!"、イタリックは "/"、下線は "_" +** デフォルト値: `+default+` + +* [[option_fset.color.min_selected]] *fset.color.min_selected* +** 説明: pass:none[color for min value on the selected line] +** タイプ: 色 +** 値: WeeChat の色名 (default、black、(dark)gray、white、(light)red、(light)green、brown、yellow、(light)blue、(light)magenta、(light)cyan) 、端末色番号またはその別名; 色の前に属性を置くことができます (テキスト前景色のみ、背景色は出来ません): 太字は "*"、反転は "!"、イタリックは "/"、下線は "_" +** デフォルト値: `+white+` + +* [[option_fset.color.name]] *fset.color.name* +** 説明: pass:none[color for name] +** タイプ: 色 +** 値: WeeChat の色名 (default、black、(dark)gray、white、(light)red、(light)green、brown、yellow、(light)blue、(light)magenta、(light)cyan) 、端末色番号またはその別名; 色の前に属性を置くことができます (テキスト前景色のみ、背景色は出来ません): 太字は "*"、反転は "!"、イタリックは "/"、下線は "_" +** デフォルト値: `+default+` + +* [[option_fset.color.name_changed]] *fset.color.name_changed* +** 説明: pass:none[color for name if value is changed] +** タイプ: 色 +** 値: WeeChat の色名 (default、black、(dark)gray、white、(light)red、(light)green、brown、yellow、(light)blue、(light)magenta、(light)cyan) 、端末色番号またはその別名; 色の前に属性を置くことができます (テキスト前景色のみ、背景色は出来ません): 太字は "*"、反転は "!"、イタリックは "/"、下線は "_" +** デフォルト値: `+brown+` + +* [[option_fset.color.name_changed_selected]] *fset.color.name_changed_selected* +** 説明: pass:none[color for name if value is changed on the selected line] +** タイプ: 色 +** 値: WeeChat の色名 (default、black、(dark)gray、white、(light)red、(light)green、brown、yellow、(light)blue、(light)magenta、(light)cyan) 、端末色番号またはその別名; 色の前に属性を置くことができます (テキスト前景色のみ、背景色は出来ません): 太字は "*"、反転は "!"、イタリックは "/"、下線は "_" +** デフォルト値: `+yellow+` + +* [[option_fset.color.name_selected]] *fset.color.name_selected* +** 説明: pass:none[color for name on the selected line] +** タイプ: 色 +** 値: WeeChat の色名 (default、black、(dark)gray、white、(light)red、(light)green、brown、yellow、(light)blue、(light)magenta、(light)cyan) 、端末色番号またはその別名; 色の前に属性を置くことができます (テキスト前景色のみ、背景色は出来ません): 太字は "*"、反転は "!"、イタリックは "/"、下線は "_" +** デフォルト値: `+white+` + +* [[option_fset.color.option]] *fset.color.option* +** 説明: pass:none[color for option] +** タイプ: 色 +** 値: WeeChat の色名 (default、black、(dark)gray、white、(light)red、(light)green、brown、yellow、(light)blue、(light)magenta、(light)cyan) 、端末色番号またはその別名; 色の前に属性を置くことができます (テキスト前景色のみ、背景色は出来ません): 太字は "*"、反転は "!"、イタリックは "/"、下線は "_" +** デフォルト値: `+default+` + +* [[option_fset.color.option_changed]] *fset.color.option_changed* +** 説明: pass:none[color for option if value is changed] +** タイプ: 色 +** 値: WeeChat の色名 (default、black、(dark)gray、white、(light)red、(light)green、brown、yellow、(light)blue、(light)magenta、(light)cyan) 、端末色番号またはその別名; 色の前に属性を置くことができます (テキスト前景色のみ、背景色は出来ません): 太字は "*"、反転は "!"、イタリックは "/"、下線は "_" +** デフォルト値: `+brown+` + +* [[option_fset.color.option_changed_selected]] *fset.color.option_changed_selected* +** 説明: pass:none[color for option if value is changed on the selected line] +** タイプ: 色 +** 値: WeeChat の色名 (default、black、(dark)gray、white、(light)red、(light)green、brown、yellow、(light)blue、(light)magenta、(light)cyan) 、端末色番号またはその別名; 色の前に属性を置くことができます (テキスト前景色のみ、背景色は出来ません): 太字は "*"、反転は "!"、イタリックは "/"、下線は "_" +** デフォルト値: `+yellow+` + +* [[option_fset.color.option_selected]] *fset.color.option_selected* +** 説明: pass:none[color for option on the selected line] +** タイプ: 色 +** 値: WeeChat の色名 (default、black、(dark)gray、white、(light)red、(light)green、brown、yellow、(light)blue、(light)magenta、(light)cyan) 、端末色番号またはその別名; 色の前に属性を置くことができます (テキスト前景色のみ、背景色は出来ません): 太字は "*"、反転は "!"、イタリックは "/"、下線は "_" +** デフォルト値: `+white+` + +* [[option_fset.color.parent_name]] *fset.color.parent_name* +** 説明: pass:none[color for name of parent option] +** タイプ: 色 +** 値: WeeChat の色名 (default、black、(dark)gray、white、(light)red、(light)green、brown、yellow、(light)blue、(light)magenta、(light)cyan) 、端末色番号またはその別名; 色の前に属性を置くことができます (テキスト前景色のみ、背景色は出来ません): 太字は "*"、反転は "!"、イタリックは "/"、下線は "_" +** デフォルト値: `+default+` + +* [[option_fset.color.parent_name_selected]] *fset.color.parent_name_selected* +** 説明: pass:none[color for name of parent option on the selected line] +** タイプ: 色 +** 値: WeeChat の色名 (default、black、(dark)gray、white、(light)red、(light)green、brown、yellow、(light)blue、(light)magenta、(light)cyan) 、端末色番号またはその別名; 色の前に属性を置くことができます (テキスト前景色のみ、背景色は出来ません): 太字は "*"、反転は "!"、イタリックは "/"、下線は "_" +** デフォルト値: `+white+` + +* [[option_fset.color.parent_value]] *fset.color.parent_value* +** 説明: pass:none[color for value of parent option] +** タイプ: 色 +** 値: WeeChat の色名 (default、black、(dark)gray、white、(light)red、(light)green、brown、yellow、(light)blue、(light)magenta、(light)cyan) 、端末色番号またはその別名; 色の前に属性を置くことができます (テキスト前景色のみ、背景色は出来ません): 太字は "*"、反転は "!"、イタリックは "/"、下線は "_" +** デフォルト値: `+cyan+` + +* [[option_fset.color.parent_value_selected]] *fset.color.parent_value_selected* +** 説明: pass:none[color for value of parent option on the selected line] +** タイプ: 色 +** 値: WeeChat の色名 (default、black、(dark)gray、white、(light)red、(light)green、brown、yellow、(light)blue、(light)magenta、(light)cyan) 、端末色番号またはその別名; 色の前に属性を置くことができます (テキスト前景色のみ、背景色は出来ません): 太字は "*"、反転は "!"、イタリックは "/"、下線は "_" +** デフォルト値: `+lightcyan+` + +* [[option_fset.color.quotes]] *fset.color.quotes* +** 説明: pass:none[color for quotes around string values] +** タイプ: 色 +** 値: WeeChat の色名 (default、black、(dark)gray、white、(light)red、(light)green、brown、yellow、(light)blue、(light)magenta、(light)cyan) 、端末色番号またはその別名; 色の前に属性を置くことができます (テキスト前景色のみ、背景色は出来ません): 太字は "*"、反転は "!"、イタリックは "/"、下線は "_" +** デフォルト値: `+darkgray+` + +* [[option_fset.color.quotes_changed]] *fset.color.quotes_changed* +** 説明: pass:none[color for quotes around string values which are changed] +** タイプ: 色 +** 値: WeeChat の色名 (default、black、(dark)gray、white、(light)red、(light)green、brown、yellow、(light)blue、(light)magenta、(light)cyan) 、端末色番号またはその別名; 色の前に属性を置くことができます (テキスト前景色のみ、背景色は出来ません): 太字は "*"、反転は "!"、イタリックは "/"、下線は "_" +** デフォルト値: `+default+` + +* [[option_fset.color.quotes_changed_selected]] *fset.color.quotes_changed_selected* +** 説明: pass:none[color for quotes around string values which are changed on the selected line] +** タイプ: 色 +** 値: WeeChat の色名 (default、black、(dark)gray、white、(light)red、(light)green、brown、yellow、(light)blue、(light)magenta、(light)cyan) 、端末色番号またはその別名; 色の前に属性を置くことができます (テキスト前景色のみ、背景色は出来ません): 太字は "*"、反転は "!"、イタリックは "/"、下線は "_" +** デフォルト値: `+white+` + +* [[option_fset.color.quotes_selected]] *fset.color.quotes_selected* +** 説明: pass:none[color for quotes around string values on the selected line] +** タイプ: 色 +** 値: WeeChat の色名 (default、black、(dark)gray、white、(light)red、(light)green、brown、yellow、(light)blue、(light)magenta、(light)cyan) 、端末色番号またはその別名; 色の前に属性を置くことができます (テキスト前景色のみ、背景色は出来ません): 太字は "*"、反転は "!"、イタリックは "/"、下線は "_" +** デフォルト値: `+default+` + +* [[option_fset.color.section]] *fset.color.section* +** 説明: pass:none[color for section] +** タイプ: 色 +** 値: WeeChat の色名 (default、black、(dark)gray、white、(light)red、(light)green、brown、yellow、(light)blue、(light)magenta、(light)cyan) 、端末色番号またはその別名; 色の前に属性を置くことができます (テキスト前景色のみ、背景色は出来ません): 太字は "*"、反転は "!"、イタリックは "/"、下線は "_" +** デフォルト値: `+default+` + +* [[option_fset.color.section_changed]] *fset.color.section_changed* +** 説明: pass:none[color for section if value is changed] +** タイプ: 色 +** 値: WeeChat の色名 (default、black、(dark)gray、white、(light)red、(light)green、brown、yellow、(light)blue、(light)magenta、(light)cyan) 、端末色番号またはその別名; 色の前に属性を置くことができます (テキスト前景色のみ、背景色は出来ません): 太字は "*"、反転は "!"、イタリックは "/"、下線は "_" +** デフォルト値: `+brown+` + +* [[option_fset.color.section_changed_selected]] *fset.color.section_changed_selected* +** 説明: pass:none[color for section if value is changed on the selected line] +** タイプ: 色 +** 値: WeeChat の色名 (default、black、(dark)gray、white、(light)red、(light)green、brown、yellow、(light)blue、(light)magenta、(light)cyan) 、端末色番号またはその別名; 色の前に属性を置くことができます (テキスト前景色のみ、背景色は出来ません): 太字は "*"、反転は "!"、イタリックは "/"、下線は "_" +** デフォルト値: `+yellow+` + +* [[option_fset.color.section_selected]] *fset.color.section_selected* +** 説明: pass:none[color for section on the selected line] +** タイプ: 色 +** 値: WeeChat の色名 (default、black、(dark)gray、white、(light)red、(light)green、brown、yellow、(light)blue、(light)magenta、(light)cyan) 、端末色番号またはその別名; 色の前に属性を置くことができます (テキスト前景色のみ、背景色は出来ません): 太字は "*"、反転は "!"、イタリックは "/"、下線は "_" +** デフォルト値: `+white+` + +* [[option_fset.color.string_values]] *fset.color.string_values* +** 説明: pass:none[color for string values] +** タイプ: 色 +** 値: WeeChat の色名 (default、black、(dark)gray、white、(light)red、(light)green、brown、yellow、(light)blue、(light)magenta、(light)cyan) 、端末色番号またはその別名; 色の前に属性を置くことができます (テキスト前景色のみ、背景色は出来ません): 太字は "*"、反転は "!"、イタリックは "/"、下線は "_" +** デフォルト値: `+default+` + +* [[option_fset.color.string_values_selected]] *fset.color.string_values_selected* +** 説明: pass:none[color for string values on the selected line] +** タイプ: 色 +** 値: WeeChat の色名 (default、black、(dark)gray、white、(light)red、(light)green、brown、yellow、(light)blue、(light)magenta、(light)cyan) 、端末色番号またはその別名; 色の前に属性を置くことができます (テキスト前景色のみ、背景色は出来ません): 太字は "*"、反転は "!"、イタリックは "/"、下線は "_" +** デフォルト値: `+white+` + +* [[option_fset.color.title_count_options]] *fset.color.title_count_options* +** 説明: pass:none[color for the count of options found with the current filter in title of buffer] +** タイプ: 色 +** 値: WeeChat の色名 (default、black、(dark)gray、white、(light)red、(light)green、brown、yellow、(light)blue、(light)magenta、(light)cyan) 、端末色番号またはその別名; 色の前に属性を置くことができます (テキスト前景色のみ、背景色は出来ません): 太字は "*"、反転は "!"、イタリックは "/"、下線は "_" +** デフォルト値: `+cyan+` + +* [[option_fset.color.title_current_option]] *fset.color.title_current_option* +** 説明: pass:none[color for current option number in title of buffer] +** タイプ: 色 +** 値: WeeChat の色名 (default、black、(dark)gray、white、(light)red、(light)green、brown、yellow、(light)blue、(light)magenta、(light)cyan) 、端末色番号またはその別名; 色の前に属性を置くことができます (テキスト前景色のみ、背景色は出来ません): 太字は "*"、反転は "!"、イタリックは "/"、下線は "_" +** デフォルト値: `+lightcyan+` + +* [[option_fset.color.title_filter]] *fset.color.title_filter* +** 説明: pass:none[color for filter in title of buffer] +** タイプ: 色 +** 値: WeeChat の色名 (default、black、(dark)gray、white、(light)red、(light)green、brown、yellow、(light)blue、(light)magenta、(light)cyan) 、端末色番号またはその別名; 色の前に属性を置くことができます (テキスト前景色のみ、背景色は出来ません): 太字は "*"、反転は "!"、イタリックは "/"、下線は "_" +** デフォルト値: `+yellow+` + +* [[option_fset.color.title_marked_options]] *fset.color.title_marked_options* +** 説明: pass:none[color for number of marked options in title of buffer] +** タイプ: 色 +** 値: WeeChat の色名 (default、black、(dark)gray、white、(light)red、(light)green、brown、yellow、(light)blue、(light)magenta、(light)cyan) 、端末色番号またはその別名; 色の前に属性を置くことができます (テキスト前景色のみ、背景色は出来ません): 太字は "*"、反転は "!"、イタリックは "/"、下線は "_" +** デフォルト値: `+lightgreen+` + +* [[option_fset.color.title_sort]] *fset.color.title_sort* +** 説明: pass:none[color for sort in title of buffer] +** タイプ: 色 +** 値: WeeChat の色名 (default、black、(dark)gray、white、(light)red、(light)green、brown、yellow、(light)blue、(light)magenta、(light)cyan) 、端末色番号またはその別名; 色の前に属性を置くことができます (テキスト前景色のみ、背景色は出来ません): 太字は "*"、反転は "!"、イタリックは "/"、下線は "_" +** デフォルト値: `+white+` + +* [[option_fset.color.type]] *fset.color.type* +** 説明: pass:none[color for type] +** タイプ: 色 +** 値: WeeChat の色名 (default、black、(dark)gray、white、(light)red、(light)green、brown、yellow、(light)blue、(light)magenta、(light)cyan) 、端末色番号またはその別名; 色の前に属性を置くことができます (テキスト前景色のみ、背景色は出来ません): 太字は "*"、反転は "!"、イタリックは "/"、下線は "_" +** デフォルト値: `+green+` + +* [[option_fset.color.type_selected]] *fset.color.type_selected* +** 説明: pass:none[color for type on the selected line] +** タイプ: 色 +** 値: WeeChat の色名 (default、black、(dark)gray、white、(light)red、(light)green、brown、yellow、(light)blue、(light)magenta、(light)cyan) 、端末色番号またはその別名; 色の前に属性を置くことができます (テキスト前景色のみ、背景色は出来ません): 太字は "*"、反転は "!"、イタリックは "/"、下線は "_" +** デフォルト値: `+lightgreen+` + +* [[option_fset.color.unmarked]] *fset.color.unmarked* +** 説明: pass:none[color for mark indicator when the option is not marked] +** タイプ: 色 +** 値: WeeChat の色名 (default、black、(dark)gray、white、(light)red、(light)green、brown、yellow、(light)blue、(light)magenta、(light)cyan) 、端末色番号またはその別名; 色の前に属性を置くことができます (テキスト前景色のみ、背景色は出来ません): 太字は "*"、反転は "!"、イタリックは "/"、下線は "_" +** デフォルト値: `+default+` + +* [[option_fset.color.unmarked_selected]] *fset.color.unmarked_selected* +** 説明: pass:none[color for mark indicator when the option is not marked on the selected line] +** タイプ: 色 +** 値: WeeChat の色名 (default、black、(dark)gray、white、(light)red、(light)green、brown、yellow、(light)blue、(light)magenta、(light)cyan) 、端末色番号またはその別名; 色の前に属性を置くことができます (テキスト前景色のみ、背景色は出来ません): 太字は "*"、反転は "!"、イタリックは "/"、下線は "_" +** デフォルト値: `+white+` + +* [[option_fset.color.value]] *fset.color.value* +** 説明: pass:none[color for value] +** タイプ: 色 +** 値: WeeChat の色名 (default、black、(dark)gray、white、(light)red、(light)green、brown、yellow、(light)blue、(light)magenta、(light)cyan) 、端末色番号またはその別名; 色の前に属性を置くことができます (テキスト前景色のみ、背景色は出来ません): 太字は "*"、反転は "!"、イタリックは "/"、下線は "_" +** デフォルト値: `+cyan+` + +* [[option_fset.color.value_changed]] *fset.color.value_changed* +** 説明: pass:none[color for value changed (different from default)] +** タイプ: 色 +** 値: WeeChat の色名 (default、black、(dark)gray、white、(light)red、(light)green、brown、yellow、(light)blue、(light)magenta、(light)cyan) 、端末色番号またはその別名; 色の前に属性を置くことができます (テキスト前景色のみ、背景色は出来ません): 太字は "*"、反転は "!"、イタリックは "/"、下線は "_" +** デフォルト値: `+brown+` + +* [[option_fset.color.value_changed_selected]] *fset.color.value_changed_selected* +** 説明: pass:none[color for value changed (different from default) on the selected line] +** タイプ: 色 +** 値: WeeChat の色名 (default、black、(dark)gray、white、(light)red、(light)green、brown、yellow、(light)blue、(light)magenta、(light)cyan) 、端末色番号またはその別名; 色の前に属性を置くことができます (テキスト前景色のみ、背景色は出来ません): 太字は "*"、反転は "!"、イタリックは "/"、下線は "_" +** デフォルト値: `+yellow+` + +* [[option_fset.color.value_selected]] *fset.color.value_selected* +** 説明: pass:none[color for value on the selected line] +** タイプ: 色 +** 値: WeeChat の色名 (default、black、(dark)gray、white、(light)red、(light)green、brown、yellow、(light)blue、(light)magenta、(light)cyan) 、端末色番号またはその別名; 色の前に属性を置くことができます (テキスト前景色のみ、背景色は出来ません): 太字は "*"、反転は "!"、イタリックは "/"、下線は "_" +** デフォルト値: `+lightcyan+` + +* [[option_fset.color.value_undef]] *fset.color.value_undef* +** 説明: pass:none[color for undefined value] +** タイプ: 色 +** 値: WeeChat の色名 (default、black、(dark)gray、white、(light)red、(light)green、brown、yellow、(light)blue、(light)magenta、(light)cyan) 、端末色番号またはその別名; 色の前に属性を置くことができます (テキスト前景色のみ、背景色は出来ません): 太字は "*"、反転は "!"、イタリックは "/"、下線は "_" +** デフォルト値: `+magenta+` + +* [[option_fset.color.value_undef_selected]] *fset.color.value_undef_selected* +** 説明: pass:none[color for undefined value on the selected line] +** タイプ: 色 +** 値: WeeChat の色名 (default、black、(dark)gray、white、(light)red、(light)green、brown、yellow、(light)blue、(light)magenta、(light)cyan) 、端末色番号またはその別名; 色の前に属性を置くことができます (テキスト前景色のみ、背景色は出来ません): 太字は "*"、反転は "!"、イタリックは "/"、下線は "_" +** デフォルト値: `+lightmagenta+` + +* [[option_fset.format.export_help]] *fset.format.export_help* +** 説明: pass:none[format of help line written before each option exported in a file (note: content is evaluated, see /help fset)] +** タイプ: 文字列 +** 値: 未制約文字列 +** デフォルト値: `+"# ${description2}"+` + +* [[option_fset.format.export_option]] *fset.format.export_option* +** 説明: pass:none[format of each option exported in a file (note: content is evaluated, see /help fset)] +** タイプ: 文字列 +** 値: 未制約文字列 +** デフォルト値: `+"/set ${name} ${quoted_value}"+` + +* [[option_fset.format.export_option_null]] *fset.format.export_option_null* +** 説明: pass:none[format of each option with "null" value exported in a file (note: content is evaluated, see /help fset)] +** タイプ: 文字列 +** 値: 未制約文字列 +** デフォルト値: `+"/unset ${name}"+` + +* [[option_fset.format.option1]] *fset.format.option1* +** 説明: pass:none[first format of each line with an option which is not marked nor the selected one (note: content is evaluated, see /help fset); formats can be switched with key ctrl+X] +** タイプ: 文字列 +** 値: 未制約文字列 +** デフォルト値: `+"${marked} ${name} ${type} ${value2}"+` + +* [[option_fset.format.option2]] *fset.format.option2* +** 説明: pass:none[second format of each line with an option which is not marked not the selected one (note: content is evaluated, see /help fset); formats can be switched with key ctrl+X] +** タイプ: 文字列 +** 値: 未制約文字列 +** デフォルト値: `+"${marked} ${name} ${type} ${value2}${newline} ${empty_name} ${_default_value}${color:darkgray} -- ${min}..${max}${newline} ${empty_name} ${description}"+` + +* [[option_fset.look.auto_unmark]] *fset.look.auto_unmark* +** 説明: pass:none[automatically unmark all options after an action on marked options or after a refresh] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+off+` + +* [[option_fset.look.condition_catch_set]] *fset.look.condition_catch_set* +** 説明: pass:none[condition to catch /set command and display results in the fset buffer; following variables can be used: ${name} (name of option given for the /set command), ${count} (number of options found with the /set argument); an empty string disables the catch of /set command; with value "1", the fset buffer is always used with /set command] +** タイプ: 文字列 +** 値: 未制約文字列 +** デフォルト値: `+"${count} >= 1"+` + +* [[option_fset.look.export_help_default]] *fset.look.export_help_default* +** 説明: pass:none[write help for each option exported by default (this can be overridden with arguments "-help" and "-nohelp" for command /fset -export)] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+on+` + +* [[option_fset.look.format_number]] *fset.look.format_number* +** 説明: pass:none[number of format used to display options; this is dynamically changed by the key ctrl-X on the fset buffer] +** タイプ: 整数 +** 値: 1 .. 2 +** デフォルト値: `+1+` + +* [[option_fset.look.marked_string]] *fset.look.marked_string* +** 説明: pass:none[string displayed when an option is marked (to do an action on multiple options)] +** タイプ: 文字列 +** 値: 未制約文字列 +** デフォルト値: `+"*"+` + +* [[option_fset.look.scroll_horizontal]] *fset.look.scroll_horizontal* +** 説明: pass:none[left/right scroll in fset buffer (percent of width)] +** タイプ: 整数 +** 値: 1 .. 100 +** デフォルト値: `+10+` + +* [[option_fset.look.show_help_bar]] *fset.look.show_help_bar* +** 説明: pass:none[display help bar in fset buffer (description of option, allowed values and default value)] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+on+` + +* [[option_fset.look.show_plugins_desc]] *fset.look.show_plugins_desc* +** 説明: pass:none[show the plugin description options (plugins.desc.*)] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+off+` + +* [[option_fset.look.sort]] *fset.look.sort* +** 説明: pass:none[comma-separated list of fields to sort options (see /help fset for a list of fields); char "-" can be used before field to reverse order, char "~" can be used to do a case insensitive comparison; example: "-~name" for case insensitive and reverse sort on option name] +** タイプ: 文字列 +** 値: 未制約文字列 +** デフォルト値: `+"~name"+` + +* [[option_fset.look.unmarked_string]] *fset.look.unmarked_string* +** 説明: pass:none[string displayed when an option is not marked] +** タイプ: 文字列 +** 値: 未制約文字列 +** デフォルト値: `+" "+` + +* [[option_fset.look.use_color_value]] *fset.look.use_color_value* +** 説明: pass:none[use the color to display value of color options] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+off+` + +* [[option_fset.look.use_keys]] *fset.look.use_keys* +** 説明: pass:none[use keys alt+X in fset buffer to do actions on options; if disabled, only the input is allowed] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+on+` + +* [[option_fset.look.use_mute]] *fset.look.use_mute* +** 説明: pass:none[use /mute command to set options] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+off+` |