summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2023-01-28 15:18:50 +0100
committerSébastien Helleu <flashcode@flashtux.org>2023-01-28 15:19:41 +0100
commitefe4aa29fcb192090f5891440e097832bcfbdfa2 (patch)
tree0d18404aa900bae4e76fdc54a3b0c0eca16110e9 /doc
parent4c1a87ba601ae05f242440310fbf3b9f8dd83087 (diff)
downloadweechat-efe4aa29fcb192090f5891440e097832bcfbdfa2.zip
core: update translations and auto-generated doc files (issue #1872)
Diffstat (limited to 'doc')
-rw-r--r--doc/de/includes/autogen_user_commands.de.adoc54
-rw-r--r--doc/de/includes/autogen_user_default_aliases.de.adoc64
-rw-r--r--doc/de/includes/autogen_user_options.de.adoc4254
-rw-r--r--doc/en/includes/autogen_user_commands.en.adoc4
-rw-r--r--doc/en/includes/autogen_user_default_aliases.en.adoc64
-rw-r--r--doc/en/includes/autogen_user_options.en.adoc4254
-rw-r--r--doc/fr/includes/autogen_api_config_priority.fr.adoc2
-rw-r--r--doc/fr/includes/autogen_api_plugins_priority.fr.adoc2
-rw-r--r--doc/fr/includes/autogen_user_commands.fr.adoc4
-rw-r--r--doc/fr/includes/autogen_user_default_aliases.fr.adoc64
-rw-r--r--doc/fr/includes/autogen_user_options.fr.adoc4254
-rw-r--r--doc/it/includes/autogen_user_commands.it.adoc4
-rw-r--r--doc/it/includes/autogen_user_default_aliases.it.adoc64
-rw-r--r--doc/it/includes/autogen_user_options.it.adoc4254
-rw-r--r--doc/ja/includes/autogen_user_commands.ja.adoc4
-rw-r--r--doc/ja/includes/autogen_user_default_aliases.ja.adoc64
-rw-r--r--doc/ja/includes/autogen_user_options.ja.adoc4254
-rw-r--r--doc/pl/includes/autogen_user_commands.pl.adoc60
-rw-r--r--doc/pl/includes/autogen_user_default_aliases.pl.adoc64
-rw-r--r--doc/pl/includes/autogen_user_options.pl.adoc4254
-rw-r--r--doc/sr/includes/autogen_user_commands.sr.adoc58
-rw-r--r--doc/sr/includes/autogen_user_default_aliases.sr.adoc64
-rw-r--r--doc/sr/includes/autogen_user_options.sr.adoc4254
23 files changed, 15223 insertions, 15195 deletions
diff --git a/doc/de/includes/autogen_user_commands.de.adoc b/doc/de/includes/autogen_user_commands.de.adoc
index 251938a7c..72db837c9 100644
--- a/doc/de/includes/autogen_user_commands.de.adoc
+++ b/doc/de/includes/autogen_user_commands.de.adoc
@@ -1076,32 +1076,36 @@ target: Antwort soll auf diese Suchmaske zutreffen
add <alias> [<command>[;<command>...]]
addcompletion <completion> <alias> [<command>[;<command>...]]
del <alias> [<alias>...]
-
- list: listet Alternativbefehle auf (ohne Angabe von Argumenten wird diese Liste dargestellt)
- add: fügt einen Alternativbefehl hinzu
-addcompletion: fügt einen Alternativbefehl, mit einer benutzerdefinierten Vervollständigung, hinzu
- del: entfernt einen Alternativbefehl
- completion: Vervollständigung für Alternativbefehl: standardmäßig wird die Vervollständigung auf den Zielbefehl angewendet
- Hinweis: Mit der Variablen "%%command" kann eine Vervollständigung eines vorhandenen Befehls durchgeführt werden
- alias: Name des Alternativbefehls
- command: Name des zuzuordnenden Befehls, inklusive Argumenten (mehrere Befehle können durch Semikolon getrennt werden)
-
-Anmerkung: Im Befehl können Variablen genutzt werden, die dann durch den entsprechenden Wert ersetzt werden:
- $n: Argument 'n' (zwischen 1 und 9)
- $-m: Argumente von 1 bis 'm'
- $n-: Argumente von 'n' bis zum letzten Argument
- $n-m: Argumente von 'n' bis 'm'
- $*: alle Argumente
- $~: letztes Argument
- $var: "var" ist eine lokale Variable für den jeweiligen Buffer (siehe /buffer listvar)
- Beispiel: $nick, $channel, $server, $plugin, $name
-
-Beispiele:
- Alternativbefehl "/split" wird anlegt um ein Fenster horizontal zu teilen:
+ rename <alias> <new_alias>
+
+ list: list aliases (without argument, this list is displayed)
+ add: add an alias
+addcompletion: add an alias with a custom completion
+ del: delete an alias
+ rename: rename an alias
+ completion: completion for alias: by default completion is done with target command
+ note: you can use %%command to use completion of an existing command
+ alias: name of alias
+ command: command name with arguments (many commands can be separated by semicolons)
+
+Note: in command, special variables are replaced:
+ $n: argument 'n' (between 1 and 9)
+ $-m: arguments from 1 to 'm'
+ $n-: arguments from 'n' to last
+ $n-m: arguments from 'n' to 'm'
+ $*: all arguments
+ $~: last argument
+ $var: where "var" is a local variable of buffer (see /buffer listvar)
+ examples: $nick, $channel, $server, $plugin, $name
+
+Examples:
+ alias /split to split window horizontally:
/alias add split /window splith
- Alternativbefehl "/hallo" wird angelegt um in allen Channels, außer im #weechat Channel, den Text "Hallo" auszugeben:
- /alias add hallo /allchan -exclude=#weechat hallo
- Alternativbefehl "/forcejoin" wird angelegt um den IRC Befehl "forcejoin" mit einer Vervollständigung von /sajoin auszuführen:
+ alias /hello to say "hello" on all channels but not on #weechat:
+ /alias add hello /allchan -exclude=#weechat hello
+ rename alias "hello" to "Hello":
+ /alias rename hello Hello
+ alias /forcejoin to send IRC command "forcejoin" with completion of /sajoin:
/alias addcompletion %%sajoin forcejoin /quote forcejoin
----
// end::alias_commands[]
diff --git a/doc/de/includes/autogen_user_default_aliases.de.adoc b/doc/de/includes/autogen_user_default_aliases.de.adoc
index f03b05f69..d584f6289 100644
--- a/doc/de/includes/autogen_user_default_aliases.de.adoc
+++ b/doc/de/includes/autogen_user_default_aliases.de.adoc
@@ -8,37 +8,37 @@
|===
| Alias | Befehl | Vervollständigung
-| /AAWAY | /allserv /away | -
-| /ANICK | /allserv /nick | -
-| /BEEP | /print -beep | -
-| /BYE | /quit | -
-| /C | /buffer clear | -
-| /CL | /buffer clear | -
-| /CLOSE | /buffer close | -
-| /CHAT | /dcc chat | -
-| /EXIT | /quit | -
-| /IG | /ignore | -
-| /J | /join | -
-| /K | /kick | -
-| /KB | /kickban | -
-| /LEAVE | /part | -
-| /M | /msg | -
-| /MUB | /unban * | -
-| /MSGBUF | /command -buffer $1 * /input send $2- | %(buffers_plugins_names)
-| /N | /names | -
-| /Q | /query | -
-| /REDRAW | /window refresh | -
-| /SAY | /msg * | -
-| /SIGNOFF | /quit | -
-| /T | /topic | -
-| /UB | /unban | -
-| /UMODE | /mode $nick | -
-| /V | /command core version | -
-| /W | /who | -
-| /WC | /window close | -
-| /WI | /whois | -
-| /WII | /whois $1 $1 | -
-| /WM | /window merge | -
-| /WW | /whowas | -
+| /aaway | /allserv /away | -
+| /anick | /allserv /nick | -
+| /beep | /print -beep | -
+| /bye | /quit | -
+| /c | /buffer clear | -
+| /cl | /buffer clear | -
+| /close | /buffer close | -
+| /chat | /dcc chat | -
+| /exit | /quit | -
+| /ig | /ignore | -
+| /j | /join | -
+| /k | /kick | -
+| /kb | /kickban | -
+| /leave | /part | -
+| /m | /msg | -
+| /mub | /unban * | -
+| /msgbuf | /command -buffer $1 * /input send $2- | %(buffers_plugins_names)
+| /n | /names | -
+| /q | /query | -
+| /redraw | /window refresh | -
+| /say | /msg * | -
+| /signoff | /quit | -
+| /t | /topic | -
+| /ub | /unban | -
+| /umode | /mode $nick | -
+| /v | /command core version | -
+| /w | /who | -
+| /wc | /window close | -
+| /wi | /whois | -
+| /wii | /whois $1 $1 | -
+| /wm | /window merge | -
+| /ww | /whowas | -
|===
// end::default_aliases[]
diff --git a/doc/de/includes/autogen_user_options.de.adoc b/doc/de/includes/autogen_user_options.de.adoc
index 22f4f0587..607e9993f 100644
--- a/doc/de/includes/autogen_user_options.de.adoc
+++ b/doc/de/includes/autogen_user_options.de.adoc
@@ -3,2109 +3,725 @@
// DO NOT EDIT BY HAND!
//
-// tag::sec_options[]
-* [[option_sec.crypt.cipher]] *sec.crypt.cipher*
-** Beschreibung: pass:none[zu nutzendes Chiffre zum Verschlüsseln von Daten (die Zahl hinter dem Algorithmus bestimmt die Größe des Schlüssels, in Bits)]
-** Typ: integer
-** Werte: aes128, aes192, aes256
-** Standardwert: `+aes256+`
+// tag::buflist_options[]
+* [[option_buflist.format.buffer]] *buflist.format.buffer*
+** Beschreibung: pass:none[Format für eine Zeile mit einem Buffer (Hinweis: Inhalt wird evaluiert, siehe /help buflist); Beispiel: Standardformat für Bar-Item "buflist" anwenden und nur die Buffernummer in eckigen Klammern für die anderen Bar-Items ("buflist2 und "buflist3") anzeigen: "${if:${bar_item.name}==buflist?${format_number}${indent}${format_nick_prefix}${color_hotlist}${format_name}:[${number}\]}"]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+"${format_number}${indent}${format_nick_prefix}${color_hotlist}${format_name}"+`
-* [[option_sec.crypt.hash_algo]] *sec.crypt.hash_algo*
-** Beschreibung: pass:none[Hash-Algorithmus zur Überprüfung der verschlüsselten Daten]
-** Typ: integer
-** Werte: sha224, sha256, sha384, sha512
-** Standardwert: `+sha256+`
+* [[option_buflist.format.buffer_current]] *buflist.format.buffer_current*
+** Beschreibung: pass:none[Format für die Zeile mit dem ausgewählten Buffer (Hinweis: Inhalt wird evaluiert, siehe /help buflist)]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+"${color:,blue}${format_buffer}"+`
-* [[option_sec.crypt.passphrase_command]] *sec.crypt.passphrase_command*
-** Beschreibung: pass:none[Auslesen der Passphrase aus der Ausgabe des angegebenen Befehls (nur die erste Zeile wird verwendet und darf kein zusätzliches Zeichen enthalten); Diese Option wird nur verwendet, wenn die Datei sec.conf gelesen wird und wenn die Umgebungsvariable "WEECHAT_PASSPHRASE" nicht festgelegt ist (die Umgebungsvariable hat eine höhere Priorität); Beispiel mit Passwortspeicher: "/usr/bin/pass show weechat / passphrase"]
+* [[option_buflist.format.hotlist]] *buflist.format.hotlist*
+** Beschreibung: pass:none[Format der Hotlist (Hinweis: Inhalt wird evaluiert, siehe /help buflist)]
** Typ: Zeichenkette
** Werte: beliebige Zeichenkette
-** Standardwert: `+""+`
+** Standardwert: `+" ${color:green}(${hotlist}${color:green})"+`
-* [[option_sec.crypt.salt]] *sec.crypt.salt*
-** Beschreibung: pass:none[nutzt salt bei der Schlüsselerstellung für die Verschlüsselung (wird für maximale Sicherheit empfohlen); wenn aktiviert, ist der Inhalt der verschlüsselten Daten bei jeder Sicherung in die Datei sec.conf verschieden. Wird die Datei sec.conf in eine Versionsverwaltung eingepflegt kann die Einstellung deaktiviert werden, um immer den selben Dateiinhalt zu erhalten]
+* [[option_buflist.format.hotlist_highlight]] *buflist.format.hotlist_highlight*
+** Beschreibung: pass:none[Format für Buffer mit der Benachrichtungsstufe "highlight" (Hinweis: Inhalt wird evaluiert, siehe /help buflist)]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+"${color:magenta}"+`
+
+* [[option_buflist.format.hotlist_low]] *buflist.format.hotlist_low*
+** Beschreibung: pass:none[Format für Buffer mit der Benachrichtungsstufe "low" (Hinweis: Inhalt wird evaluiert, siehe /help buflist)]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+"${color:white}"+`
+
+* [[option_buflist.format.hotlist_message]] *buflist.format.hotlist_message*
+** Beschreibung: pass:none[Format für Buffer mit der Benachrichtungsstufe "message" (Hinweis: Inhalt wird evaluiert, siehe /help buflist)]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+"${color:brown}"+`
+
+* [[option_buflist.format.hotlist_none]] *buflist.format.hotlist_none*
+** Beschreibung: pass:none[Format für Buffer die nicht in der Hotlist angezeigt werden (Hinweis: Inhalt wird evaluiert, siehe /help buflist)]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+"${color:default}"+`
+
+* [[option_buflist.format.hotlist_private]] *buflist.format.hotlist_private*
+** Beschreibung: pass:none[Format für Buffer mit der Benachrichtungsstufe "private" (Hinweis: Inhalt wird evaluiert, siehe /help buflist)]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+"${color:green}"+`
+
+* [[option_buflist.format.hotlist_separator]] *buflist.format.hotlist_separator*
+** Beschreibung: pass:none[Trennzeichen for counts in hotlist (Hinweis: Inhalt wird evaluiert, siehe /help buflist)]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+"${color:default},"+`
+
+* [[option_buflist.format.indent]] *buflist.format.indent*
+** Beschreibung: pass:none[Zeichenkette die beim Einrücken von Kanal und privaten Buffern angezeigt wird (Hinweis: Inhalt wird evaluiert, siehe /help buflist)]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+" "+`
+
+* [[option_buflist.format.lag]] *buflist.format.lag*
+** Beschreibung: pass:none[Format für die Anzeige der Verzögerungsanzeige für IRC Serverbuffer (Hinweis: Inhalt wird evaluiert, siehe /help buflist)]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+" ${color:green}[${color:brown}${lag}${color:green}]"+`
+
+* [[option_buflist.format.name]] *buflist.format.name*
+** Beschreibung: pass:none[Format für den Namen eines Buffers (Hinweis: Inhalt wird evaluiert, siehe /help buflist)]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+"${name}"+`
+
+* [[option_buflist.format.nick_prefix]] *buflist.format.nick_prefix*
+** Beschreibung: pass:none[Format des Nick-Präfix für einen Kanal (Hinweis: Inhalt wird evaluiert, siehe /help buflist)]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+"${color_nick_prefix}${nick_prefix}"+`
+
+* [[option_buflist.format.number]] *buflist.format.number*
+** Beschreibung: pass:none[Format für die Darstellung der Buffernummer, hierbei ist die Variable ${number} die eingerückte Nummer (Hinweis: Inhalt wird evaluiert, siehe /help buflist)]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+"${color:green}${number}${if:${number_displayed}?.: }"+`
+
+* [[option_buflist.format.tls_version]] *buflist.format.tls_version*
+** Beschreibung: pass:none[Format für die TLS-Version für einen IRC-Serverbuffer (Hinweis: Inhalt wird evaluiert, siehe /help buflist)]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+" ${color:default}(${if:${tls_version}==TLS1.3?${color:green}:${if:${tls_version}==TLS1.2?${color:yellow}:${color:red}}}${translate:${tls_version}}${color:default})"+`
+
+* [[option_buflist.look.add_newline]] *buflist.look.add_newline*
+** Beschreibung: pass:none[fügt einen Zeilenumbruch zwischen die einzelnen Buffer hinzu um pro Zeile einen Buffer anzuzeigen (empfohlen); falls deaktiviert muss ein Zeilenumbruch manuell hinzugefügt werden, "${\\n}", des Weiteren ist die Mausunterstützung nicht mehr gegeben]
** Typ: boolesch
** Werte: on, off
** Standardwert: `+on+`
-// end::sec_options[]
-// tag::weechat_options[]
-* [[option_weechat.color.bar_more]] *weechat.color.bar_more*
-** Beschreibung: pass:none[Farbe des "+" beim Scrollen von Info-Bars]
-** Typ: Farbe
-** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+lightmagenta+`
+* [[option_buflist.look.auto_scroll]] *buflist.look.auto_scroll*
+** Beschreibung: pass:none[scrollt automatisch die buflist-Bar um den aktuellen Buffer darzustellen (dies funktioniert ausschließlich wenn die Bar links/rechts positioniert ist und als Darstellung "vertical" verwendet wird); dieser Wert ist eine prozentuale Angabe wo der aktuelle Buffer angezeigt werden soll (-1 = deaktiviert); zum Beispiel wird bei einem Wert von 50 der Buffer in der Mitte der Bar angezeigt, bei 0 wird der Buffer oben und bei 100 am unteren Rand der Bar angezeigt]
+** Typ: integer
+** Werte: -1 .. 100
+** Standardwert: `+50+`
-* [[option_weechat.color.chat]] *weechat.color.chat*
-** Beschreibung: pass:none[Farbe des Chat-Textes]
-** Typ: Farbe
-** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+default+`
+* [[option_buflist.look.display_conditions]] *buflist.look.display_conditions*
+** Beschreibung: pass:none[Bedingungen wann ein Buffer dargestellt werden soll (Hinweis: Inhalt ist evaluiert, siehe /help buflist); Beispielsweise werden Server-Buffer versteckt, sofern sie mit dem Core-Buffer zusammengefügt worden sind: "${buffer.hidden}==0 && ((${type}!=server && ${buffer.full_name}!=core.weechat) || ${buffer.active}==1)"]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+"${buffer.hidden}==0"+`
-* [[option_weechat.color.chat_bg]] *weechat.color.chat_bg*
-** Beschreibung: pass:none[Hintergrundfarbe des Chats]
-** Typ: Farbe
-** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+default+`
+* [[option_buflist.look.enabled]] *buflist.look.enabled*
+** Beschreibung: pass:none[Buflist aktivieren; Es wird empfohlen, diese Option zu verwenden, anstatt nur die Bar zu verstecken, da hiermit auch interne Hooks entfernt werden, die nicht benötigt werden, falls die Leiste ausgeblendet wird; Sie können auch den Befehl "/buflist toggle" verwenden oder die Standardtastenbelegung alt+shift+b]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+on+`
-* [[option_weechat.color.chat_buffer]] *weechat.color.chat_buffer*
-** Beschreibung: pass:none[Textfarbe für den Namen des Buffers]
-** Typ: Farbe
-** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+white+`
+* [[option_buflist.look.mouse_jump_visited_buffer]] *buflist.look.mouse_jump_visited_buffer*
+** Beschreibung: pass:none[ist diese Einstellung aktiviert, kann mit der linken/rechten Maustaste auf dem aktuellen Buffer zum vorherigen/nächsten Buffer gesprungen werden]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+off+`
-* [[option_weechat.color.chat_channel]] *weechat.color.chat_channel*
-** Beschreibung: pass:none[Farbe für den Kanalnamen]
-** Typ: Farbe
-** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+white+`
+* [[option_buflist.look.mouse_move_buffer]] *buflist.look.mouse_move_buffer*
+** Beschreibung: pass:none[ist diese Einstellung aktiviert, kann mit Mausgesten (Drag & Drop) ein Buffer in der Liste verschoben werden]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+on+`
-* [[option_weechat.color.chat_day_change]] *weechat.color.chat_day_change*
-** Beschreibung: pass:none[Textfarbe für die Nachricht die beim Datumswechsel angezeigt wird]
-** Typ: Farbe
-** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+cyan+`
+* [[option_buflist.look.mouse_wheel]] *buflist.look.mouse_wheel*
+** Beschreibung: pass:none[ist diese Einstellung aktiviert, kann mit dem Mausrad hoch/runter zum nächsten/vorherigen Buffer in der Liste gesprungen werden]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+on+`
-* [[option_weechat.color.chat_delimiters]] *weechat.color.chat_delimiters*
-** Beschreibung: pass:none[Farbe der Infobar-Trennzeichen]
-** Typ: Farbe
-** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+green+`
+* [[option_buflist.look.nick_prefix]] *buflist.look.nick_prefix*
+** Beschreibung: pass:none[holt den Nick-Präfix und die dazugehörige Farbe aus der Nicklist um diese mit der Variable ${nick_prefix} zu nutzen; diese Option ist standardmäßig deaktiviert, da bei einer umfangreichen Nickliste es zu Verzögerungen kommen kann]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+off+`
-* [[option_weechat.color.chat_highlight]] *weechat.color.chat_highlight*
-** Beschreibung: pass:none[Textfarbe für Highlight-Präfix]
-** Typ: Farbe
-** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+yellow+`
+* [[option_buflist.look.nick_prefix_empty]] *buflist.look.nick_prefix_empty*
+** Beschreibung: pass:none[falls der Nick-Präfix aktiviert ist, wird ein Leerzeichen genutzt falls kein Nick-Präfix für den Buffer existiert]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+on+`
-* [[option_weechat.color.chat_highlight_bg]] *weechat.color.chat_highlight_bg*
-** Beschreibung: pass:none[Hintergrundfarbe für Highlight-Präfix]
-** Typ: Farbe
-** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+magenta+`
+* [[option_buflist.look.signals_refresh]] *buflist.look.signals_refresh*
+** Beschreibung: pass:none[durch Kommata getrennte Liste von zusätzlichen Signalen die dafür sorgen das die Buffer-Liste aktualisiert wird; dies kann nützlich sein falls benutzerdefinierte Variablen genutzt werden und dadurch eine Aktualisierung erforderlich wird]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+""+`
-* [[option_weechat.color.chat_host]] *weechat.color.chat_host*
-** Beschreibung: pass:none[Textfarbe für Host-Namen]
-** Typ: Farbe
-** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+cyan+`
+* [[option_buflist.look.sort]] *buflist.look.sort*
+** Beschreibung: pass:none[durch Kommata getrennte Liste von Feldern um die Buffer zu sortieren; jedes Feld ist entweder eine hdata Variable von Buffer ("var"), eine hdata Variable vom Typ IRC Server ("irc_server.var") oder eine hdata Variable vom Typ IRC Kanal ("irc_channel.var"); wird das "-" Zeichen vor einem Feld angewendet, wird die Ausgabe umgekehrt, um bei einem Vergleich nicht zwischen Groß- und Kleinschreibung zu unterscheiden wird das Zeichen "~" verwendet; Beispiel: "-~short_name" sortiert die Buffer nach ihren Kurznamen, wobei dies invertiert passiert und nicht zwischen Groß-oder Kleinschreibung unterschieden wird (Hinweis: der Inhalt ist evaluiert, vor dem Aufteilen in Felder, kann nur die Variable "bar_item" genutzt werden, um zwischen verschiedenen Buffer-Items zu unterscheiden, zum Beispiel "${bar_item.name}")]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+"number,-active"+`
-* [[option_weechat.color.chat_inactive_buffer]] *weechat.color.chat_inactive_buffer*
-** Beschreibung: pass:none[Textfarbe für inaktive Zeilen im Chatfenster (Buffer wurde mit anderen Buffern zusammengefügt und der Buffer ist nicht aktiv)]
-** Typ: Farbe
-** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+default+`
+* [[option_buflist.look.use_items]] *buflist.look.use_items*
+** Beschreibung: pass:none[Anzahl der Buflist-Bar-Items, die verwendet werden können; die Item-Namen sind: "buflist", "buflist2", "buflist3"; Seien Sie vorsichtig, wenn Sie mehr als ein Bar-Item verwenden, wird die Anzeige der Bufferliste verlangsamt]
+** Typ: integer
+** Werte: 1 .. 3
+** Standardwert: `+1+`
+// end::buflist_options[]
-* [[option_weechat.color.chat_inactive_window]] *weechat.color.chat_inactive_window*
-** Beschreibung: pass:none[Textfarbe für Chat wenn das Fenster inaktiv ist (betrifft nicht das aktuell ausgewählte Fenster)]
+// tag::charset_options[]
+* [[option_charset.default.decode]] *charset.default.decode*
+** Beschreibung: pass:none[globale Zeichendekodierung: Zeichendekodierung die für eingehende Nachrichten genutzt werden soll, falls diese nicht UTF-8 gültig ist]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+"iso-8859-1"+`
+
+* [[option_charset.default.encode]] *charset.default.encode*
+** Beschreibung: pass:none[globale Zeichenkodierung: Zeichenkodierung die für ausgehende Nachrichten genutzt werden soll (sollte keine Zeichenkodierung angegeben werden, wird UTF-8 verwendet, da WeeChat UTF-8 zur internen Kodierung nutzt)]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+""+`
+// end::charset_options[]
+
+// tag::exec_options[]
+* [[option_exec.color.flag_finished]] *exec.color.flag_finished*
+** Beschreibung: pass:none[Textfarbe des Statusindikator (in der Auflistung der Befehle) für beendete Befehle]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+default+`
+** Standardwert: `+lightred+`
-* [[option_weechat.color.chat_nick]] *weechat.color.chat_nick*
-** Beschreibung: pass:none[Textfarbe für Nicks im Chatfenster: Farbe wird für einige Server-Nachrichten verwendet und als Ersatz falls eine Farbe für einen Nick nicht gefunden wird; normalerweise wird die Farbe von der Option weechat.color.chat_nick_colors bereitgestellt]
+* [[option_exec.color.flag_running]] *exec.color.flag_running*
+** Beschreibung: pass:none[Textfarbe des Statusindikator (in der Auflistung der Befehle) für Befehle die zur Zeit ausgeführt werden]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+lightcyan+`
+** Standardwert: `+lightgreen+`
-* [[option_weechat.color.chat_nick_colors]] *weechat.color.chat_nick_colors*
-** Beschreibung: pass:none[Textfarbe für Nicks (durch Kommata getrennte Liste von Farben. Eine Hintergrundfarbe kann durch das folgende Format genutzt werden: "fg:bg". Zum Beispiel: "lightred:blue")]
+* [[option_exec.command.default_options]] *exec.command.default_options*
+** Beschreibung: pass:none[Standardoptionen für den Befehl /exec (siehe /help exec); Beispiele: "-nosh -bg" führt alle Befehle im Hintergrund aus (keine Textausgabe) und ohne das die shell genutzt wird]
** Typ: Zeichenkette
** Werte: beliebige Zeichenkette
-** Standardwert: `+"cyan,magenta,green,brown,lightblue,default,lightcyan,lightmagenta,lightgreen,blue"+`
+** Standardwert: `+""+`
-* [[option_weechat.color.chat_nick_offline]] *weechat.color.chat_nick_offline*
-** Beschreibung: pass:none[Textfarbe für Nicks die nicht angemeldet sind (nicht in der Benutzerliste aufgeführt sind); diese Farbeinstellung wird aber nur verwendet wenn die Einstellung weechat.look.color_nick_offline aktiviert ist]
-** Typ: Farbe
-** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+default+`
+* [[option_exec.command.purge_delay]] *exec.command.purge_delay*
+** Beschreibung: pass:none[Wartezeit bis nicht mehr ausgeführte Befehle gelöscht werden (in Sekunden, 0 = lösche Befehle unmittelbar, -1 = niemals löschen)]
+** Typ: integer
+** Werte: -1 .. 25920000
+** Standardwert: `+0+`
-* [[option_weechat.color.chat_nick_offline_highlight]] *weechat.color.chat_nick_offline_highlight*
-** Beschreibung: pass:none[Textfarbe bei Highlights für Nicks die nicht angemeldet sind; diese Farbeinstellung wird aber nur verwendet wenn die Einstellung weechat.look.color_nick_offline aktiviert ist]
-** Typ: Farbe
-** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+default+`
+* [[option_exec.command.shell]] *exec.command.shell*
+** Beschreibung: pass:none[shell welche für den Befehl "/exec -sh" genutzt werden soll; hierbei kann es sich um den Namen der shell handeln der über PATH gefunden wird (zum Beispiel "bash") oder man nutzt eine absolute Pfadangabe zur Binärdatei (zum Beispiel "/bin/bash"); wenn kein Wert angegeben ist, wird "sh" genutzt (Hinweis: Inhalt ist evaluiert, siehe /help eval)]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+"${env:SHELL}"+`
+// end::exec_options[]
-* [[option_weechat.color.chat_nick_offline_highlight_bg]] *weechat.color.chat_nick_offline_highlight_bg*
-** Beschreibung: pass:none[Hintergrundfarbe bei Highlights für Nicks die nicht angemeldet sind, diese Farbeinstellung wird aber nur verwendet wenn die Einstellung weechat.look.color_nick_offline aktiviert ist]
-** Typ: Farbe
-** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+blue+`
+// tag::fifo_options[]
+* [[option_fifo.file.enabled]] *fifo.file.enabled*
+** Beschreibung: pass:none[FIFO-Pipe aktivieren]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+on+`
-* [[option_weechat.color.chat_nick_other]] *weechat.color.chat_nick_other*
-** Beschreibung: pass:none[Farbe des anderen Nicknamens in einem privaten Buffer]
-** Typ: Farbe
-** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+cyan+`
+* [[option_fifo.file.path]] *fifo.file.path*
+** Beschreibung: pass:none[Pfad für FIFO-Datei; WeeChat PID kann im Pfad mit ${info:pid} verwendet werden (Pfad ist evaluiert, siehe Funktion string_eval_path_home in der Plugin-API-Referenz)]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+"${weechat_runtime_dir}/weechat_fifo_${info:pid}"+`
+// end::fifo_options[]
-* [[option_weechat.color.chat_nick_prefix]] *weechat.color.chat_nick_prefix*
-** Beschreibung: pass:none[Farbe für den Nick-Präfix (Zeichenkette die vor dem Nick steht)]
+// tag::fset_options[]
+* [[option_fset.color.default_value]] *fset.color.default_value*
+** Beschreibung: pass:none[Farbe für Standardwert]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+green+`
+** Standardwert: `+default+`
-* [[option_weechat.color.chat_nick_self]] *weechat.color.chat_nick_self*
-** Beschreibung: pass:none[Textfarbe für den eigenen Nicknamen, im lokalen Chat-Fenster]
+* [[option_fset.color.default_value_selected]] *fset.color.default_value_selected*
+** Beschreibung: pass:none[Farbe für den Standardwert bei der ausgewählten Zeile]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
** Standardwert: `+white+`
-* [[option_weechat.color.chat_nick_suffix]] *weechat.color.chat_nick_suffix*
-** Beschreibung: pass:none[Farbe für den Nick-Suffix (Zeichenkette die nach dem Nick steht)]
+* [[option_fset.color.description]] *fset.color.description*
+** Beschreibung: pass:none[Farbe für Beschreibung]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+green+`
+** Standardwert: `+default+`
-* [[option_weechat.color.chat_prefix_action]] *weechat.color.chat_prefix_action*
-** Beschreibung: pass:none[Textfarbe für Action-Präfix]
+* [[option_fset.color.description_selected]] *fset.color.description_selected*
+** Beschreibung: pass:none[Farbe für Beschreibung für die ausgewählte Zeile]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
** Standardwert: `+white+`
-* [[option_weechat.color.chat_prefix_buffer]] *weechat.color.chat_prefix_buffer*
-** Beschreibung: pass:none[Textfarbe des Buffer-Namens (vor dem Präfix, wenn mehrere Buffer mit der selben Nummer zusammengefügt worden sind)]
-** Typ: Farbe
-** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+brown+`
-
-* [[option_weechat.color.chat_prefix_buffer_inactive_buffer]] *weechat.color.chat_prefix_buffer_inactive_buffer*
-** Beschreibung: pass:none[Textfarbe für den inaktiven Namen des Buffer (vor dem Präfix, falls mehrere Buffer zu einem zusammengefügt worden sind und der Buffer nicht ausgewählt ist)]
+* [[option_fset.color.file]] *fset.color.file*
+** Beschreibung: pass:none[Farbe für Datei]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
** Standardwert: `+default+`
-* [[option_weechat.color.chat_prefix_error]] *weechat.color.chat_prefix_error*
-** Beschreibung: pass:none[Textfarbe für Fehler-Präfix]
+* [[option_fset.color.file_changed]] *fset.color.file_changed*
+** Beschreibung: pass:none[Farbei für Datei, falls der Wert abweichend ist]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+yellow+`
+** Standardwert: `+brown+`
-* [[option_weechat.color.chat_prefix_join]] *weechat.color.chat_prefix_join*
-** Beschreibung: pass:none[Textfarbe für Join-Präfix]
+* [[option_fset.color.file_changed_selected]] *fset.color.file_changed_selected*
+** Beschreibung: pass:none[Farbe von Datei wenn Wert verändert ist, bei der ausgewählten Zeile]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+lightgreen+`
+** Standardwert: `+yellow+`
-* [[option_weechat.color.chat_prefix_more]] *weechat.color.chat_prefix_more*
-** Beschreibung: pass:none[Farbe des "+" Zeichens, falls Präfix zu lang sein sollte]
+* [[option_fset.color.file_selected]] *fset.color.file_selected*
+** Beschreibung: pass:none[Farbe der Datei für die ausgewählte Zeile]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+lightmagenta+`
+** Standardwert: `+white+`
-* [[option_weechat.color.chat_prefix_network]] *weechat.color.chat_prefix_network*
-** Beschreibung: pass:none[Textfarbe für Netzwerk-Präfix]
+* [[option_fset.color.help_default_value]] *fset.color.help_default_value*
+** Beschreibung: pass:none[Farbe für Standardwert in der Hilfe-Bar]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+magenta+`
+** Standardwert: `+white+`
-* [[option_weechat.color.chat_prefix_quit]] *weechat.color.chat_prefix_quit*
-** Beschreibung: pass:none[Textfarbe für Quit-Präfix]
+* [[option_fset.color.help_description]] *fset.color.help_description*
+** Beschreibung: pass:none[Farbe für die Beschreibung in der Hilfe-Bar]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+lightred+`
+** Standardwert: `+default+`
-* [[option_weechat.color.chat_prefix_suffix]] *weechat.color.chat_prefix_suffix*
-** Beschreibung: pass:none[Textfarbe für den Suffix (senkrechter Strich)]
+* [[option_fset.color.help_name]] *fset.color.help_name*
+** Beschreibung: pass:none[Farbe für Namen in Hilfe-Bar]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+green+`
+** Standardwert: `+white+`
-* [[option_weechat.color.chat_read_marker]] *weechat.color.chat_read_marker*
-** Beschreibung: pass:none[Farbe in der das Lesezeichen dargestellt werden soll]
+* [[option_fset.color.help_quotes]] *fset.color.help_quotes*
+** Beschreibung: pass:none[Farbe der Anführungszeichen für Stringwerte]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+magenta+`
+** Standardwert: `+darkgray+`
-* [[option_weechat.color.chat_read_marker_bg]] *weechat.color.chat_read_marker_bg*
-** Beschreibung: pass:none[Hintergrundfarbe für das Lesezeichen]
+* [[option_fset.color.help_values]] *fset.color.help_values*
+** Beschreibung: pass:none[Farbe für erlaubte Werte]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
** Standardwert: `+default+`
-* [[option_weechat.color.chat_server]] *weechat.color.chat_server*
-** Beschreibung: pass:none[Textfarbe für den Namen des Servers]
-** Typ: Farbe
-** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+brown+`
-
-* [[option_weechat.color.chat_tags]] *weechat.color.chat_tags*
-** Beschreibung: pass:none[Textfarbe in der die Schlagwörter, die nach der jeweiligen Nachricht angezeigt werden, dargestellt werden sollen (wird durch den Befehl "/debug tags" angezeigt)]
+* [[option_fset.color.index]] *fset.color.index*
+** Beschreibung: pass:none[Farbe für Index einer Option]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+red+`
+** Standardwert: `+cyan+`
-* [[option_weechat.color.chat_text_found]] *weechat.color.chat_text_found*
-** Beschreibung: pass:none[Farbe zur Hervorhebung des gesuchten Textes in einer Zeile]
+* [[option_fset.color.index_selected]] *fset.color.index_selected*
+** Beschreibung: pass:none[Farbe für Index der Option bei der ausgewählten Zeile]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+yellow+`
+** Standardwert: `+lightcyan+`
-* [[option_weechat.color.chat_text_found_bg]] *weechat.color.chat_text_found_bg*
-** Beschreibung: pass:none[Hintergrundfarbe zur Hervorhebung des gesuchten Textes in einer Zeile]
+* [[option_fset.color.line_marked_bg1]] *fset.color.line_marked_bg1*
+** Beschreibung: pass:none[Hintergrundfarbe für markierte Zeile (wird für das erste Format verwendet, siehe Option fset.format.option1)]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+lightmagenta+`
+** Standardwert: `+default+`
-* [[option_weechat.color.chat_time]] *weechat.color.chat_time*
-** Beschreibung: pass:none[Textfarbe der Zeit im Chatfenster]
+* [[option_fset.color.line_marked_bg2]] *fset.color.line_marked_bg2*
+** Beschreibung: pass:none[Hintergrundfarbe für markierte Zeile (wird für das zweite Format verwendet, siehe Option fset.format.option2)]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
** Standardwert: `+default+`
-* [[option_weechat.color.chat_time_delimiters]] *weechat.color.chat_time_delimiters*
-** Beschreibung: pass:none[Farbe in der das Trennzeichen für die Uhrzeit dargestellt werden soll]
+* [[option_fset.color.line_selected_bg1]] *fset.color.line_selected_bg1*
+** Beschreibung: pass:none[Hintergrundfarbe für ausgewählte Zeile (wird für das erste Format verwendet, siehe Option fset.format.option1)]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+brown+`
+** Standardwert: `+blue+`
-* [[option_weechat.color.chat_value]] *weechat.color.chat_value*
-** Beschreibung: pass:none[Farbe für Werte]
+* [[option_fset.color.line_selected_bg2]] *fset.color.line_selected_bg2*
+** Beschreibung: pass:none[Hintergrundfarbe für ausgewählte Zeile (wird für das zweite Format verwendet, siehe Option fset.format.option2)]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+cyan+`
+** Standardwert: `+red+`
-* [[option_weechat.color.chat_value_null]] *weechat.color.chat_value_null*
-** Beschreibung: pass:none[Textfarbe für null-Werte (undefiniert)]
+* [[option_fset.color.marked]] *fset.color.marked*
+** Beschreibung: pass:none[Farbe des Markierungssymbols]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+blue+`
+** Standardwert: `+brown+`
-* [[option_weechat.color.emphasized]] *weechat.color.emphasized*
-** Beschreibung: pass:none[Textfarbe um Text hervorzuheben (zum Beispiel bei der Textsuche); wird ausschließlich dann genutzt, falls die Einstellung weechat.look.emphasized_attributes keinen Eintrag besitzt (Standardwert)]
+* [[option_fset.color.marked_selected]] *fset.color.marked_selected*
+** Beschreibung: pass:none[Farbe für das Markierungssymbol für die ausgewählte Zeile]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
** Standardwert: `+yellow+`
-* [[option_weechat.color.emphasized_bg]] *weechat.color.emphasized_bg*
-** Beschreibung: pass:none[Hintergrundfarbe um Textpassagen hervorzuheben (zum Beispiel bei der Textsuche); wird ausschließlich dann genutzt, falls die Einstellung weechat.look.emphasized_attributes keinen Eintrag besitzt (Standardwert)]
+* [[option_fset.color.max]] *fset.color.max*
+** Beschreibung: pass:none[Farbe für Maximalwert]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+magenta+`
+** Standardwert: `+default+`
-* [[option_weechat.color.input_actions]] *weechat.color.input_actions*
-** Beschreibung: pass:none[Textfarbe in der Eingabezeile bei Aktivität (z.B. beim Einfügen von Zeilen)]
+* [[option_fset.color.max_selected]] *fset.color.max_selected*
+** Beschreibung: pass:none[Farbe für Maximalwert bei der ausgewählten Zeile]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+lightgreen+`
+** Standardwert: `+white+`
-* [[option_weechat.color.input_text_not_found]] *weechat.color.input_text_not_found*
-** Beschreibung: pass:none[Textfarbe in der Eingabezeile bei einer erfolglosen Textsuche]
+* [[option_fset.color.min]] *fset.color.min*
+** Beschreibung: pass:none[Farbe für Minimalwert]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+red+`
+** Standardwert: `+default+`
-* [[option_weechat.color.item_away]] *weechat.color.item_away*
-** Beschreibung: pass:none[Textfarbe für das Abwesenheitsitem]
+* [[option_fset.color.min_selected]] *fset.color.min_selected*
+** Beschreibung: pass:none[Farbe für Minimalwert, für ausgewählte Zeile]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+yellow+`
+** Standardwert: `+white+`
-* [[option_weechat.color.nicklist_away]] *weechat.color.nicklist_away*
-** Beschreibung: pass:none[Textfarbe von abwesenden Nicknamen]
+* [[option_fset.color.name]] *fset.color.name*
+** Beschreibung: pass:none[Farbe für Name]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+cyan+`
+** Standardwert: `+default+`
-* [[option_weechat.color.nicklist_group]] *weechat.color.nicklist_group*
-** Beschreibung: pass:none[Textfarbe für Gruppen in Benutzerliste]
+* [[option_fset.color.name_changed]] *fset.color.name_changed*
+** Beschreibung: pass:none[Farbe für Namen wenn Wert verändert wurde]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+green+`
+** Standardwert: `+brown+`
-* [[option_weechat.color.separator]] *weechat.color.separator*
-** Beschreibung: pass:none[Farbe der Trennlinie von Fenstern (bei Fenster geteilt sind) und Bars (wie z.B. Nicklist)]
+* [[option_fset.color.name_changed_selected]] *fset.color.name_changed_selected*
+** Beschreibung: pass:none[Farbe vom Namen, falls Wert verändert wurde bei der ausgewählten Zeile]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+blue+`
+** Standardwert: `+yellow+`
-* [[option_weechat.color.status_count_highlight]] *weechat.color.status_count_highlight*
-** Beschreibung: pass:none[Farbe für die Anzahl der Highlight-Nachrichten die in der Hotlist dargestellt werden (Statusbar)]
+* [[option_fset.color.name_selected]] *fset.color.name_selected*
+** Beschreibung: pass:none[Farbe des Namens für die ausgewählte Zeile]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+magenta+`
+** Standardwert: `+white+`
-* [[option_weechat.color.status_count_msg]] *weechat.color.status_count_msg*
-** Beschreibung: pass:none[Farbe für die Anzahl der Nachrichten die in der Hotlist dargestellt werden (Statusbar)]
+* [[option_fset.color.option]] *fset.color.option*
+** Beschreibung: pass:none[Farbe für Option]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+brown+`
+** Standardwert: `+default+`
-* [[option_weechat.color.status_count_other]] *weechat.color.status_count_other*
-** Beschreibung: pass:none[Farbe für die Anzahl aller anderen Nachrichten die in der Hotlist dargestellt werden (Statusbar)]
+* [[option_fset.color.option_changed]] *fset.color.option_changed*
+** Beschreibung: pass:none[Farbe der Option wenn Wert verändert wurde]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+default+`
+** Standardwert: `+brown+`
-* [[option_weechat.color.status_count_private]] *weechat.color.status_count_private*
-** Beschreibung: pass:none[Farbe für die Anzahl der privaten Nachrichten die in der Hotlist dargestellt werden (Statusbar)]
+* [[option_fset.color.option_changed_selected]] *fset.color.option_changed_selected*
+** Beschreibung: pass:none[Farbe von Option, falls Wert verändert wurde bei der ausgewählten Zeile]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+green+`
+** Standardwert: `+yellow+`
-* [[option_weechat.color.status_data_highlight]] *weechat.color.status_data_highlight*
-** Beschreibung: pass:none[Farbe eines Buffers mit Highlight-Nachricht (Statusbar)]
+* [[option_fset.color.option_selected]] *fset.color.option_selected*
+** Beschreibung: pass:none[Farbe der Option für die ausgewählte Zeile]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+lightmagenta+`
+** Standardwert: `+white+`
-* [[option_weechat.color.status_data_msg]] *weechat.color.status_data_msg*
-** Beschreibung: pass:none[Farbe eines Buffers der neue Nachrichten enthält (Statusbar)]
+* [[option_fset.color.parent_name]] *fset.color.parent_name*
+** Beschreibung: pass:none[Farbe des Namens für übergeordnete Option]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+yellow+`
+** Standardwert: `+default+`
-* [[option_weechat.color.status_data_other]] *weechat.color.status_data_other*
-** Beschreibung: pass:none[Farbe eines Buffers mit neuen Daten (keine Nachrichten) (Statusbar)]
+* [[option_fset.color.parent_name_selected]] *fset.color.parent_name_selected*
+** Beschreibung: pass:none[Farbe des Namens für übergeordnete Option, für ausgewählte Zeile]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+default+`
+** Standardwert: `+white+`
-* [[option_weechat.color.status_data_private]] *weechat.color.status_data_private*
-** Beschreibung: pass:none[Farbe eines Buffers mit privater Nachricht (Statusbar)]
+* [[option_fset.color.parent_value]] *fset.color.parent_value*
+** Beschreibung: pass:none[Farbe des Wertes für übergeordnete Option]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+lightgreen+`
+** Standardwert: `+cyan+`
-* [[option_weechat.color.status_filter]] *weechat.color.status_filter*
-** Beschreibung: pass:none[Farbe des Filterkennzeichens in der Statuszeile]
+* [[option_fset.color.parent_value_selected]] *fset.color.parent_value_selected*
+** Beschreibung: pass:none[Farbe des Wertes für übergeordnete Option, für ausgewählte Zeile]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+green+`
+** Standardwert: `+lightcyan+`
-* [[option_weechat.color.status_more]] *weechat.color.status_more*
-** Beschreibung: pass:none[Farbe eines Buffers mit neuen Daten (Statusbar)]
+* [[option_fset.color.quotes]] *fset.color.quotes*
+** Beschreibung: pass:none[Farbe der Anführungszeichen für Stringwerte]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+yellow+`
+** Standardwert: `+darkgray+`
-* [[option_weechat.color.status_mouse]] *weechat.color.status_mouse*
-** Beschreibung: pass:none[Farbe des Zeichens welches den Status der Maus anzeigt]
+* [[option_fset.color.quotes_changed]] *fset.color.quotes_changed*
+** Beschreibung: pass:none[Farbe der Anführungszeichen um Zeichenketten wenn der Wert verändert wurde]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+green+`
+** Standardwert: `+default+`
-* [[option_weechat.color.status_name]] *weechat.color.status_name*
-** Beschreibung: pass:none[Farbe des aktuellen Buffer-Namens in der Statuszeile]
+* [[option_fset.color.quotes_changed_selected]] *fset.color.quotes_changed_selected*
+** Beschreibung: pass:none[Farbe der Anführungszeichen um Zeichenketten wenn der Wert verändert wurde, bei der ausgewählten Zeile]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
** Standardwert: `+white+`
-* [[option_weechat.color.status_name_ssl]] *weechat.color.status_name_ssl*
-** Beschreibung: pass:none[Farbe in der der aktuelle Buffer-Name in der Statuszeile angezeigt werden soll, sofern die Verbindung durch ein Protokoll, zum Beispiel, SSL geschützt ist]
+* [[option_fset.color.quotes_selected]] *fset.color.quotes_selected*
+** Beschreibung: pass:none[Farbe der Anführungszeichen um Zeichenketten, bei der ausgewählten Zeile]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+lightgreen+`
+** Standardwert: `+default+`
-* [[option_weechat.color.status_nicklist_count]] *weechat.color.status_nicklist_count*
-** Beschreibung: pass:none[Textfarbe für die Anzahl der Nicks in der Benutzerliste (Statusbar)]
+* [[option_fset.color.section]] *fset.color.section*
+** Beschreibung: pass:none[Farbe für Sektion]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
** Standardwert: `+default+`
-* [[option_weechat.color.status_number]] *weechat.color.status_number*
-** Beschreibung: pass:none[Farbe des aktuellen Kanals in der Statuszeile]
+* [[option_fset.color.section_changed]] *fset.color.section_changed*
+** Beschreibung: pass:none[Farbe der Sektion wenn Wert verändert wurde]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+yellow+`
+** Standardwert: `+brown+`
-* [[option_weechat.color.status_time]] *weechat.color.status_time*
-** Beschreibung: pass:none[Textfarbe für die Uhrzeit (Statusbar)]
+* [[option_fset.color.section_changed_selected]] *fset.color.section_changed_selected*
+** Beschreibung: pass:none[Farbe der aktuellen Zeile für Sektion, sofern Wert verändert wurde]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+default+`
-
-* [[option_weechat.completion.base_word_until_cursor]] *weechat.completion.base_word_until_cursor*
-** Beschreibung: pass:none[ist diese Einstellung aktiviert wird ein zu vervollständigendes Wort in den fließenden Text, mit einem Leerzeichen, hinzugefügt. Ist diese Einstellung deaktiviert, muss in den fließenden Text ein Leerzeichen manuell einfügt werden, um eine Vervollständigung durchführen zu können (Beispiel: In einen schon geschriebenen Text, einen Nick einzufügen)]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+on+`
-
-* [[option_weechat.completion.command_inline]] *weechat.completion.command_inline*
-** Beschreibung: pass:none[ist diese Einstellung aktiviert werden Befehle innerhalb der Eingabezeile vervollständigt (ein Befehl zu Beginn der Eingabezeile besitzt die höhere Priorität und wird zuerst verwendet). Hinweis: die Vervollständigung von Verzeichnissen, die mit "/" beginnen, funktioniert außerhalb von Befehlen nicht mehr]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+on+`
-
-* [[option_weechat.completion.default_template]] *weechat.completion.default_template*
-** Beschreibung: pass:none[Standardvorlage für die automatische Vervollständigung (in der API-Dokumentation findet man die vorgegebenen Codes und Werte, Funktion "weechat_hook_command")]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+"%(nicks)|%(irc_channels)"+`
-
-* [[option_weechat.completion.nick_add_space]] *weechat.completion.nick_add_space*
-** Beschreibung: pass:none[fügt ein Leerzeichen hinter die Nick-Vervollständigung ein (sofern der Nickname nicht das erste Wort in einer Kommandozeile darstellt)]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+on+`
-
-* [[option_weechat.completion.nick_case_sensitive]] *weechat.completion.nick_case_sensitive*
-** Beschreibung: pass:none[Groß-und Kleinschreibung wird bei Vervollständigung von Nicks berücksichtigt]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+off+`
-
-* [[option_weechat.completion.nick_completer]] *weechat.completion.nick_completer*
-** Beschreibung: pass:none[fügt eine Zeichenkette hinter die Nick-Vervollständigung ein (sofern ein Nickname das erste Wort in der Kommandozeile ist)]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+": "+`
-
-* [[option_weechat.completion.nick_first_only]] *weechat.completion.nick_first_only*
-** Beschreibung: pass:none[es wird ausschließlich mit dem ersten, passendem Nick-Namen vervollständigt]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+off+`
-
-* [[option_weechat.completion.nick_ignore_chars]] *weechat.completion.nick_ignore_chars*
-** Beschreibung: pass:none[Zeichen, die bei der Vervollständigung von Nicks ignoriert werden]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+"[]`_-^"+`
-
-* [[option_weechat.completion.partial_completion_alert]] *weechat.completion.partial_completion_alert*
-** Beschreibung: pass:none[erzeugt eine Mitteilung (BEL) wenn eine teilweise Vervollständigung auftritt]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+on+`
-
-* [[option_weechat.completion.partial_completion_command]] *weechat.completion.partial_completion_command*
-** Beschreibung: pass:none[teilweise Vervollständigung von Befehlen (bricht ab, falls zu viele Befehle mit dem selben Buchstaben beginnen)]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+off+`
-
-* [[option_weechat.completion.partial_completion_command_arg]] *weechat.completion.partial_completion_command_arg*
-** Beschreibung: pass:none[teilweise Vervollständigung von Befehls-Argumenten (bricht ab, falls zu viele Befehle mit dem selben Präfix beginnen)]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+off+`
-
-* [[option_weechat.completion.partial_completion_count]] *weechat.completion.partial_completion_count*
-** Beschreibung: pass:none[zeigt bei einer teilweisen Vervollständigung die Anzahl der jeweiligen Möglichkeiten in der Bar-Item an]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+on+`
-
-* [[option_weechat.completion.partial_completion_other]] *weechat.completion.partial_completion_other*
-** Beschreibung: pass:none[teilweise Vervollständigung von externen Befehlen (bricht ab, falls zu viele Befehle mit dem selben Buchstaben beginnen)]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+off+`
-
-* [[option_weechat.completion.partial_completion_templates]] *weechat.completion.partial_completion_templates*
-** Beschreibung: pass:none[durch Kommata getrennte Liste der Vorgaben für die eine teilweise Vervollständigung standardmäßig aktiv ist (mittels TAB Taste, anstelle von shift-TAB); eine Auflistung möglicher Vorgaben findet man in der Dokumentation: Anleitung für API Erweiterung, Funktion "weechat_hook_command"]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+"config_options"+`
-
-* [[option_weechat.history.display_default]] *weechat.history.display_default*
-** Beschreibung: pass:none[Wert für die maximale Anzahl der angezeigten Befehle im Verlaufsspeicher, die mittels /history angezeigt werden (0: unbegrenzt)]
-** Typ: integer
-** Werte: 0 .. 2147483647
-** Standardwert: `+5+`
-
-* [[option_weechat.history.max_buffer_lines_minutes]] *weechat.history.max_buffer_lines_minutes*
-** Beschreibung: pass:none[Dauer in Minuten, wie lange die Zeilen im Verlaufsspeicher, pro Buffer, gehalten werden sollen (0 = unbegrenzt); Beispiele: 1440 = einen Tag, 10080 = eine Woche, 43200 = einen Monat, 525600 = ein Jahr; 0 sollte nur genutzt werden sofern weechat.history.max_buffer_lines_number nicht ebenfalls 0 ist]
-** Typ: integer
-** Werte: 0 .. 2147483647
-** Standardwert: `+0+`
-
-* [[option_weechat.history.max_buffer_lines_number]] *weechat.history.max_buffer_lines_number*
-** Beschreibung: pass:none[maximale Anzahl an Zeilen im Verlaufsspeicher, dies gilt pro Buffer (0: keine Zeilenbegrenzung); 0 sollte nur genutzt werden sofern weechat.history.max_buffer_lines_minutes nicht ebenfalls 0 ist]
-** Typ: integer
-** Werte: 0 .. 2147483647
-** Standardwert: `+4096+`
-
-* [[option_weechat.history.max_commands]] *weechat.history.max_commands*
-** Beschreibung: pass:none[maximale Anzahl an Befehlen im Verlaufsspeicher (0: kein Begrenzung, NICHT EMPFOHLEN: keine Begrenzung des Speicherverbrauches)]
-** Typ: integer
-** Werte: 0 .. 2147483647
-** Standardwert: `+100+`
-
-* [[option_weechat.history.max_visited_buffers]] *weechat.history.max_visited_buffers*
-** Beschreibung: pass:none[maximale Anzahl an besuchten Buffern, welche im Speicher gehalten werden sollen]
-** Typ: integer
-** Werte: 0 .. 1000
-** Standardwert: `+50+`
-
-* [[option_weechat.look.align_end_of_lines]] *weechat.look.align_end_of_lines*
-** Beschreibung: pass:none[Einstellung für einen Zeilenumbruch (betrifft alle Zeilen, außer der ersten Zeile). Die Darstellung der nachfolgenden Zeile beginnt unter: Uhrzeit = time, Buffer = buffer, Präfix = prefix, Suffix = suffix, Nachricht = message (Standardwert)]
-** Typ: integer
-** Werte: time, buffer, prefix, suffix, message
-** Standardwert: `+message+`
-
-* [[option_weechat.look.align_multiline_words]] *weechat.look.align_multiline_words*
-** Beschreibung: pass:none[Einstellung für Zeilenumbruch gemäß weechat.look.align_end_of_lines; falls deaktiviert wird ein Wort welches durch einen Zeilenumbruch in die nächste Zeile gezwungen wird nicht in die neue Zeile eingeschoben, sondern beginnt direkt am Zeilenanfang. Dies kann sinnvoll sein um lange URLs weiterhin anklicken zu können und kein Leerzeichen innerhalb der URL zu erhalten]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+on+`
-
-* [[option_weechat.look.bar_more_down]] *weechat.look.bar_more_down*
-** Beschreibung: pass:none[Zeichen welches anzeigt, dass die Bar nach unten gescrollt werden kann (dies trifft nur auf Bars zu bei denen die Einstellung "/set *.filling_*" nicht auf "horizontal" eingestellt ist)]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+"++"+`
-
-* [[option_weechat.look.bar_more_left]] *weechat.look.bar_more_left*
-** Beschreibung: pass:none[Zeichen welches anzeigt, dass die Bar nach links gescrollt werden kann (dies trifft nur auf Bars zu bei denen die Einstellung "/set *.filling_*" nicht auf "horizontal" eingestellt ist)]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+"<<"+`
-
-* [[option_weechat.look.bar_more_right]] *weechat.look.bar_more_right*
-** Beschreibung: pass:none[Zeichen welches anzeigt, dass die Bar nach rechts gescrollt werden kann (dies trifft nur auf Bars zu bei denen die Einstellung "/set *.filling_*" nicht auf "horizontal" eingestellt ist)]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+">>"+`
-
-* [[option_weechat.look.bar_more_up]] *weechat.look.bar_more_up*
-** Beschreibung: pass:none[Zeichen welches anzeigt, dass die Bar nach oben gescrollt werden kann (dies trifft nur auf Bars zu bei denen die Option "/set *.filling_*" nicht auf "horizontal" eingestellt ist)]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+"--"+`
-
-* [[option_weechat.look.bare_display_exit_on_input]] *weechat.look.bare_display_exit_on_input*
-** Beschreibung: pass:none[beendet den einfachen Anzeigemodus durch Tastendruck]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+on+`
-
-* [[option_weechat.look.bare_display_time_format]] *weechat.look.bare_display_time_format*
-** Beschreibung: pass:none[Format für die Zeitanzeige im einfachen Anzeigemodus, "time" (siehe man strftime, welche Platzhalter für das Datum und die Uhrzeit verwendet werden)]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+"%H:%M"+`
-
-* [[option_weechat.look.buffer_auto_renumber]] *weechat.look.buffer_auto_renumber*
-** Beschreibung: pass:none[automatisches nummerieren von Buffern um ausschließlich eine aufeinander folgende Durchnummerierung zu besitzen, die bei 1 beginnt; ist diese Einstellung deaktiviert sind Lücken zwischen den Buffern möglich und der erste Buffer muss nicht mit der Zahl 1 beginnen]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+on+`
-
-* [[option_weechat.look.buffer_notify_default]] *weechat.look.buffer_notify_default*
-** Beschreibung: pass:none[Standardeinstellung der Benachrichtigungsstufe für Buffer (dies wird genutzt um WeeChat mitzuteilen ob der Buffer in der Hotlist angezeigt werden soll oder nicht, entsprechend der Wichtigkeit der Nachricht): all=alle Nachrichten (Standard), message=Nachrichten+Highlights, highlights=nur Highlights, none=Hotlist wird niemals angezeigt]
-** Typ: integer
-** Werte: none, highlight, message, all
-** Standardwert: `+all+`
-
-* [[option_weechat.look.buffer_position]] *weechat.look.buffer_position*
-** Beschreibung: pass:none[Position auf der ein neuer Buffer geöffnet werden soll: end = am Ende der Liste (Nummer = letzter Buffer + 1) (Standard), first_gap = erste mögliche Nummer die frei ist (wird das Ende der Liste erreicht, wird der Buffer hinten angehängt); diese Einstellung wird nur angewendet sofern dem Buffer keine Position, durch Layout, zugeordnet wurde]
-** Typ: integer
-** Werte: end, first_gap
-** Standardwert: `+end+`
-
-* [[option_weechat.look.buffer_search_case_sensitive]] *weechat.look.buffer_search_case_sensitive*
-** Beschreibung: pass:none[standardmäßige Textsuche im Buffer: zwischen Groß-und Kleinschreibung wird unterschieden]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+off+`
-
-* [[option_weechat.look.buffer_search_force_default]] *weechat.look.buffer_search_force_default*
-** Beschreibung: pass:none[es werden immer die Standardeinstellungen verwendet (anstelle der zuletzt genutzten Sucheinstellungen)]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+off+`
-
-* [[option_weechat.look.buffer_search_regex]] *weechat.look.buffer_search_regex*
-** Beschreibung: pass:none[standardmäßige Textsuche im Buffer: falls aktiviert wird mittels erweiterten regulären POSIX Ausdrücken gesucht, andernfalls findet eine genaue Textsuche statt]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+off+`
-
-* [[option_weechat.look.buffer_search_where]] *weechat.look.buffer_search_where*
-** Beschreibung: pass:none[standardmäßige Textsuche im Buffer: in der Nachricht (message), im Präfix (prefix), Präfix und Nachricht (prefix_message)]
-** Typ: integer
-** Werte: prefix, message, prefix_message
-** Standardwert: `+prefix_message+`
-
-* [[option_weechat.look.buffer_time_format]] *weechat.look.buffer_time_format*
-** Beschreibung: pass:none[Format für die Uhrzeit, die in jeder Zeile eines Buffers dargestellt wird (siehe man strftime, welche Platzhalter für das Datum und die Uhrzeit verwendet werden) (Hinweis: Inhalt wird evaluiert, somit kann mittels des Formats "${color:xxx} Farben gesetzt werden, siehe /help eval). Beispiel: Uhrzeit in Graustufen (Unterstützung von 256 Farben notwendig): "${color:252}%H${color:245}%M${color:240}%S"]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+"%H:%M:%S"+`
-
-* [[option_weechat.look.buffer_time_same]] *weechat.look.buffer_time_same*
-** Beschreibung: pass:none[Uhrzeit die bei einer Nachricht dargestellt werden soll, sofern die Uhrzeit der vorherigen Nachricht entspricht: bei einem Leerzeichen " " wird keine Uhrzeit angezeigt, oder man kann eine Zeichenkette anstelle der Uhrzeit anzeigen, keine Zeichenkette deaktiviert diese Funktion (Uhrzeit wird angezeigt) (Hinweis: Inhalt wird evaluiert, es kann z.B. eine Farbe mittels dem Format "${color:xxx}" angegeben werden, siehe /help eval)]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+""+`
-
-* [[option_weechat.look.chat_space_right]] *weechat.look.chat_space_right*
-** Beschreibung: pass:none[auf der rechten Seite des Chatbereichs ein Leerzeichen darstellen, sofern rechts eine Bar angezeigt wird (dies gilt sowohl für Text als auch für die Lesemarkierung)]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+off+`
-
-* [[option_weechat.look.color_basic_force_bold]] *weechat.look.color_basic_force_bold*
-** Beschreibung: pass:none[erzwingt das Textattribut "fett" für helle Farben und "darkgray", um diese Farben stärker hervorzuheben (diese Einstellung ist standardmäßig deaktiviert: "fett" findet ausschließlich dann Verwendung falls das Terminal weniger als 16 Farben zur Verfügung stellt)]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+off+`
-
-* [[option_weechat.look.color_inactive_buffer]] *weechat.look.color_inactive_buffer*
-** Beschreibung: pass:none[Textfarbe für Zeilen in einem inaktiven Buffer (betrifft Zeilen in einem zusammengefügt Buffer, welcher nicht aktiv ist)]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+on+`
-
-* [[option_weechat.look.color_inactive_message]] *weechat.look.color_inactive_message*
-** Beschreibung: pass:none[nutzt eine andere Farbe um die inaktiven Nachrichten darzustellen (Fenster ist nicht das aktuelle Fenster oder wenn die Zeile des zusammengefügten Buffers nicht die aktiv Zeile ist)]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+on+`
-
-* [[option_weechat.look.color_inactive_prefix]] *weechat.look.color_inactive_prefix*
-** Beschreibung: pass:none[nutzt eine andere Farbe um den inaktiven Präfix darzustellen (Fenster ist nicht das aktuelle Fenster oder wenn die Zeile des zusammengefügten Buffers nicht die aktiv Zeile ist)]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+on+`
-
-* [[option_weechat.look.color_inactive_prefix_buffer]] *weechat.look.color_inactive_prefix_buffer*
-** Beschreibung: pass:none[nutzt eine andere Farbe für den inaktiven Buffernamen im Präfix (das Fenster ist nicht das aktuelle aktive Fenster oder wenn die Zeile des zusammengefügten Buffers nicht die aktiv Zeile ist)]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+on+`
-
-* [[option_weechat.look.color_inactive_time]] *weechat.look.color_inactive_time*
-** Beschreibung: pass:none[nutzt eine andere Farbe um die inaktive Zeitangabe darzustellen (Fenster ist nicht das aktuelle Fenster oder wenn die Zeile des zusammengefügten Buffers nicht die aktiv Zeile ist)]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+off+`
-
-* [[option_weechat.look.color_inactive_window]] *weechat.look.color_inactive_window*
-** Beschreibung: pass:none[Textfarbe für Zeilen in einem inaktiven Fenster (betrifft das Fenster, welches nicht aktiv ist)]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+on+`
-
-* [[option_weechat.look.color_nick_offline]] *weechat.look.color_nick_offline*
-** Beschreibung: pass:none[Nicks die Offline sind werden im Buffer in einer anderen Farbe dargestellt (dies betrifft Nicks, die nicht in der Benutzerliste vorhanden sind!)]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+off+`
-
-* [[option_weechat.look.color_pairs_auto_reset]] *weechat.look.color_pairs_auto_reset*
-** Beschreibung: pass:none[automatischer Reset der Farbpaarungen sobald die verfügbare Anzahl an Paaren kleiner oder gleich der hier angegebenen Anzahl ist (-1 = deaktiviert den automatischen Reset, dann ist ein manueller Reset mittels "/color reset" notwendig falls alle Farbpaarungen belegt sind)]
-** Typ: integer
-** Werte: -1 .. 256
-** Standardwert: `+5+`
-
-* [[option_weechat.look.color_real_white]] *weechat.look.color_real_white*
-** Beschreibung: pass:none[falls diese Einstellung aktiviert ist, wird echtes weiß als Farbe genutzt. Standardmäßig ist diese Einstellung deaktiviert, damit keine Probleme bei Terminals auftreten, die einen weißen Hintergrund nutzen (falls man keinen weißen Hintergrund nutzt, dann ist es ratsam diese Einstellung zu aktivieren. Andernfalls wird die voreingestellte Vordergrundfarbe des Terminals verwendet)]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+off+`
-
-* [[option_weechat.look.command_chars]] *weechat.look.command_chars*
-** Beschreibung: pass:none[Bestimmt ein- oder mehrere Zeichen mit denen man ebenfalls einen Befehl ausführen kann. Zum Beispiel mittels ".$". Der Schrägstrich (slash: "/") ist ein reserviertes Zeichen und wird immer genutzt]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+""+`
-
-* [[option_weechat.look.command_incomplete]] *weechat.look.command_incomplete*
-** Beschreibung: pass:none[ist diese Einstellung aktiviert werden unvollständige und eindeutige Befehle akzeptiert, zum Beispiel /he für /help]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+off+`
-
-* [[option_weechat.look.confirm_quit]] *weechat.look.confirm_quit*
-** Beschreibung: pass:none[ist diese Einstellung aktiviert, muss der "/quit" Befehl mit dem Argument "-yes" ausgeführt werden (siehe /help quit)]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+off+`
-
-* [[option_weechat.look.confirm_upgrade]] *weechat.look.confirm_upgrade*
-** Beschreibung: pass:none[ist diese Einstellung aktiviert, muss der "/upgrade" Befehl mit dem Argument "-yes" ausgeführt werden (siehe /help upgrade)]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+off+`
-
-* [[option_weechat.look.day_change]] *weechat.look.day_change*
-** Beschreibung: pass:none[bei einem Datumswechsel wird eine entsprechende Nachricht angezeigt]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+on+`
-
-* [[option_weechat.look.day_change_message_1date]] *weechat.look.day_change_message_1date*
-** Beschreibung: pass:none[Nachricht welche bei einem Datumswechsel angezeigt wird (zum Beispiel als erste Zeile im Buffer) (siehe man strftime, welche Platzhalter für das Datum und die Uhrzeit verwendet werden) (Hinweis: Inhalt wird evaluiert, somit kann mittels des Formats "${color:xxx} Farben gesetzt werden, siehe /help eval)]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+"-- %a, %d %b %Y --"+`
-
-* [[option_weechat.look.day_change_message_2dates]] *weechat.look.day_change_message_2dates*
-** Beschreibung: pass:none[Nachricht welche bei einem Datumswechsel angezeigt wird, dabei werden zwei Daten angegeben die zwischen zwei Nachrichten liegen; der zweite Platzhalter muss mit zwei "%" angegeben werden, da strftime auch zweimal aufgerufen wird (siehe man strftime, welche Platzhalter für das Datum und die Uhrzeit verwendet werden) (Hinweis: Inhalt wird evaluiert, somit kann mittels des Formats "${color:xxx} Farben gesetzt werden, siehe /help eval)]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+"-- %%a, %%d %%b %%Y (%a, %d %b %Y) --"+`
-
-* [[option_weechat.look.eat_newline_glitch]] *weechat.look.eat_newline_glitch*
-** Beschreibung: pass:none[aktiviert man diese Einstellung, dann wird "eat_newline_glitch" auf 0 gesetzt; dies bedeutet, dass am Ende einer Zeile kein Zeilenumbruch angehängt wird und somit der Text beim kopieren aus WeeChat und beim einfügen in einer anderen Applikation nicht umgebrochen wird (diese Einstellung ist standardmäßig deaktiviert, da es zu schwerwiegenden Grafikfehlern kommen kann)]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+off+`
-
-* [[option_weechat.look.emphasized_attributes]] *weechat.look.emphasized_attributes*
-** Beschreibung: pass:none[Attribute um Textpassagen hervorzuheben: Das setzen von ein- oder mehreren Attributen ist möglich ("%" für blinkenden Text, "." zum "dimmen" (halbe Helligkeit),"*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen); wenn die Zeichenkette leer ist, werden die Farben genutzt die durch weechat.color.emphasized* definiert sind]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+""+`
-
-* [[option_weechat.look.highlight]] *weechat.look.highlight*
-** Beschreibung: pass:none[eine durch Kommata getrennte Liste der hervorzuhebenden Wörter. Groß- und Kleinschreibung wird dabei standardmäßig nicht beachtet (um zwischen Groß-und Kleinschreibung zu unterscheiden muss am Wortanfang "(?-i)" genutzt werden). Schlagwörter können mit "*", als Joker, beginnen oder enden; Beispiel: "test,(?-i)*toto*,flash*"]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+""+`
-
-* [[option_weechat.look.highlight_disable_regex]] *weechat.look.highlight_disable_regex*
-** Beschreibung: pass:none[Erweiterter regulärer POSIX-Ausdruck, der verwendet wird, um jede Hervorhebung von einer Nachricht zu verhindern: Diese Option hat eine höhere Priorität als andere Hervorhebungsoptionen (sofern die Zeichenkette in der Nachricht gefunden wird, die Hervorhebung deaktiviert ist und die andereOptionen ignoriert werden), bei regulären Ausdrücken wird die Groß-/Kleinschreibung nicht beachtet (verwenden Sie "(?-i)" am Anfang, um Groß- und Kleinschreibung zu beachten), Beispiele: "<flash.*>", "(?-i)<Flash.*>"]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+""+`
-
-* [[option_weechat.look.highlight_regex]] *weechat.look.highlight_regex*
-** Beschreibung: pass:none[Suchmuster (erweiterter regulärer POSIX Ausdruck) welches genutzt werden soll, um zu überprüfen ob eine Nachricht ein Highlight enthält oder nicht. Mindestens eine Zeichenkette muss dabei auf das Suchmuster passen (alphanumerisch, "-", "_" oder "|"). Das Suchmuster unterscheidet dabei nicht zwischen Groß-und Kleinschreibung (um zwischen Groß-und Kleinschreibung zu unterscheiden muss am Wortanfang "(?-i)" genutzt werden). Beispiele: "flashcode|flashy", "(?-i)FlashCode|flashy"]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+""+`
-
-* [[option_weechat.look.highlight_tags]] *weechat.look.highlight_tags*
-** Beschreibung: pass:none[eine durch Kommata getrennte Liste von Tags, die eine highlight-Nachricht erzeugen; Groß- und Kleinschreibung wird dabei nicht beachtet; der Platzhalter "*" darf in einem Tag genutzt werden. Um eine logische "und" Verknüpfung zu verwenden, können mehrere Tags durch "+" zusammengefügt werden. Beispiele: "nick_flashcode" für Nachrichten von "FlashCode", "irc_notice+nick_toto*" für Notice-Nachrichten von Nicks, die mit "toto" beginnen]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+""+`
-
-* [[option_weechat.look.hotlist_add_conditions]] *weechat.look.hotlist_add_conditions*
-** Beschreibung: pass:none[Bedingungen um einen Buffer in die Hotlist einzutragen (sofern der Notify-Level für den Buffer korrekt ist); es können folgende Bedingungen genutzt werden: "window" (zur Zeit genutzter Window-Pointer), "buffer" (Buffer-Pointer welcher zur Hotlist hinzugefügt werden soll), "priority" (0 = niedrig, 1 = Nachricht, 2 = Privat, 3 = Highlight); Standardmäßig wird ein Buffer in die Hotlist eingetragen falls man abwesend sein sollte oder falls der Buffer nicht auf dem Bildschirm angezeigt wird (Buffer wird nicht in einem Fenster dargestellt) oder falls mindestens ein relay client mit dem weechat Protokoll verbunden ist]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+"${away} || ${buffer.num_displayed} == 0 || ${info:relay_client_count,weechat,connected} > 0"+`
-
-* [[option_weechat.look.hotlist_buffer_separator]] *weechat.look.hotlist_buffer_separator*
-** Beschreibung: pass:none[Zeichen welches zum Trennen zwischen den verschiedenen Buffern in der Hotlist genutzt werden soll]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+", "+`
-
-* [[option_weechat.look.hotlist_count_max]] *weechat.look.hotlist_count_max*
-** Beschreibung: pass:none[maximale Anzahl an Nachrichtenzähler in der Hotlist, für einen Buffer: 0 = der Nachrichtenzähler wird nicht dargestellt, nächst höhere Zahl = zeigt maximal <N> Nachrichtenzähler an (von höchster zu niedrigster Priorität)]
-** Typ: integer
-** Werte: 0 .. 4
-** Standardwert: `+2+`
-
-* [[option_weechat.look.hotlist_count_min_msg]] *weechat.look.hotlist_count_min_msg*
-** Beschreibung: pass:none[zeigt einen Nachrichtenzähler an, sofern die Anzahl der Nachrichten größer oder gleich dem hier angegebenen Wertes ist]
-** Typ: integer
-** Werte: 1 .. 100
-** Standardwert: `+2+`
-
-* [[option_weechat.look.hotlist_names_count]] *weechat.look.hotlist_names_count*
-** Beschreibung: pass:none[maximale Anzahl an Namen in der Hotlist (0 = es werden keine Namen angezeigt, sondern nur die entsprechenden Nummern der Buffer)]
-** Typ: integer
-** Werte: 0 .. 10000
-** Standardwert: `+3+`
-
-* [[option_weechat.look.hotlist_names_length]] *weechat.look.hotlist_names_length*
-** Beschreibung: pass:none[maximale Länge der Namen in der Hotlist (0: kein Limitierung)]
-** Typ: integer
-** Werte: 0 .. 32
-** Standardwert: `+0+`
-
-* [[option_weechat.look.hotlist_names_level]] *weechat.look.hotlist_names_level*
-** Beschreibung: pass:none[Grad für die Darstellung wann der Namen eines Buffers in der Hotlist angezeigt werden soll (Kombination aus: 1=join/part, 2=Nachricht, 4=Query, 8=Highlight, z.B. 12=Query+Highlight)]
-** Typ: integer
-** Werte: 1 .. 15
-** Standardwert: `+12+`
-
-* [[option_weechat.look.hotlist_names_merged_buffers]] *weechat.look.hotlist_names_merged_buffers*
-** Beschreibung: pass:none[ist diese Einstellung aktiviert, werden die Namen der zusammengefügten Buffer in der Hotlist dargestellt]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+off+`
-
-* [[option_weechat.look.hotlist_prefix]] *weechat.look.hotlist_prefix*
-** Beschreibung: pass:none[Text der vor der Hotlist angezeigt werden soll]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+"H: "+`
-
-* [[option_weechat.look.hotlist_remove]] *weechat.look.hotlist_remove*
-** Beschreibung: pass:none[entfernt Buffer aus der Hotlist: buffer = entfernt einen einzelnen Buffer, merged = entfernt alle zusammengefügten Buffer auf einmal]
-** Typ: integer
-** Werte: buffer, merged
-** Standardwert: `+merged+`
-
-* [[option_weechat.look.hotlist_short_names]] *weechat.look.hotlist_short_names*
-** Beschreibung: pass:none[ist diese Einstellung aktiviert, wird der Kurzname der zusammengefügten Buffer in der Hotlist dargestellt (die Darstellung geschieht nach dem ersten "." im Namen)]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+on+`
-
-* [[option_weechat.look.hotlist_sort]] *weechat.look.hotlist_sort*
-** Beschreibung: pass:none[Sortierung der Hotlist: group_time_*: nach Benachrichtigungstufe (Highlights zuerst) und dann nach Uhrzeit, group_number_*: nach Benachrichtigungstufe (Highlights zuerst) und dann nach Buffer-Nummer, number_*: sortiert nach Buffer-Nummer; asc = aufsteigende Sortierung, desc = absteigende Sortierung]
-** Typ: integer
-** Werte: group_time_asc, group_time_desc, group_number_asc, group_number_desc, number_asc, number_desc
-** Standardwert: `+group_time_asc+`
-
-* [[option_weechat.look.hotlist_suffix]] *weechat.look.hotlist_suffix*
-** Beschreibung: pass:none[Text der am Ende der Hotlist angezeigt werden soll]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+""+`
-
-* [[option_weechat.look.hotlist_unique_numbers]] *weechat.look.hotlist_unique_numbers*
-** Beschreibung: pass:none[die Nummer des Buffers wird nur einmal in der Hotlist angezeigt (diese Einstellung kommt nur zum Tragen sofern KEINE Buffernamen angezeigt werden)]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+on+`
-
-* [[option_weechat.look.hotlist_update_on_buffer_switch]] *weechat.look.hotlist_update_on_buffer_switch*
-** Beschreibung: pass:none[Aktualisiert die Hotlist, wenn der Buffer gewechselt wird]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+on+`
-
-* [[option_weechat.look.input_cursor_scroll]] *weechat.look.input_cursor_scroll*
-** Beschreibung: pass:none[Anzahl an Zeichen die nach links verschoben werden sollen, falls das Ende der Eingabezeile erreicht wird]
-** Typ: integer
-** Werte: 0 .. 100
-** Standardwert: `+20+`
-
-* [[option_weechat.look.input_share]] *weechat.look.input_share*
-** Beschreibung: pass:none[diese Einstellung erlaubt es den Inhalt der aktuellen Eingabezeile in andere Buffern zu übernehmen. Dabei kann unterschieden werden, ob ausschließlich Befehle (commands), nur Text (text) oder beides (all) berücksichtigt werden soll (der Befehlsverlauf der einzelnen Buffer bleibt davon unberührt)]
-** Typ: integer
-** Werte: none, commands, text, all
-** Standardwert: `+none+`
-
-* [[option_weechat.look.input_share_overwrite]] *weechat.look.input_share_overwrite*
-** Beschreibung: pass:none[ist diese Einstellung aktiviert und die Eingabezeile wird für alle Buffer gleichberechtigt genutzt, dann wird der Inhalt im Zielbuffer überschrieben]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+off+`
-
-* [[option_weechat.look.input_undo_max]] *weechat.look.input_undo_max*
-** Beschreibung: pass:none[maximale Anzahl von "Rücknahmen" für Befehle im Verlauf, pro Buffer (0: deaktiviert die Funktion)]
-** Typ: integer
-** Werte: 0 .. 65535
-** Standardwert: `+32+`
-
-* [[option_weechat.look.item_away_message]] *weechat.look.item_away_message*
-** Beschreibung: pass:none[Abwesenheitsnachricht im Away-Bar-Item anzeigen]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+on+`
-
-* [[option_weechat.look.item_buffer_filter]] *weechat.look.item_buffer_filter*
-** Beschreibung: pass:none[Zeichen mit welchem signalisiert wird ob im aktuellen Buffer die Filterfunktion eingeschaltet ist (durch Bar-Item "buffer_filter")]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+"*"+`
-
-* [[option_weechat.look.item_buffer_zoom]] *weechat.look.item_buffer_zoom*
-** Beschreibung: pass:none[Zeichen mit welchem signalisiert wird ob im aktuellen Buffer der Zoom aktiviert ist (durch Bar-Item "buffer_zoom")]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+"!"+`
-
-* [[option_weechat.look.item_mouse_status]] *weechat.look.item_mouse_status*
-** Beschreibung: pass:none[Zeichen mit welchem signalisiert wird ob die Mausfunktionalität eingeschaltet ist (durch Bar-Item "mouse_status")]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+"M"+`
-
-* [[option_weechat.look.item_time_format]] *weechat.look.item_time_format*
-** Beschreibung: pass:none[Format für die Zeitanzeige des Bar-Items, "time" (siehe man strftime, welche Platzhalter für das Datum und die Uhrzeit verwendet werden)(Hinweis: Inhalt wird evaluiert, somit kann mittels des Formats "${color:xxx} Farben gesetzt werden, siehe /help eval)]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+"%H:%M"+`
-
-* [[option_weechat.look.jump_current_to_previous_buffer]] *weechat.look.jump_current_to_previous_buffer*
-** Beschreibung: pass:none[wechselt zum vorher genutzten Buffer falls man mit dem Befehl /buffer *N (N ist die Buffer-Nummer) zum aktuellen Buffer gewechselt hat. Dies dient dazu um zwischen den letzten beiden Buffern hin- und her zu springen]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+on+`
-
-* [[option_weechat.look.jump_previous_buffer_when_closing]] *weechat.look.jump_previous_buffer_when_closing*
-** Beschreibung: pass:none[wechselt zum vorher genutzten Buffer, falls der aktuelle Buffer geschlossen wird (wenn diese Funktion deaktiviert ist wird zum Buffer gewechselt der die relative Position -1 einnimmt)]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+on+`
-
-* [[option_weechat.look.jump_smart_back_to_buffer]] *weechat.look.jump_smart_back_to_buffer*
-** Beschreibung: pass:none[falls keine weiteren Einträge in der Hotlist vorhanden sind wird zum Ausgangsbuffer zurückgekehrt]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+on+`
-
-* [[option_weechat.look.key_bind_safe]] *weechat.look.key_bind_safe*
-** Beschreibung: pass:none[Es dürfen nur "geschützte" Tasten zugeordnet werden (Tasten, die mittels ctrl oder meta verwendet werden)]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+on+`
-
-* [[option_weechat.look.key_grab_delay]] *weechat.look.key_grab_delay*
-** Beschreibung: pass:none[Standardverzögerung (in Millisekunden) um eine Tasteneingabe zu greifen (Standardtastenbelegung: alt-k); die Verzögerung kann mit dem /input Befehl angepasst werden (siehe /help input)]
-** Typ: integer
-** Werte: 1 .. 10000
-** Standardwert: `+800+`
-
-* [[option_weechat.look.mouse]] *weechat.look.mouse*
-** Beschreibung: pass:none[Mausunterstützung einschalten]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+off+`
-
-* [[option_weechat.look.mouse_timer_delay]] *weechat.look.mouse_timer_delay*
-** Beschreibung: pass:none[Verzögerung (in Millisekunden) um eine Mauseingabe zu fangen: WeeChat wartet zuerst diese Verzögerung ab bevor das Kommando verarbeitet wird]
-** Typ: integer
-** Werte: 1 .. 10000
-** Standardwert: `+100+`
-
-* [[option_weechat.look.nick_color_force]] *weechat.look.nick_color_force*
-** Beschreibung: pass:none[erzwingt für einen Nick eine spezielle Farbe. Die standardmäßig, mittels Streuwertfunktion aus dem Nicknamen, generierte Farbe findet für diese Nicks keine Anwendung (Format:"Nick1:Farbe1;Nick2:Farbe2"). Zuerst wird beim Namen des Nick nach Groß- und Kleinschreibung unterschieden. Sollte der Nick nicht gefunden werden findet keine Unterscheidung mehr statt. Somit ist es möglich die Nicks, für diese Einstellung, ausschließlich in Kleinschrift aufzuführen; die Farbauswahl kann auch eine Hintergrundfarbe beinhalten "Textfarbe,Hintergrundfarbe", zum Beispiel "yellow,red"]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+""+`
-
-* [[option_weechat.look.nick_color_hash]] *weechat.look.nick_color_hash*
-** Beschreibung: pass:none[Gibt an welcher Hash-Algorithmus zur Farbauswahl für Nicks genutzt werden soll: djb2 = Variante des djb2 (Position der Buchstaben innerhalb des Nicks werden berücksichtigt: Anagramme eines Nick erhalten eine andere Farbe), djb2_32 = Variante von djb2 wobei 32-Bit anstelle von 64-Bit Integer genutzt wird, sum = hier ist nur die Anzahl der Buchstaben maßgeblich, sum_32 = wie sum, nur das 32-Bit anstelle von 64-Bit Integer genutzt wird]
-** Typ: integer
-** Werte: djb2, sum, djb2_32, sum_32
-** Standardwert: `+djb2+`
-
-* [[option_weechat.look.nick_color_hash_salt]] *weechat.look.nick_color_hash_salt*
-** Beschreibung: pass:none[salt für den Hash-Algorithmus, der zum Auffinden von Nickfarben verwendet wird (der Nickname wird an diesen Salt angehängt und der Hash-Algorithmus verarbeitet diesen String); Wenn Sie dies ändern, werden die Nickfarben gemischt]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+""+`
-
-* [[option_weechat.look.nick_color_stop_chars]] *weechat.look.nick_color_stop_chars*
-** Beschreibung: pass:none[Zeichen die genutzt werden sollen damit bei der Generierung der Farbe für einen Nicknamen abgebrochen wird. Es muss mindestens ein Zeichen im Nicknamen enthalten sein der nicht in dieser Liste aufgeführt wird, damit eine Farbe für den Nicknamen erstellt werden kann (Beispiel: Der Nickname lautet "|nick|abwesend" wobei das Zeichen "|" ignoriert werden soll. Die Farbe für den Nicknamen wird nun für "|nick" anstelle von "|nick|abwesend" erstellt); diese Option hat einen Einfluss auf die Option weechat.look.nick_color_force, dort aufgeführte Nicks sollten keine Zeichen haben, die von dieser Option ignoriert werden]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+"_|["+`
-
-* [[option_weechat.look.nick_prefix]] *weechat.look.nick_prefix*
-** Beschreibung: pass:none[Text, der vor dem Nick dargestellt werden soll, Beispiel: "<"]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+""+`
-
-* [[option_weechat.look.nick_suffix]] *weechat.look.nick_suffix*
-** Beschreibung: pass:none[Text, der nach dem Nick dargestellt werden soll, Beispiel: ">"]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+""+`
-
-* [[option_weechat.look.paste_auto_add_newline]] *weechat.look.paste_auto_add_newline*
-** Beschreibung: pass:none[fügt automatisch einen Zeilenumbruch nach dem Einfügen eines Textes hinzu, sofern mindestens zwei Zeilen eingefügt wurden und nach einer Bestätigung gefragt wurde]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+on+`
-
-* [[option_weechat.look.paste_bracketed]] *weechat.look.paste_bracketed*
-** Beschreibung: pass:none[aktiviert den "bracketed paste mode" des Terminals (wird nicht durch alle Terminals/Multiplexer unterstützt): Dieser Modus erlaubt das Einfügen von Steuersequenzen die in Klammern gesetzt sind. WeeChat kann dadurch ermitteln ob ein Text eingefügt oder geschrieben wurde ("ESC[200~", gefolgt von dem einzufügenden Text und einem abschließenden "ESC[201~")]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+on+`
-
-* [[option_weechat.look.paste_bracketed_timer_delay]] *weechat.look.paste_bracketed_timer_delay*
-** Beschreibung: pass:none[erzwingt beim Einfügen von Steuersequenzen, nach einer vorgegeben Zeit (in Sekunden), dessen Ende, sofern die Steuersequenz zum Beenden ("ESC[201~") nicht innerhalb dieser Zeitvorgabe empfangen wurde]
-** Typ: integer
-** Werte: 1 .. 60
-** Standardwert: `+10+`
-
-* [[option_weechat.look.paste_max_lines]] *weechat.look.paste_max_lines*
-** Beschreibung: pass:none[maximale Anzahl an Zeilen die, ohne Rückfrage, eingefügt werden sollen (-1 = deaktiviert die Funktion); diese Option wird nur genutzt wenn das Bar-Item "input_paste" in mindestens einer Bar genutzt wird (Standardmäßig wird es in der "input" Bar verwendet)]
-** Typ: integer
-** Werte: -1 .. 2147483647
-** Standardwert: `+1+`
-
-* [[option_weechat.look.prefix_action]] *weechat.look.prefix_action*
-** Beschreibung: pass:none[Präfix, dass bei einer Action-Nachricht genutzt wird (Hinweis: Inhalt wird evaluiert, somit kann mittels des Formats "${color:xxx} Farben gesetzt werden, siehe /help eval)]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+" *"+`
-
-* [[option_weechat.look.prefix_align]] *weechat.look.prefix_align*
-** Beschreibung: pass:none[Einstellung für Präfix (keine = none, links = left, rechts = right (Voreinstellung))]
-** Typ: integer
-** Werte: none, left, right
-** Standardwert: `+right+`
-
-* [[option_weechat.look.prefix_align_max]] *weechat.look.prefix_align_max*
-** Beschreibung: pass:none[maximale Größe des Präfix (0 = keine Limitierung)]
-** Typ: integer
-** Werte: 0 .. 128
-** Standardwert: `+0+`
-
-* [[option_weechat.look.prefix_align_min]] *weechat.look.prefix_align_min*
-** Beschreibung: pass:none[minimale Größe des Präfix]
-** Typ: integer
-** Werte: 0 .. 128
-** Standardwert: `+0+`
-
-* [[option_weechat.look.prefix_align_more]] *weechat.look.prefix_align_more*
-** Beschreibung: pass:none[Zeichen welches dargestellt werden soll, falls der Nickname abgeschnitten wird (es darf nur ein Zeichen genutzt werden)]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+"+"+`
-
-* [[option_weechat.look.prefix_align_more_after]] *weechat.look.prefix_align_more_after*
-** Beschreibung: pass:none[Das Zeichen welches zum Verkürzen angezeigt wird (Standardzeichen: "+"), nach dem Nick-Suffix darstellen (das vorhandene Leerzeichen wird ersetzt); wird diese Funktion deaktiviert, dann wird das Zeichen nach dem Nick dargestellt]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+on+`
-
-* [[option_weechat.look.prefix_buffer_align]] *weechat.look.prefix_buffer_align*
-** Beschreibung: pass:none[Einstellung des Präfix für den Namen des Buffers, falls viele Buffer zu einem Buffer zusammengefügt wurden (keine = none, links = left, rechts = right (Standardwert))]
-** Typ: integer
-** Werte: none, left, right
-** Standardwert: `+right+`
-
-* [[option_weechat.look.prefix_buffer_align_max]] *weechat.look.prefix_buffer_align_max*
-** Beschreibung: pass:none[maximale Größe für den Namen des Buffers, falls mehrere Buffer zusammengefügt worden sind (0 = keine Größenbegrenzung)]
-** Typ: integer
-** Werte: 0 .. 128
-** Standardwert: `+0+`
-
-* [[option_weechat.look.prefix_buffer_align_more]] *weechat.look.prefix_buffer_align_more*
-** Beschreibung: pass:none[Zeichen welches dargestellt werden soll falls der Name des Buffers abgeschnitten wird (wenn mehrere Buffer zusammengefügt wurden und diese somit die selbe Nummer besitzen) (es darf nur ein Zeichen genutzt werden)]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+"+"+`
-
-* [[option_weechat.look.prefix_buffer_align_more_after]] *weechat.look.prefix_buffer_align_more_after*
-** Beschreibung: pass:none[Das Zeichen welches zum Verkürzen angezeigt wird (Standardzeichen: "+"), nach dem Nick-Suffix darstellen (das vorhandene Leerzeichen wird ersetzt); wird diese Funktion deaktiviert, dann wird das Zeichen nach dem Nick dargestellt]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+on+`
-
-* [[option_weechat.look.prefix_error]] *weechat.look.prefix_error*
-** Beschreibung: pass:none[Präfix, dass bei einer Fehlernachricht genutzt wird (Hinweis: Inhalt wird evaluiert, somit kann mittels des Formats "${color:xxx} Farben gesetzt werden, siehe /help eval)]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+"=!="+`
-
-* [[option_weechat.look.prefix_join]] *weechat.look.prefix_join*
-** Beschreibung: pass:none[Präfix, dass bei einer Join-Nachricht genutzt wird (Hinweis: Inhalt wird evaluiert, somit kann mittels des Formats "${color:xxx} Farben gesetzt werden, siehe /help eval)]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+"-->"+`
-
-* [[option_weechat.look.prefix_network]] *weechat.look.prefix_network*
-** Beschreibung: pass:none[Präfix, dass bei einer Netzwerknachricht genutzt wird (Hinweis: Inhalt wird evaluiert, somit kann mittels des Formats "${color:xxx} Farben gesetzt werden, siehe /help eval)]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+"--"+`
-
-* [[option_weechat.look.prefix_quit]] *weechat.look.prefix_quit*
-** Beschreibung: pass:none[Präfix, dass bei einer Quit-Nachricht genutzt wird (Hinweis: Inhalt wird evaluiert, somit kann mittels des Formats "${color:xxx} Farben gesetzt werden, siehe /help eval)]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+"<--"+`
-
-* [[option_weechat.look.prefix_same_nick]] *weechat.look.prefix_same_nick*
-** Beschreibung: pass:none[setzt ein Präfix welches anstelle des Nicks der Nachricht vorangestellt wird, sofern die vorherige aber nicht die nachfolgende Nachricht von dem selben Nick geschrieben wurde. Wird ein Leerzeichen (" ") genutzt, dann wird der Nachricht kein Präfix vorangestellt. Um diese Funktion zu deaktivieren und den Nick als Präfix zu nutzen, einfach keine Zeichenkette angeben]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+""+`
-
-* [[option_weechat.look.prefix_same_nick_middle]] *weechat.look.prefix_same_nick_middle*
-** Beschreibung: pass:none[setzt ein Präfix welches anstelle des Nicks der Nachricht vorangestellt wird, sofern die vorherige und die nachfolgende Nachricht von dem selben Nick geschrieben wurde. Wird ein Leerzeichen (" ") genutzt, dann wird der Nachricht kein Präfix vorangestellt. Um diese Funktion zu deaktivieren und den Nick als Präfix zu nutzen, einfach keine Zeichenkette angeben]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+""+`
-
-* [[option_weechat.look.prefix_suffix]] *weechat.look.prefix_suffix*
-** Beschreibung: pass:none[Nach dem Präfix anzufügende Zeichenfolge]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+"|"+`
-
-* [[option_weechat.look.quote_nick_prefix]] *weechat.look.quote_nick_prefix*
-** Beschreibung: pass:none[Text der vor dem Nick dargestellt werden soll, wenn die Nachricht gequotet wird (siehe /help cursor)]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+"<"+`
-
-* [[option_weechat.look.quote_nick_suffix]] *weechat.look.quote_nick_suffix*
-** Beschreibung: pass:none[Text der nach dem Nick dargestellt werden soll, wenn die Nachricht gequotet wird (siehe /help cursor)]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+">"+`
-
-* [[option_weechat.look.quote_time_format]] *weechat.look.quote_time_format*
-** Beschreibung: pass:none[Zeitformat wenn eine Nachricht gequotet wird (siehe /help cursor)]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+"%H:%M:%S"+`
-
-* [[option_weechat.look.read_marker]] *weechat.look.read_marker*
-** Beschreibung: pass:none[nutzt eine Linie oder ein Zeichen, als Lesezeichen, um die erste ungelesene Nachricht in einem Buffer hervorzuheben]
-** Typ: integer
-** Werte: none, line, char
-** Standardwert: `+line+`
-
-* [[option_weechat.look.read_marker_always_show]] *weechat.look.read_marker_always_show*
-** Beschreibung: pass:none[ist diese Einstellung gesetzt wird das Lesezeichen immer im Buffer dargestellt, auch wenn noch keine neue Nachricht geschrieben wurde]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+off+`
-
-* [[option_weechat.look.read_marker_string]] *weechat.look.read_marker_string*
-** Beschreibung: pass:none[Zeichen, das als Lesezeichen genutzt werden soll (das Zeichen wird bis zum Ende der Zeile wiederholt)]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+"- "+`
-
-* [[option_weechat.look.read_marker_update_on_buffer_switch]] *weechat.look.read_marker_update_on_buffer_switch*
-** Beschreibung: pass:none[Aktualisiert das Lesezeichen, wenn der Buffer gewechselt wird]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+on+`
-
-* [[option_weechat.look.save_config_on_exit]] *weechat.look.save_config_on_exit*
-** Beschreibung: pass:none[die aktuelle Konfiguration wird beim Beenden automatisch gesichert]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+on+`
-
-* [[option_weechat.look.save_config_with_fsync]] *weechat.look.save_config_with_fsync*
-** Beschreibung: pass:none[es wird fsync verwendet um die Konfigurationsdateien mit dem Datenträger zu synchronisieren (siehe man fsync); dies verlangsamt das Sichern der Daten, soll aber zum Beispiel bei einem Stromausfall dafür sorgen, dass keine Daten verloren gehen]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+off+`
-
-* [[option_weechat.look.save_layout_on_exit]] *weechat.look.save_layout_on_exit*
-** Beschreibung: pass:none[beim Beenden wird das aktuelle Layout gesichert (Buffer, Fenster oder beides)]
-** Typ: integer
-** Werte: none, buffers, windows, all
-** Standardwert: `+none+`
-
-* [[option_weechat.look.scroll_amount]] *weechat.look.scroll_amount*
-** Beschreibung: pass:none[Anzahl der zu scrollenden Zeilen wenn seitenweise geblättert wird (Bild hoch/runter)]
-** Typ: integer
-** Werte: 1 .. 2147483647
-** Standardwert: `+3+`
-
-* [[option_weechat.look.scroll_bottom_after_switch]] *weechat.look.scroll_bottom_after_switch*
-** Beschreibung: pass:none[scrollt zum unteren Ende des Fensters nachdem zu einem anderen Buffer gewechselt wurde (die aktuelle Position wird dabei nicht gesichert); diese Funktion hat nur einen Einfluss auf Buffer mit einem formatierten Inhalt und nicht auf Buffer mit einem freien Inhalt]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+off+`
-
-* [[option_weechat.look.scroll_page_percent]] *weechat.look.scroll_page_percent*
-** Beschreibung: pass:none[Angabe in Prozent, die die Seite hoch oder runter gescrollt werden soll (Beispiel: 100 für eine ganze Seite, 50 für eine halbe Seite)]
-** Typ: integer
-** Werte: 1 .. 100
-** Standardwert: `+100+`
-
-* [[option_weechat.look.search_text_not_found_alert]] *weechat.look.search_text_not_found_alert*
-** Beschreibung: pass:none[Informiert den Anwender falls der gesuchte Text nicht im Buffer gefunden wurde]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+on+`
-
-* [[option_weechat.look.separator_horizontal]] *weechat.look.separator_horizontal*
-** Beschreibung: pass:none[das angegebene Zeichen wird verwendet um die horizontalen Linien zu zeichnen. Wird kein Zeichen angegeben, dann zeichnet ncurses eine durchgängige Linie. Dies kann allerdings bei einigen Terminals zu Problemen führen, falls die URL Auswahl genutzt wird. Die Schriftbreite muss exakt ein Zeichen betragen]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+"-"+`
-
-* [[option_weechat.look.separator_vertical]] *weechat.look.separator_vertical*
-** Beschreibung: pass:none[das angegebene Zeichen wird verwendet um die vertikale Linien zu zeichnen. Wird kein Zeichen angegeben, dann zeichnet ncurses eine durchgängige Linie. Die Schriftbreite muss exakt ein Zeichen betragen]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+""+`
-
-* [[option_weechat.look.tab_width]] *weechat.look.tab_width*
-** Beschreibung: pass:none[Anzahl an Leerzeichen um Tabulatoren in Nachrichten darzustellen]
-** Typ: integer
-** Werte: 1 .. 64
-** Standardwert: `+1+`
-
-* [[option_weechat.look.time_format]] *weechat.look.time_format*
-** Beschreibung: pass:none[Format für das Datum, wenn dieses in eine Zeichenkette umgewandelt und in Nachrichten dargestellt wird (siehe man strftime, welche Platzhalter für das Datum und die Uhrzeit verwendet werden)]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+"%a, %d %b %Y %T"+`
-
-* [[option_weechat.look.window_auto_zoom]] *weechat.look.window_auto_zoom*
-** Beschreibung: pass:none[automatischer Zoom für aktuelles Fenster, sobald das Terminalfenster zu klein wird um alle Fenster darstellen zu können (mit der Tastenkombination alt-z kann der Zoom rückgängig gemacht werden, sobald das Terminal wieder groß genug ist)]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+off+`
-
-* [[option_weechat.look.window_separator_horizontal]] *weechat.look.window_separator_horizontal*
-** Beschreibung: pass:none[ist die Einstellung aktiviert dann wird eine horizontale Trennlinie zwischen Fenstern gezeichnet]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+on+`
-
-* [[option_weechat.look.window_separator_vertical]] *weechat.look.window_separator_vertical*
-** Beschreibung: pass:none[ist die Einstellung aktiviert dann wird eine vertikale Trennlinie zwischen Fenstern gezeichnet]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+on+`
-
-* [[option_weechat.look.window_title]] *weechat.look.window_title*
-** Beschreibung: pass:none[Fenstertitel für Fenster (Terminal in dem Curses GUI läuft), wird beim Programmstart gesetzt; ein leerer Eintrag belässt den original Fenstertitel (Hinweis: Inhalt wird evaluiert, siehe /help eval); Beispiel: "WeeChat ${info:version}"]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+""+`
-
-* [[option_weechat.look.word_chars_highlight]] *weechat.look.word_chars_highlight*
-** Beschreibung: pass:none[durch Kommata getrennte Liste von Zeichen (oder eine Auswahl von Zeichen) bei denen bei einem Highlight keine Worttrennung erfolgt; jeder Eintrag kann ein einzelnes Zeichen oder eine Auswahl von Zeichen sein (Format: a-z), eine Auswahl von Breitzeichen (wide character; zum Beispiel "alnum", siehe man wctype); beginnt das Item mit einem "!" wird die Auswahl umgekehrt (bedeutet, das Zeichen ist NICHT Bestandteil eines Wortes); das Zeichen "*" wird als Platzhalter verwendet; Unicode Zeichen müssen folgendes Format nutzen \u1234, zum Beispiel \u00A0 für geschütztes Leerzeichen (siehe /help print für unterstützte Formate)]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+"!\u00A0,-,_,|,alnum"+`
-
-* [[option_weechat.look.word_chars_input]] *weechat.look.word_chars_input*
-** Beschreibung: pass:none[durch Kommata getrennte Liste von Zeichen (oder eine Auswahl von Zeichen) bei denen in der Eingabezeile keine Worttrennung erfolgt; jeder Eintrag kann ein einzelnes Zeichen oder eine Auswahl von Zeichen sein (Format: a-z), eine Auswahl von Breitzeichen (wide character; zum Beispiel "alnum", siehe man wctype); beginnt das Item mit einem "!" wird die Auswahl umgekehrt (bedeutet, das Zeichen ist NICHT Bestandteil eines Wortes); das Zeichen "*" wird als Platzhalter verwendet; Unicode Zeichen müssen folgendes Format nutzen \u1234, zum Beispiel \u00A0 für geschütztes Leerzeichen (siehe /help print für unterstützte Formate)]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+"!\u00A0,-,_,|,alnum"+`
-
-* [[option_weechat.network.connection_timeout]] *weechat.network.connection_timeout*
-** Beschreibung: pass:none[Zeitüberschreitung (in Sekunden) für eine Verbindung zu einem entfernten Rechner (mittels einem Kindprozess)]
-** Typ: integer
-** Werte: 1 .. 2147483647
-** Standardwert: `+60+`
-
-* [[option_weechat.network.gnutls_ca_system]] *weechat.network.gnutls_ca_system*
-** Beschreibung: pass:none[lädt die standardmäßigen vertrauenswürdigen Zertifizierungsstellen des Systems beim Start; Dies kann deaktiviert werden, um Speicherplatz zu sparen, falls keine SSL-Verbindungen verwendet werden]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+on+`
-
-* [[option_weechat.network.gnutls_ca_user]] *weechat.network.gnutls_ca_user*
-** Beschreibung: pass:none[zusätzliche Datei(en) bei den Zertifizierungsstellen; mehrere Dateien müssen durch Doppelpunkte getrennt werden (jeder Pfad ist evaluiert, siehe Funktion string_eval_path_home in der Plugin-API-Referenz)]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+""+`
-
-* [[option_weechat.network.gnutls_handshake_timeout]] *weechat.network.gnutls_handshake_timeout*
-** Beschreibung: pass:none[Zeitüberschreitung für gnutls Handshake (in Sekunden)]
-** Typ: integer
-** Werte: 1 .. 2147483647
-** Standardwert: `+30+`
-
-* [[option_weechat.network.proxy_curl]] *weechat.network.proxy_curl*
-** Beschreibung: pass:none[Name des Proxy welcher für URL Downloads mittels Curl genutzt werden soll (wird verwendet um das Inhaltsverzeichnis für Skript-Erweiterung herunterzuladen oder in Skripten, welche die Funktion hook_process nutzen); der Proxy muss mit dem Befehl /proxy eingerichtet werden]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+""+`
-
-* [[option_weechat.plugin.autoload]] *weechat.plugin.autoload*
-** Beschreibung: pass:none[durch Kommata getrennte Liste der Erweiterungen, die beim Programmstart automatisch geladen werden sollen; "*" lädt alle vorhandenen Erweiterungen. Beginnt der Name hingegen mit "!" wird die Erweiterung nicht geladen. Im Namen der Erweiterung kann der Platzhalter "*" verwendet werden (Beispiele: "*" oder "*,!lua,!tcl")]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+"*"+`
-
-* [[option_weechat.plugin.extension]] *weechat.plugin.extension*
-** Beschreibung: pass:none[durch Kommata getrennte Liste von Dateinamenserweiterungen, welche für die Erweiterungen genutzt werden sollen]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+".so,.dll"+`
-
-* [[option_weechat.plugin.path]] *weechat.plugin.path*
-** Beschreibung: pass:none[Pfad für die Suche nach Erweiterungen (Pfad ist evaluiert, siehe Funktion string_eval_path_home in der Plugin-API-Referenz)]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+"${weechat_data_dir}/plugins"+`
-
-* [[option_weechat.plugin.save_config_on_unload]] *weechat.plugin.save_config_on_unload*
-** Beschreibung: pass:none[speichert Konfigurationen, falls Erweiterungen beendet werden]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+on+`
-
-* [[option_weechat.signal.sighup]] *weechat.signal.sighup*
-** Beschreibung: pass:none[Befehl welcher ausgeführt werden soll, wenn das Signal empfangen wird. Mehrere Befehle können durch Semikolons getrennt werden (Hinweis: Inhalt wird ausgewertet, siehe / help eval)]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+"${if:${info:weechat_headless}?/reload:/quit -yes}"+`
-
-* [[option_weechat.signal.sigquit]] *weechat.signal.sigquit*
-** Beschreibung: pass:none[Befehl welcher ausgeführt werden soll, wenn das Signal empfangen wird. Mehrere Befehle können durch Semikolons getrennt werden (Hinweis: Inhalt wird ausgewertet, siehe / help eval)]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+"/quit -yes"+`
-
-* [[option_weechat.signal.sigterm]] *weechat.signal.sigterm*
-** Beschreibung: pass:none[Befehl welcher ausgeführt werden soll, wenn das Signal empfangen wird. Mehrere Befehle können durch Semikolons getrennt werden (Hinweis: Inhalt wird ausgewertet, siehe / help eval)]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+"/quit -yes"+`
-
-* [[option_weechat.signal.sigusr1]] *weechat.signal.sigusr1*
-** Beschreibung: pass:none[Befehl welcher ausgeführt werden soll, wenn das Signal empfangen wird. Mehrere Befehle können durch Semikolons getrennt werden (Hinweis: Inhalt wird ausgewertet, siehe / help eval)]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+""+`
-
-* [[option_weechat.signal.sigusr2]] *weechat.signal.sigusr2*
-** Beschreibung: pass:none[Befehl welcher ausgeführt werden soll, wenn das Signal empfangen wird. Mehrere Befehle können durch Semikolons getrennt werden (Hinweis: Inhalt wird ausgewertet, siehe / help eval)]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+""+`
-
-* [[option_weechat.startup.command_after_plugins]] *weechat.startup.command_after_plugins*
-** Beschreibung: pass:none[Befehl wird ausgeführt, wenn WeeChat gestartet wird, nachdem die Erweiterungen geladen wurden. Mehrere Befehle können durch Semikolons getrennt werden (Hinweis: Inhalt wird ausgewertet, siehe / help eval)]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+""+`
-
-* [[option_weechat.startup.command_before_plugins]] *weechat.startup.command_before_plugins*
-** Beschreibung: pass:none[Befehl wird ausgeführt, wenn WeeChat gestartet wird, bevor Erweiterungen geladen werden. Mehrere Befehle können durch Semikolons getrennt werden (Hinweis: Inhalt wird ausgewertet, siehe / help eval)]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+""+`
-
-* [[option_weechat.startup.display_logo]] *weechat.startup.display_logo*
-** Beschreibung: pass:none[WeeChat-Logo beim Start anzeigen]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+on+`
-
-* [[option_weechat.startup.display_version]] *weechat.startup.display_version*
-** Beschreibung: pass:none[WeeChat-Version beim Start anzeigen]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+on+`
-
-* [[option_weechat.startup.sys_rlimit]] *weechat.startup.sys_rlimit*
-** Beschreibung: pass:none[setzt Ressourcenbeschränkungen für den WeeChat Prozess. (Format: "res1:limit1,res2:limit2"; Ressourcenname ist das Ende der Konstanten (RLIMIT_XXX) in Kleinbuchstaben (siehe man setrlimit für Werte); limit -1 bedeutet "unbegrenzt"; Beispiele: für die Core-Datei wird eine unbegrenzte Dateigröße bestimmt und die virtuelle Speicherkapazität auf maximal 1GB festgelegt: "core:-1,as:1000000000"]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+""+`
-// end::weechat_options[]
-
-// tag::charset_options[]
-* [[option_charset.default.decode]] *charset.default.decode*
-** Beschreibung: pass:none[globale Zeichendekodierung: Zeichendekodierung die für eingehende Nachrichten genutzt werden soll, falls diese nicht UTF-8 gültig ist]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+"iso-8859-1"+`
-
-* [[option_charset.default.encode]] *charset.default.encode*
-** Beschreibung: pass:none[globale Zeichenkodierung: Zeichenkodierung die für ausgehende Nachrichten genutzt werden soll (sollte keine Zeichenkodierung angegeben werden, wird UTF-8 verwendet, da WeeChat UTF-8 zur internen Kodierung nutzt)]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+""+`
-// end::charset_options[]
+** Standardwert: `+yellow+`
-// tag::logger_options[]
-* [[option_logger.color.backlog_end]] *logger.color.backlog_end*
-** Beschreibung: pass:none[Farbe für die letzte Zeile im Verlaufsspeicher]
+* [[option_fset.color.section_selected]] *fset.color.section_selected*
+** Beschreibung: pass:none[Farbe der Sektion für ausgewählte Zeile]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+default+`
+** Standardwert: `+white+`
-* [[option_logger.color.backlog_line]] *logger.color.backlog_line*
-** Beschreibung: pass:none[Farbe der Zeilen des Verlaufspeichers; wird nur dann angewandt, wenn die Option logger.file.color_lines = off ist]
+* [[option_fset.color.string_values]] *fset.color.string_values*
+** Beschreibung: pass:none[Farbe für String-Werte]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
** Standardwert: `+default+`
-* [[option_logger.file.auto_log]] *logger.file.auto_log*
-** Beschreibung: pass:none[speichert automatisch den Inhalt eines Buffers in eine Datei (sofern das Protokollieren für den Buffer nicht deaktiviert sein sollte); Falls deaktiviert, wird die Protokollierung für alle Buffer deaktiviert]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+on+`
-
-* [[option_logger.file.color_lines]] *logger.file.color_lines*
-** Beschreibung: pass:none[Nutze ANSI-Farbcodes für die in Logdateien geschriebenen Zeilen und zeige die Zeilen aus dem Verlaufspeicher in diesen Farben an]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+off+`
-
-* [[option_logger.file.flush_delay]] *logger.file.flush_delay*
-** Beschreibung: pass:none[Zeit, in Sekunden, die verstreicht bis eine Protokolldatei gesichert wird (0 = Protokolldatei wird unmittelbar gesichert, nachdem eine neue Zeile dargestellt wurde)]
-** Typ: integer
-** Werte: 0 .. 3600
-** Standardwert: `+120+`
-
-* [[option_logger.file.fsync]] *logger.file.fsync*
-** Beschreibung: pass:none[es wird fsync verwendet um die Protokolldateien mit dem Datenträger zu synchronisieren (siehe man fsync); dies verlangsamt das Sichern der Daten, soll aber zum Beispiel bei einem Stromausfall dafür sorgen, dass keine Daten verloren gehen]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+off+`
-
-* [[option_logger.file.info_lines]] *logger.file.info_lines*
-** Beschreibung: pass:none[fügt eine Information in die Protokoll-Datei ein, wenn die Protokollierung gestartet oder beendet wird]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+off+`
-
-* [[option_logger.file.mask]] *logger.file.mask*
-** Beschreibung: pass:none[Standardmaske für Protokolldateien (Format: "Verzeichnis/zur/Datei" oder "Datei", ohne ein führendes "/", da die "Verzeichnis" Einstellung genutzt wird um vollständige Verzeichnisstrukturen zu erstellen); lokale Buffer Variablen und Datumsspezifikationen (siehe: man strftime) sind zulässig (es sollten aber nur solche Variablen genutzt werden die auf alle Buffer angewendet werden können. Zum Beispiel sollten NICHT die Variablen $server oder $channel genutzt werden)]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+"$plugin.$name.weechatlog"+`
-
-* [[option_logger.file.name_lower_case]] *logger.file.name_lower_case*
-** Beschreibung: pass:none[Protokolldateien werden ausschließlich in Kleinschreibung erstellt]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+on+`
-
-* [[option_logger.file.nick_prefix]] *logger.file.nick_prefix*
-** Beschreibung: pass:none[Zeichenkette, die dem Nick vorangestellt werden soll. Beispiel: "<"]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+""+`
-
-* [[option_logger.file.nick_suffix]] *logger.file.nick_suffix*
-** Beschreibung: pass:none[Zeichenkette, die nach dem Nick eingefügt werden soll. Beispiel: ">"]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+""+`
-
-* [[option_logger.file.path]] *logger.file.path*
-** Beschreibung: pass:none[Pfad für WeeChat-Protokolldateien; Datumsangaben sind zulässig (siehe man strftime) (Pfad ist evaluiert, siehe Funktion string_eval_path_home in der Plugin-API-Referenz)]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+"${weechat_data_dir}/logs"+`
-
-* [[option_logger.file.replacement_char]] *logger.file.replacement_char*
-** Beschreibung: pass:none[Ersatzzeichen für Dateinamen, falls der Dateiname Sonderzeichen beinhaltet (z.B. das Trennzeichen bei Verzeichnissen "/")]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+"_"+`
-
-* [[option_logger.file.rotation_compression_level]] *logger.file.rotation_compression_level*
-** Beschreibung: pass:none[Komprimierungsstufe für rotierende Protokolldateien (mit Dateierweiterung „.1“, „.2“,etc.), falls die Option logger.file.rotation_compression_type aktiviert ist: 1 = niedrigeKomprimierung / schnell ... 100 = beste Komprimierung / langsam; Der Wert des Prozentsatzes wird umgewandelt in 1-9 für gzip und 1-19 für zstd; der Standardwert wird hierbeiempfohlen, denn er bietet einen guten Kompromiss zwischen Komprimierung und Geschwindigkeit]
-** Typ: integer
-** Werte: 1 .. 100
-** Standardwert: `+20+`
-
-* [[option_logger.file.rotation_compression_type]] *logger.file.rotation_compression_type*
-** Beschreibung: pass:none[Komprimierungstyp für rotierende Protokolldateien; wenn "none" genutzt wird, findet keine Komprimierung der Protokolldateien statt; WARNUNG: wenn die Rotation mit einer anderen Stufe der Komprimierung (oder gar keiner Komprimierung) aktiviert wurde, muss zuerst die Logger-Erweiterung beendet werden., dann de-komprimieren Sie die Dateien mit dem neuen Typ, danach muss die Option in der Datei logger.conf angepasst werden, bevor die Logger-Erweiterung neu geladen wird]
-** Typ: integer
-** Werte: none, gzip, zstd
-** Standardwert: `+none+`
-
-* [[option_logger.file.rotation_size_max]] *logger.file.rotation_size_max*
-** Beschreibung: pass:none[Wenn diese Größe erreicht ist, wird eine Rotation der Protokolldateien durchgeführt: dievorhandene rotierte Protokolldateien werden umbenannt (.1 wird zu .2, .2 wird zu .3 usw.).Die aktuelle Datei erhält wird umbenannt und erhält .1 als Erweiterung; eine ganze Zahl mitSuffix ist erlaubt: b = Bytes (Standard, wenn keine Einheit angegeben ist), k = Kilobytes, m =Megabyte, g = Gigabyte, t = Terabyte; Beispiel: "2g" bewirkt eine Rotationsobald die Dateigröße > 2.000.000.000 Byte ist; wenn auf „0“ gesetzt, erfolgt keine Rotationder Dateien (unbegrenzte Protokollgröße); WARNUNG: Bevor Sie diese Option ändern,sollte sie zuerst den Komprimierungstyp über die Option logger.file festlegen.rotation_compression_type]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+"0"+`
-
-* [[option_logger.file.time_format]] *logger.file.time_format*
-** Beschreibung: pass:none[Zeitstempel in Protokoll-Datei nutzen (siehe man strftime, welche Platzhalter für das Datum und die Uhrzeit verwendet werden)]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+"%Y-%m-%d %H:%M:%S"+`
-
-* [[option_logger.look.backlog]] *logger.look.backlog*
-** Beschreibung: pass:none[maximale Anzahl der letzten Zeilen die aus der Protokolldatei dargestellt werden sollen, sobald ein Buffer geöffnet wird (0 = kein Darstellung)]
-** Typ: integer
-** Werte: 0 .. 2147483647
-** Standardwert: `+20+`
-
-* [[option_logger.look.backlog_conditions]] *logger.look.backlog_conditions*
-** Beschreibung: pass:none[Bedingungen um die Protokolldatei anzuzeigen (Hinweis: Der Inhalt ist evaluiert, siehe /help eval); wird kein Wert angegeben, wird die Protokolldatei bei allen Buffern angezeigt ; Beispiel: um nur bei privaten Buffern die Protokolldatei anzuzeigen: "${type} == private"]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+""+`
-// end::logger_options[]
-
-// tag::exec_options[]
-* [[option_exec.color.flag_finished]] *exec.color.flag_finished*
-** Beschreibung: pass:none[Textfarbe des Statusindikator (in der Auflistung der Befehle) für beendete Befehle]
+* [[option_fset.color.string_values_selected]] *fset.color.string_values_selected*
+** Beschreibung: pass:none[Farbe für Werte von Zeichenketten, bei der ausgewählten Zeile]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+lightred+`
+** Standardwert: `+white+`
-* [[option_exec.color.flag_running]] *exec.color.flag_running*
-** Beschreibung: pass:none[Textfarbe des Statusindikator (in der Auflistung der Befehle) für Befehle die zur Zeit ausgeführt werden]
+* [[option_fset.color.title_count_options]] *fset.color.title_count_options*
+** Beschreibung: pass:none[Farbe für die Zahl die im Buffer-Titel anzeigt wie viele Optionen gefunden wurden]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+lightgreen+`
-
-* [[option_exec.command.default_options]] *exec.command.default_options*
-** Beschreibung: pass:none[Standardoptionen für den Befehl /exec (siehe /help exec); Beispiele: "-nosh -bg" führt alle Befehle im Hintergrund aus (keine Textausgabe) und ohne das die shell genutzt wird]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+""+`
-
-* [[option_exec.command.purge_delay]] *exec.command.purge_delay*
-** Beschreibung: pass:none[Wartezeit bis nicht mehr ausgeführte Befehle gelöscht werden (in Sekunden, 0 = lösche Befehle unmittelbar, -1 = niemals löschen)]
-** Typ: integer
-** Werte: -1 .. 25920000
-** Standardwert: `+0+`
-
-* [[option_exec.command.shell]] *exec.command.shell*
-** Beschreibung: pass:none[shell welche für den Befehl "/exec -sh" genutzt werden soll; hierbei kann es sich um den Namen der shell handeln der über PATH gefunden wird (zum Beispiel "bash") oder man nutzt eine absolute Pfadangabe zur Binärdatei (zum Beispiel "/bin/bash"); wenn kein Wert angegeben ist, wird "sh" genutzt (Hinweis: Inhalt ist evaluiert, siehe /help eval)]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+"${env:SHELL}"+`
-// end::exec_options[]
+** Standardwert: `+cyan+`
-// tag::trigger_options[]
-* [[option_trigger.color.flag_command]] *trigger.color.flag_command*
-** Beschreibung: pass:none[Textfarbe für Befehls-Flag (in /trigger list)]
+* [[option_fset.color.title_current_option]] *fset.color.title_current_option*
+** Beschreibung: pass:none[Farbe in welcher die Ordnungszahl der ausgewählten Option im Title angegeben werden soll]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+lightgreen+`
+** Standardwert: `+lightcyan+`
-* [[option_trigger.color.flag_conditions]] *trigger.color.flag_conditions*
-** Beschreibung: pass:none[Textfarbe für Bedingungen-Flag (in /trigger list)]
+* [[option_fset.color.title_filter]] *fset.color.title_filter*
+** Beschreibung: pass:none[Farbe für Filter im Buffer-Titel]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
** Standardwert: `+yellow+`
-* [[option_trigger.color.flag_post_action]] *trigger.color.flag_post_action*
-** Beschreibung: pass:none[Textfarbe für das Flag welches anzeigt welche nachfolgende Aktion ausgeführt werden soll (in /trigger list)]
+* [[option_fset.color.title_marked_options]] *fset.color.title_marked_options*
+** Beschreibung: pass:none[Farbe für die Zahl die im Buffer-Titel anzeigt wie viele Optionen markiert sind]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+lightblue+`
+** Standardwert: `+lightgreen+`
-* [[option_trigger.color.flag_regex]] *trigger.color.flag_regex*
-** Beschreibung: pass:none[Textfarbe für Regex-Flag (in /trigger list)]
+* [[option_fset.color.title_sort]] *fset.color.title_sort*
+** Beschreibung: pass:none[Farbe für Sortierung im Buffer-Titel]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+lightcyan+`
+** Standardwert: `+white+`
-* [[option_trigger.color.flag_return_code]] *trigger.color.flag_return_code*
-** Beschreibung: pass:none[Textfarbe für Rückgabewert-Flag (in /trigger list)]
+* [[option_fset.color.type]] *fset.color.type*
+** Beschreibung: pass:none[Farbe für den Variablentyp]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+lightmagenta+`
+** Standardwert: `+green+`
-* [[option_trigger.color.identifier]] *trigger.color.identifier*
-** Beschreibung: pass:none[Textfarbe für Trigger-Kontextkennung im Monitorbuffer]
+* [[option_fset.color.type_selected]] *fset.color.type_selected*
+** Beschreibung: pass:none[Farbe für den Variablentyp wenn Zeile angewählt wird]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+cyan+`
+** Standardwert: `+lightgreen+`
-* [[option_trigger.color.regex]] *trigger.color.regex*
-** Beschreibung: pass:none[Textfarbe für reguläre Ausdrücke]
+* [[option_fset.color.unmarked]] *fset.color.unmarked*
+** Beschreibung: pass:none[Farbe für das Markierungssymbol wenn die Option nicht markiert ist]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+white+`
+** Standardwert: `+default+`
-* [[option_trigger.color.replace]] *trigger.color.replace*
-** Beschreibung: pass:none[Textfarbe für ausgetauschten Text (bei regulären Ausdrücken)]
+* [[option_fset.color.unmarked_selected]] *fset.color.unmarked_selected*
+** Beschreibung: pass:none[Farbe für das Markierungssymbol wenn die Option in der ausgewählten Zeile nicht markiert ist]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+cyan+`
+** Standardwert: `+white+`
-* [[option_trigger.color.trigger]] *trigger.color.trigger*
-** Beschreibung: pass:none[Textfarbe für den Namen des Triggers]
+* [[option_fset.color.value]] *fset.color.value*
+** Beschreibung: pass:none[Farbe für Wert]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+green+`
+** Standardwert: `+cyan+`
-* [[option_trigger.color.trigger_disabled]] *trigger.color.trigger_disabled*
-** Beschreibung: pass:none[Textfarbe für den Namen des Triggers, wenn dieser deaktiviert ist]
+* [[option_fset.color.value_changed]] *fset.color.value_changed*
+** Beschreibung: pass:none[Farbe für veränderten Wert (abweichend vom Standardwert)]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+red+`
-
-* [[option_trigger.look.enabled]] *trigger.look.enabled*
-** Beschreibung: pass:none[Triggerunterstützung einschalten]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+on+`
-
-* [[option_trigger.look.monitor_strip_colors]] *trigger.look.monitor_strip_colors*
-** Beschreibung: pass:none[entfernt Farben von Hashtablewerten die im Monitor-Buffer angezeigt werden]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+off+`
-// end::trigger_options[]
-
-// tag::spell_options[]
-* [[option_spell.check.commands]] *spell.check.commands*
-** Beschreibung: pass:none[durch Kommata getrennte Liste der Befehle, für die eine Rechtschreibprüfung gelten soll (Rechtschreibprüfung ist für andere Befehle deaktiviert)]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+"away,command,cycle,kick,kickban,me,msg,notice,part,query,quit,topic"+`
-
-* [[option_spell.check.default_dict]] *spell.check.default_dict*
-** Beschreibung: pass:none[Voreingestelltes Wörterbuch (oder durch Kommata getrennte Liste der Wörterbücher) welche(s) genutzt werden soll, sofern kein Wörterbuch für einen Buffer definiert wurde (wird kein Wörterbuch angegeben dann ist die Rechtschreibprüfung in allen Buffer deaktiviert, außer es wird für einen Buffer explizit ein Wörterbuch angegeben)]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+""+`
-
-* [[option_spell.check.during_search]] *spell.check.during_search*
-** Beschreibung: pass:none[Überprüfe Wörter während im Buffer nach einem Text gesucht wird]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+off+`
-
-* [[option_spell.check.enabled]] *spell.check.enabled*
-** Beschreibung: pass:none[Rechtschreibprüfung wird für die Eingabezeile aktiviert]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+off+`
-
-* [[option_spell.check.real_time]] *spell.check.real_time*
-** Beschreibung: pass:none[Eine Korrektur findet während der Texteingabe statt (da dies langsamer ist, ist diese Funktion standardmäßig deaktiviert. Wörter werden erst überprüft sobald ein Leerzeichen dem vorangegangenen Wort folgt)]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+off+`
-
-* [[option_spell.check.suggestions]] *spell.check.suggestions*
-** Beschreibung: pass:none[legt die Anzahl an Vorschlägen, für ein falsch geschriebenes Wort, fest. Die Vorschläge werden mittels der Bar-Item "spell_suggest", für die jeweilige(n) Sprache(n), die für den Buffer augewählt wurden, angezeigt (-1 = deaktiviert die Funktion, 0 = zeigt alle verfügbaren Vorschläge, für alle ausgewählten Sprachen, an)]
-** Typ: integer
-** Werte: -1 .. 2147483647
-** Standardwert: `+-1+`
-
-* [[option_spell.check.word_min_length]] *spell.check.word_min_length*
-** Beschreibung: pass:none[Mindestlänge für ein Wort, welches auf Rechtschreibung überprüft werden soll (bei 0 werden alle Wörter überprüft)]
-** Typ: integer
-** Werte: 0 .. 2147483647
-** Standardwert: `+2+`
+** Standardwert: `+brown+`
-* [[option_spell.color.misspelled]] *spell.color.misspelled*
-** Beschreibung: pass:none[Farbe in der ein Wort mit einem Rechtschreibfehler hervorgehoben werden soll (Eingabezeile)]
+* [[option_fset.color.value_changed_selected]] *fset.color.value_changed_selected*
+** Beschreibung: pass:none[Farbe für veränderten Wert (abweichend vom Standardwert) für die ausgewählte Zeile]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+lightred+`
+** Standardwert: `+yellow+`
-* [[option_spell.color.suggestion]] *spell.color.suggestion*
-** Beschreibung: pass:none[Textfarbe für die Vorschläge der Rechtsschreibkorrektur in der Bar-Item "spell_suggest"]
+* [[option_fset.color.value_selected]] *fset.color.value_selected*
+** Beschreibung: pass:none[Farbe für Wert für die ausgewählte Zeile]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+default+`
+** Standardwert: `+lightcyan+`
-* [[option_spell.color.suggestion_delimiter_dict]] *spell.color.suggestion_delimiter_dict*
-** Beschreibung: pass:none[Textfarbe für das Trennzeichen welches zwischen zwei Wörterbüchern dargestellt wird, im Bar-Item "spell_suggest"]
+* [[option_fset.color.value_undef]] *fset.color.value_undef*
+** Beschreibung: pass:none[Farbe für undefinierten Wert]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+cyan+`
+** Standardwert: `+magenta+`
-* [[option_spell.color.suggestion_delimiter_word]] *spell.color.suggestion_delimiter_word*
-** Beschreibung: pass:none[Textfarbe für das Trennzeichen zwischen zwei Wörtern in der Bar-Item "spell_suggest"]
+* [[option_fset.color.value_undef_selected]] *fset.color.value_undef_selected*
+** Beschreibung: pass:none[Farbe für undefinierte Werte für die ausgewählte Zeile]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+cyan+`
-
-* [[option_spell.look.suggestion_delimiter_dict]] *spell.look.suggestion_delimiter_dict*
-** Beschreibung: pass:none[Trennzeichen, im Bar-Item "spell_suggest", welches zwischen zwei Wörterbücher dargestellt wird]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+" / "+`
-
-* [[option_spell.look.suggestion_delimiter_word]] *spell.look.suggestion_delimiter_word*
-** Beschreibung: pass:none[Trennzeichen, im Bar-Item "spell_suggest", welches zwischen zwei Wörtern dargestellt wird]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+","+`
-// end::spell_options[]
-
-// tag::buflist_options[]
-* [[option_buflist.format.buffer]] *buflist.format.buffer*
-** Beschreibung: pass:none[Format für eine Zeile mit einem Buffer (Hinweis: Inhalt wird evaluiert, siehe /help buflist); Beispiel: Standardformat für Bar-Item "buflist" anwenden und nur die Buffernummer in eckigen Klammern für die anderen Bar-Items ("buflist2 und "buflist3") anzeigen: "${if:${bar_item.name}==buflist?${format_number}${indent}${format_nick_prefix}${color_hotlist}${format_name}:[${number}\]}"]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+"${format_number}${indent}${format_nick_prefix}${color_hotlist}${format_name}"+`
-
-* [[option_buflist.format.buffer_current]] *buflist.format.buffer_current*
-** Beschreibung: pass:none[Format für die Zeile mit dem ausgewählten Buffer (Hinweis: Inhalt wird evaluiert, siehe /help buflist)]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+"${color:,blue}${format_buffer}"+`
-
-* [[option_buflist.format.hotlist]] *buflist.format.hotlist*
-** Beschreibung: pass:none[Format der Hotlist (Hinweis: Inhalt wird evaluiert, siehe /help buflist)]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+" ${color:green}(${hotlist}${color:green})"+`
-
-* [[option_buflist.format.hotlist_highlight]] *buflist.format.hotlist_highlight*
-** Beschreibung: pass:none[Format für Buffer mit der Benachrichtungsstufe "highlight" (Hinweis: Inhalt wird evaluiert, siehe /help buflist)]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+"${color:magenta}"+`
-
-* [[option_buflist.format.hotlist_low]] *buflist.format.hotlist_low*
-** Beschreibung: pass:none[Format für Buffer mit der Benachrichtungsstufe "low" (Hinweis: Inhalt wird evaluiert, siehe /help buflist)]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+"${color:white}"+`
-
-* [[option_buflist.format.hotlist_message]] *buflist.format.hotlist_message*
-** Beschreibung: pass:none[Format für Buffer mit der Benachrichtungsstufe "message" (Hinweis: Inhalt wird evaluiert, siehe /help buflist)]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+"${color:brown}"+`
-
-* [[option_buflist.format.hotlist_none]] *buflist.format.hotlist_none*
-** Beschreibung: pass:none[Format für Buffer die nicht in der Hotlist angezeigt werden (Hinweis: Inhalt wird evaluiert, siehe /help buflist)]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+"${color:default}"+`
-
-* [[option_buflist.format.hotlist_private]] *buflist.format.hotlist_private*
-** Beschreibung: pass:none[Format für Buffer mit der Benachrichtungsstufe "private" (Hinweis: Inhalt wird evaluiert, siehe /help buflist)]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+"${color:green}"+`
-
-* [[option_buflist.format.hotlist_separator]] *buflist.format.hotlist_separator*
-** Beschreibung: pass:none[Trennzeichen for counts in hotlist (Hinweis: Inhalt wird evaluiert, siehe /help buflist)]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+"${color:default},"+`
+** Standardwert: `+lightmagenta+`
-* [[option_buflist.format.indent]] *buflist.format.indent*
-** Beschreibung: pass:none[Zeichenkette die beim Einrücken von Kanal und privaten Buffern angezeigt wird (Hinweis: Inhalt wird evaluiert, siehe /help buflist)]
+* [[option_fset.format.export_help]] *fset.format.export_help*
+** Beschreibung: pass:none[Format für die Hilfezeile die vor jede Option geschrieben wird, wenn in eine Datei exportiert wird (Hinweis: Inhalt wird evaluiert, siehe /help fset)]
** Typ: Zeichenkette
** Werte: beliebige Zeichenkette
-** Standardwert: `+" "+`
+** Standardwert: `+"# ${description2}"+`
-* [[option_buflist.format.lag]] *buflist.format.lag*
-** Beschreibung: pass:none[Format für die Anzeige der Verzögerungsanzeige für IRC Serverbuffer (Hinweis: Inhalt wird evaluiert, siehe /help buflist)]
+* [[option_fset.format.export_option]] *fset.format.export_option*
+** Beschreibung: pass:none[Format für jede Option die in eine Datei exportiert wird (Hinweis: Inhalt wird evaluiert, siehe /help fset)]
** Typ: Zeichenkette
** Werte: beliebige Zeichenkette
-** Standardwert: `+" ${color:green}[${color:brown}${lag}${color:green}]"+`
+** Standardwert: `+"/set ${name} ${quoted_value}"+`
-* [[option_buflist.format.name]] *buflist.format.name*
-** Beschreibung: pass:none[Format für den Namen eines Buffers (Hinweis: Inhalt wird evaluiert, siehe /help buflist)]
+* [[option_fset.format.export_option_null]] *fset.format.export_option_null*
+** Beschreibung: pass:none[Format für jede Option die "null" als Wert hat und in eine Datei exportiert wird (Hinweis: Inhalt wird evaluiert, siehe /help fset)]
** Typ: Zeichenkette
** Werte: beliebige Zeichenkette
-** Standardwert: `+"${name}"+`
+** Standardwert: `+"/unset ${name}"+`
-* [[option_buflist.format.nick_prefix]] *buflist.format.nick_prefix*
-** Beschreibung: pass:none[Format des Nick-Präfix für einen Kanal (Hinweis: Inhalt wird evaluiert, siehe /help buflist)]
+* [[option_fset.format.option1]] *fset.format.option1*
+** Beschreibung: pass:none[erstes von zwei Formaten um Optionen anzuzeigen, wird genutzt wenn die Option fset.look.format_number auf 1 gesetzt ist (Hinweis: der Inhalt ist evaluiert, siehe /help fset); eine leere Zeichenkette nutzt die Standardeinstellung ("${marked} ${name} ${type} ${value2}"), dies findet ohne eine Evaluierung statt, was wesentlich schneller ist; zwischen den Formaten kann mittels ctrl-X umgeschaltet werden]
** Typ: Zeichenkette
** Werte: beliebige Zeichenkette
-** Standardwert: `+"${color_nick_prefix}${nick_prefix}"+`
+** Standardwert: `+""+`
-* [[option_buflist.format.number]] *buflist.format.number*
-** Beschreibung: pass:none[Format für die Darstellung der Buffernummer, hierbei ist die Variable ${number} die eingerückte Nummer (Hinweis: Inhalt wird evaluiert, siehe /help buflist)]
+* [[option_fset.format.option2]] *fset.format.option2*
+** Beschreibung: pass:none[zweites von zwei Formaten um Optionen anzuzeigen,wird genutzt wenn die Option fset.look.format_number auf 1 gesetzt ist (Hinweis: der Inhalt ist evaluiert, siehe /help fset); eine leere Zeichenkette nutzt die Standardeinstellung ("${marked} ${name} ${type} ${value2}"), dies findet ohne eine Evaluierung statt, was wesentlich schneller ist; zwischen den Formaten kann mittels ctrl-X umgeschaltet werden]
** Typ: Zeichenkette
** Werte: beliebige Zeichenkette
-** Standardwert: `+"${color:green}${number}${if:${number_displayed}?.: }"+`
+** Standardwert: `+"${marked} ${name} ${type} ${value2}${newline} ${empty_name} ${_default_value}${color:darkgray} -- ${min}..${max}${newline} ${empty_name} ${description}"+`
-* [[option_buflist.format.tls_version]] *buflist.format.tls_version*
-** Beschreibung: pass:none[Format für die TLS-Version für einen IRC-Serverbuffer (Hinweis: Inhalt wird evaluiert, siehe /help buflist)]
+* [[option_fset.look.auto_refresh]] *fset.look.auto_refresh*
+** Beschreibung: pass:none[durch Kommata getrennte Liste von Optionen, die eine Aktualisierung des fset Buffers auslösen (falls dieser geöffnet sein sollte); "*" beschreibt alle Optionen (empfohlen). Beginnt der Name einer Option hingegen mit "!" erzeugt diese Option keine Aktualisierung des Buffers. Im Optionsnamen kann der Platzhalter "*" verwendet werden (Beispiel: "*,!plugin.section.*" )]
** Typ: Zeichenkette
** Werte: beliebige Zeichenkette
-** Standardwert: `+" ${color:default}(${if:${tls_version}==TLS1.3?${color:green}:${if:${tls_version}==TLS1.2?${color:yellow}:${color:red}}}${translate:${tls_version}}${color:default})"+`
+** Standardwert: `+"*"+`
-* [[option_buflist.look.add_newline]] *buflist.look.add_newline*
-** Beschreibung: pass:none[fügt einen Zeilenumbruch zwischen die einzelnen Buffer hinzu um pro Zeile einen Buffer anzuzeigen (empfohlen); falls deaktiviert muss ein Zeilenumbruch manuell hinzugefügt werden, "${\\n}", des Weiteren ist die Mausunterstützung nicht mehr gegeben]
+* [[option_fset.look.auto_unmark]] *fset.look.auto_unmark*
+** Beschreibung: pass:none[die Markierung wird automatisch für alle Optionen gelöscht, sobald eine Aktion bei einer markierten Option durchgeführt wird oder die Liste neu eingelesen wird]
** Typ: boolesch
** Werte: on, off
-** Standardwert: `+on+`
-
-* [[option_buflist.look.auto_scroll]] *buflist.look.auto_scroll*
-** Beschreibung: pass:none[scrollt automatisch die buflist-Bar um den aktuellen Buffer darzustellen (dies funktioniert ausschließlich wenn die Bar links/rechts positioniert ist und als Darstellung "vertical" verwendet wird); dieser Wert ist eine prozentuale Angabe wo der aktuelle Buffer angezeigt werden soll (-1 = deaktiviert); zum Beispiel wird bei einem Wert von 50 der Buffer in der Mitte der Bar angezeigt, bei 0 wird der Buffer oben und bei 100 am unteren Rand der Bar angezeigt]
-** Typ: integer
-** Werte: -1 .. 100
-** Standardwert: `+50+`
+** Standardwert: `+off+`
-* [[option_buflist.look.display_conditions]] *buflist.look.display_conditions*
-** Beschreibung: pass:none[Bedingungen wann ein Buffer dargestellt werden soll (Hinweis: Inhalt ist evaluiert, siehe /help buflist); Beispielsweise werden Server-Buffer versteckt, sofern sie mit dem Core-Buffer zusammengefügt worden sind: "${buffer.hidden}==0 && ((${type}!=server && ${buffer.full_name}!=core.weechat) || ${buffer.active}==1)"]
+* [[option_fset.look.condition_catch_set]] *fset.look.condition_catch_set*
+** Beschreibung: pass:none[Bedingung um den /set Befehl abzufangen und die Ausgabe im fset Buffer darzustellen; folgende Variablen können verwendet werden: ${name} (Name der Option die dem /set Befehl übergeben wurde), ${count} (Anzahl der Optionen die mit /set gefunden wurden); eine leere Zeichenkette deaktiviert die Funktion; der Wert "1", nutzt immer den fset Buffer für die Ausgabe des /set Befehls]
** Typ: Zeichenkette
** Werte: beliebige Zeichenkette
-** Standardwert: `+"${buffer.hidden}==0"+`
-
-* [[option_buflist.look.enabled]] *buflist.look.enabled*
-** Beschreibung: pass:none[Buflist aktivieren; Es wird empfohlen, diese Option zu verwenden, anstatt nur die Bar zu verstecken, da hiermit auch interne Hooks entfernt werden, die nicht benötigt werden, falls die Leiste ausgeblendet wird; Sie können auch den Befehl "/buflist toggle" verwenden oder die Standardtastenbelegung alt+shift+b]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+on+`
-
-* [[option_buflist.look.mouse_jump_visited_buffer]] *buflist.look.mouse_jump_visited_buffer*
-** Beschreibung: pass:none[ist diese Einstellung aktiviert, kann mit der linken/rechten Maustaste auf dem aktuellen Buffer zum vorherigen/nächsten Buffer gesprungen werden]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+off+`
-
-* [[option_buflist.look.mouse_move_buffer]] *buflist.look.mouse_move_buffer*
-** Beschreibung: pass:none[ist diese Einstellung aktiviert, kann mit Mausgesten (Drag & Drop) ein Buffer in der Liste verschoben werden]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+on+`
-
-* [[option_buflist.look.mouse_wheel]] *buflist.look.mouse_wheel*
-** Beschreibung: pass:none[ist diese Einstellung aktiviert, kann mit dem Mausrad hoch/runter zum nächsten/vorherigen Buffer in der Liste gesprungen werden]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+on+`
-
-* [[option_buflist.look.nick_prefix]] *buflist.look.nick_prefix*
-** Beschreibung: pass:none[holt den Nick-Präfix und die dazugehörige Farbe aus der Nicklist um diese mit der Variable ${nick_prefix} zu nutzen; diese Option ist standardmäßig deaktiviert, da bei einer umfangreichen Nickliste es zu Verzögerungen kommen kann]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+off+`
+** Standardwert: `+"${count} >= 1"+`
-* [[option_buflist.look.nick_prefix_empty]] *buflist.look.nick_prefix_empty*
-** Beschreibung: pass:none[falls der Nick-Präfix aktiviert ist, wird ein Leerzeichen genutzt falls kein Nick-Präfix für den Buffer existiert]
+* [[option_fset.look.export_help_default]] *fset.look.export_help_default*
+** Beschreibung: pass:none[erstellt standardmäßig eine Hilfe für jede exportierte Option (dies kann mit dem Argumenten "-help" und "-nohelp" überschrieben werden wenn man den Befehl /fset -export nutzt)]
** Typ: boolesch
** Werte: on, off
** Standardwert: `+on+`
-* [[option_buflist.look.signals_refresh]] *buflist.look.signals_refresh*
-** Beschreibung: pass:none[durch Kommata getrennte Liste von zusätzlichen Signalen die dafür sorgen das die Buffer-Liste aktualisiert wird; dies kann nützlich sein falls benutzerdefinierte Variablen genutzt werden und dadurch eine Aktualisierung erforderlich wird]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+""+`
-
-* [[option_buflist.look.sort]] *buflist.look.sort*
-** Beschreibung: pass:none[durch Kommata getrennte Liste von Feldern um die Buffer zu sortieren; jedes Feld ist entweder eine hdata Variable von Buffer ("var"), eine hdata Variable vom Typ IRC Server ("irc_server.var") oder eine hdata Variable vom Typ IRC Kanal ("irc_channel.var"); wird das "-" Zeichen vor einem Feld angewendet, wird die Ausgabe umgekehrt, um bei einem Vergleich nicht zwischen Groß- und Kleinschreibung zu unterscheiden wird das Zeichen "~" verwendet; Beispiel: "-~short_name" sortiert die Buffer nach ihren Kurznamen, wobei dies invertiert passiert und nicht zwischen Groß-oder Kleinschreibung unterschieden wird (Hinweis: der Inhalt ist evaluiert, vor dem Aufteilen in Felder, kann nur die Variable "bar_item" genutzt werden, um zwischen verschiedenen Buffer-Items zu unterscheiden, zum Beispiel "${bar_item.name}")]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+"number,-active"+`
-
-* [[option_buflist.look.use_items]] *buflist.look.use_items*
-** Beschreibung: pass:none[Anzahl der Buflist-Bar-Items, die verwendet werden können; die Item-Namen sind: "buflist", "buflist2", "buflist3"; Seien Sie vorsichtig, wenn Sie mehr als ein Bar-Item verwenden, wird die Anzeige der Bufferliste verlangsamt]
+* [[option_fset.look.format_number]] *fset.look.format_number*
+** Beschreibung: pass:none[Nummer welches Format genutzt werden soll um Optionen anzuzeigen; diese Option wird dynamisch geändert indem man ctrl-X im fset Buffer nutzt]
** Typ: integer
-** Werte: 1 .. 3
+** Werte: 1 .. 2
** Standardwert: `+1+`
-// end::buflist_options[]
-// tag::fifo_options[]
-* [[option_fifo.file.enabled]] *fifo.file.enabled*
-** Beschreibung: pass:none[FIFO-Pipe aktivieren]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+on+`
-
-* [[option_fifo.file.path]] *fifo.file.path*
-** Beschreibung: pass:none[Pfad für FIFO-Datei; WeeChat PID kann im Pfad mit ${info:pid} verwendet werden (Pfad ist evaluiert, siehe Funktion string_eval_path_home in der Plugin-API-Referenz)]
+* [[option_fset.look.marked_string]] *fset.look.marked_string*
+** Beschreibung: pass:none[Zeichenkette welche dargestellt wird wenn eine Option markiert wurde (um eine Aktion auf mehrere Optionen durchzuführen)]
** Typ: Zeichenkette
** Werte: beliebige Zeichenkette
-** Standardwert: `+"${weechat_runtime_dir}/weechat_fifo_${info:pid}"+`
-// end::fifo_options[]
-
-// tag::typing_options[]
-* [[option_typing.look.delay_purge_paused]] *typing.look.delay_purge_paused*
-** Beschreibung: pass:none[Anzahl der Sekunden, nachdem der Pausenstatus gesetzt wurde: wenn erreicht, wird der Tippstatus entfernt]
-** Typ: integer
-** Werte: 1 .. 2147483647
-** Standardwert: `+30+`
-
-* [[option_typing.look.delay_purge_typing]] *typing.look.delay_purge_typing*
-** Beschreibung: pass:none[Anzahl der Sekunden nach Setzen des Tippstatuses: wenn erreicht, wird der Tipptatus entfernt]
-** Typ: integer
-** Werte: 1 .. 2147483647
-** Standardwert: `+6+`
+** Standardwert: `+"*"+`
-* [[option_typing.look.delay_set_paused]] *typing.look.delay_set_paused*
-** Beschreibung: pass:none[Anzahl der Sekunden nach Eingabe des letzten Zeichens: wenn erreicht, wird der Schreibstatus "pausiert" und es werden keine Schreibsignale mehr gesendet]
+* [[option_fset.look.scroll_horizontal]] *fset.look.scroll_horizontal*
+** Beschreibung: pass:none[links/rechts im fset Buffer scrollen (prozentual zur Breite)]
** Typ: integer
-** Werte: 1 .. 2147483647
+** Werte: 1 .. 100
** Standardwert: `+10+`
-* [[option_typing.look.enabled_nicks]] *typing.look.enabled_nicks*
-** Beschreibung: pass:none[Tippfunktion für andere Nicks aktiviert (Anzeige von Tippinfos für Nicks, die im aktuellen Buffer schreiben)]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+off+`
-
-* [[option_typing.look.enabled_self]] *typing.look.enabled_self*
-** Beschreibung: pass:none[Tippfunktion für eigene Nachrichten aktiviert (Schreibinformationen an andere Benutzer senden)]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+off+`
-
-* [[option_typing.look.input_min_chars]] *typing.look.input_min_chars*
-** Beschreibung: pass:none[Mindestanzahl von Zeichen in der Nachricht, um das Senden von Tippsignalen auszulösen]
-** Typ: integer
-** Werte: 1 .. 2147483647
-** Standardwert: `+4+`
-
-* [[option_typing.look.item_max_length]] *typing.look.item_max_length*
-** Beschreibung: pass:none[maximale Anzahl von Zeichen, die im Bar-Item "typing" angezeigt werden (0 = Inhalt nicht abschneiden)]
-** Typ: integer
-** Werte: 0 .. 2147483647
-** Standardwert: `+0+`
-// end::typing_options[]
-
-// tag::xfer_options[]
-* [[option_xfer.color.status_aborted]] *xfer.color.status_aborted*
-** Beschreibung: pass:none[Textfarbe für Status: "abgebrochen"]
-** Typ: Farbe
-** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+lightred+`
-
-* [[option_xfer.color.status_active]] *xfer.color.status_active*
-** Beschreibung: pass:none[Textfarbe für Status: "aktiv"]
-** Typ: Farbe
-** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+lightblue+`
-
-* [[option_xfer.color.status_connecting]] *xfer.color.status_connecting*
-** Beschreibung: pass:none[Textfarbe für Status: "verbinde"]
-** Typ: Farbe
-** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+yellow+`
-
-* [[option_xfer.color.status_done]] *xfer.color.status_done*
-** Beschreibung: pass:none[Textfarbe für Status: "fertig"]
-** Typ: Farbe
-** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+lightgreen+`
-
-* [[option_xfer.color.status_failed]] *xfer.color.status_failed*
-** Beschreibung: pass:none[Textfarbe für Status: "fehlgeschlagen"]
-** Typ: Farbe
-** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+lightred+`
-
-* [[option_xfer.color.status_waiting]] *xfer.color.status_waiting*
-** Beschreibung: pass:none[Textfarbe für Status: "wartend"]
-** Typ: Farbe
-** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+lightcyan+`
-
-* [[option_xfer.color.text]] *xfer.color.text*
-** Beschreibung: pass:none[Textfarbe in xfer Buffer]
-** Typ: Farbe
-** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+default+`
-
-* [[option_xfer.color.text_bg]] *xfer.color.text_bg*
-** Beschreibung: pass:none[Hintergrundfarbe des xfer Buffer]
-** Typ: Farbe
-** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+default+`
-
-* [[option_xfer.color.text_selected]] *xfer.color.text_selected*
-** Beschreibung: pass:none[Textfarbe für selektierte Zeile in xfer Buffer]
-** Typ: Farbe
-** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+white+`
-
-* [[option_xfer.file.auto_accept_chats]] *xfer.file.auto_accept_chats*
-** Beschreibung: pass:none[eine Chat-Anfrage wird automatisch akzeptiert (Vorsicht!)]
+* [[option_fset.look.show_plugins_desc]] *fset.look.show_plugins_desc*
+** Beschreibung: pass:none[zeigt die zusätzlichen Optionen von Erweiterung an, die für die Beschreibung zuständig sind (plugins.desc.*)]
** Typ: boolesch
** Werte: on, off
** Standardwert: `+off+`
-* [[option_xfer.file.auto_accept_files]] *xfer.file.auto_accept_files*
-** Beschreibung: pass:none[eine Datenübertragung wird automatisch angenommen (Vorsicht!)]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+off+`
+* [[option_fset.look.sort]] *fset.look.sort*
+** Beschreibung: pass:none[durch Kommata getrennte Liste von Feldern um die Optionen zu sortieren (siehe /help fset um eine Auflistung der Felder zu erhalten); wird das "-" Zeichen vor einem Feld angewendet, wird die Ausgabe umgekehrt, um bei einem Vergleich nicht zwischen Groß- und Kleinschreibung zu unterscheiden wird das Zeichen "~" verwendet; Beispiel: "-~name" sortiert die Optionsnamen in umgekehrter Reihenfolge und es wird dabei nicht zwischen Groß-und Kleinschreibung unterschieden]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+"~name"+`
-* [[option_xfer.file.auto_accept_nicks]] *xfer.file.auto_accept_nicks*
-** Beschreibung: pass:none[durch Kommata getrennte Liste von Nicks deren Chat- und Transferanfragen automatisch akzeptiert werden. Format : "server.nick" (für einen speziellen Server) oder "nick" (global, für alle Server); Beispiel: "libera.FlashCode,andrew"]
+* [[option_fset.look.unmarked_string]] *fset.look.unmarked_string*
+** Beschreibung: pass:none[Zeichen welches angezeigt wird sofern eine Option nicht markiert ist]
** Typ: Zeichenkette
** Werte: beliebige Zeichenkette
-** Standardwert: `+""+`
+** Standardwert: `+" "+`
-* [[option_xfer.file.auto_check_crc32]] *xfer.file.auto_check_crc32*
-** Beschreibung: pass:none[automatische Überprüfung der CRC32 Prüfsumme, sofern eine Prüfsumme im Dateinamen angegeben wird (mittels acht hexadezimalen Zeichen)]
+* [[option_fset.look.use_color_value]] *fset.look.use_color_value*
+** Beschreibung: pass:none[Farbe die genutzt wird um Werte für Farboptionen darzustellen]
** Typ: boolesch
** Werte: on, off
** Standardwert: `+off+`
-* [[option_xfer.file.auto_rename]] *xfer.file.auto_rename*
-** Beschreibung: pass:none[eingehende Dateien werden automatisch umbenannt um ein Überschreiben zu vermeiden (dabei wird dem Dateinamen '.1', '.2', ... hinzugefügt)]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+on+`
-
-* [[option_xfer.file.auto_resume]] *xfer.file.auto_resume*
-** Beschreibung: pass:none[falls eine Verbindung getrennt wurde, dann wird eine abgebrochene Übertragungen automatisch fortsetzt]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+on+`
-
-* [[option_xfer.file.convert_spaces]] *xfer.file.convert_spaces*
-** Beschreibung: pass:none[beim Versenden und Empfangen von Dateien werden Leerzeichen im Dateinamen durch einen Unterstrich ersetzt]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+on+`
-
-* [[option_xfer.file.download_path]] *xfer.file.download_path*
-** Beschreibung: pass:none[Pfad zum Schreiben eingehender Dateien (Pfad ist evaluiert, siehe Funktion string_eval_path_home in der Plugin-API-Referenz)]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+"${weechat_data_dir}/xfer"+`
-
-* [[option_xfer.file.download_temporary_suffix]] *xfer.file.download_temporary_suffix*
-** Beschreibung: pass:none[Dateiendung der temporären Datei, die während eines eingehenden Datei-Transfers genutzt wird und die gelöscht wird, sobald die Übertragung erfolgreich beendet wurde; wenn -leer-, dann wird keine temporäre Dateiendung während des Transfers genutzt]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+".part"+`
-
-* [[option_xfer.file.upload_path]] *xfer.file.upload_path*
-** Beschreibung: pass:none[Pfad zum Lesen von Dateien beim Senden (Pfad ist evaluiert, siehe Funktion string_eval_path_home in der Plugin-API-Referenz)]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+"~"+`
-
-* [[option_xfer.file.use_nick_in_filename]] *xfer.file.use_nick_in_filename*
-** Beschreibung: pass:none[beim Empfang von Dateien wird der Nickname des Versenders dem Dateinamen vorangestellt]
+* [[option_fset.look.use_keys]] *fset.look.use_keys*
+** Beschreibung: pass:none[nutzt die alt+X Tasten im fset Buffer um Aktionen durchzuführen; wenn deaktiviert sind nur Eingaben in der Eingabezeile erlaubt]
** Typ: boolesch
** Werte: on, off
** Standardwert: `+on+`
-* [[option_xfer.look.auto_open_buffer]] *xfer.look.auto_open_buffer*
-** Beschreibung: pass:none[öffnet automatisch den Buffer für Übertragungen, falls eine neue Übertragung hinzugefügt wird]
+* [[option_fset.look.use_mute]] *fset.look.use_mute*
+** Beschreibung: pass:none[nutzt /mute Befehl wenn eine Option geändert wird]
** Typ: boolesch
** Werte: on, off
-** Standardwert: `+on+`
-
-* [[option_xfer.look.progress_bar_size]] *xfer.look.progress_bar_size*
-** Beschreibung: pass:none[Größe des Fortschrittsbalkens, in Zeichen (0, falls Fortschrittsbalken deaktiviert sein soll)]
-** Typ: integer
-** Werte: 0 .. 256
-** Standardwert: `+20+`
-
-* [[option_xfer.look.pv_tags]] *xfer.look.pv_tags*
-** Beschreibung: pass:none[durch Kommata getrennte Liste von Schlagwörtern die für private Nachrichten genutzt werden sollen. Zum Beispiel: "notify_message", "notify_private" oder "notify_highlight"]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+"notify_private"+`
-
-* [[option_xfer.network.blocksize]] *xfer.network.blocksize*
-** Beschreibung: pass:none[Blockgröße für versendete Pakete (in Bytes)]
-** Typ: integer
-** Werte: 1024 .. 102400
-** Standardwert: `+65536+`
+** Standardwert: `+off+`
+// end::fset_options[]
-* [[option_xfer.network.fast_send]] *xfer.network.fast_send*
-** Beschreibung: pass:none[beim Versenden von Daten wird nicht auf ein Bestätigungssignal (ACK) gewartet]
+// tag::guile_options[]
+* [[option_guile.look.check_license]] *guile.look.check_license*
+** Beschreibung: pass:none[Überprüft die Lizenz von Skripten, wenn sie geladen werden: Sollte die Lizenz abweichend von der Erweiterungslizenz sein, wird eine Warnung ausgegeben]
** Typ: boolesch
** Werte: on, off
-** Standardwert: `+on+`
-
-* [[option_xfer.network.own_ip]] *xfer.network.own_ip*
-** Beschreibung: pass:none[IP- oder DNS-Adresse für ausgehenden Datentransfer/Chat (falls kein Wert angegeben ist, wird die IP des lokalen Interfaces benutzt)]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+""+`
-
-* [[option_xfer.network.port_range]] *xfer.network.port_range*
-** Beschreibung: pass:none[schränkt den ausgehenden Datenversand/Chats auf die ausschließliche Nutzung von Ports in einem vorgegebenen Bereich ein (hilfreich bei NAT) (Syntax: ein einzelner Port, z.B. 5000 oder ein Port-Bereich, z.B. 5000-5015. Ohne Angabe eines Wertes wird ein beliebiger Port genutzt. Es wird empfohlen nur Ports zu nutzen die über 1024 liegen. Denn nur der User "root" kann auf den Port-Bereich unter 1024 zugreifen)]
-** Typ: Zeichenkette
-** Werte: beliebige Zeichenkette
-** Standardwert: `+""+`
+** Standardwert: `+off+`
-* [[option_xfer.network.send_ack]] *xfer.network.send_ack*
-** Beschreibung: pass:none[sendet ACK-Nachrichten wenn Dateien empfangen wurden; wenn deaktiviert kann der Transfer einfrieren, wenn der Absender auf eine ACK-Nachrichtet wartet (zum Beispiel wenn WeeChat eine Datei sendet und die Option xfer.network.fast_send aktiviert ist); andererseits kann die Deaktivierung ein Einfrieren verhindern da die ACK-Nachricht nicht umgehend an den Sender verschickt wird]
+* [[option_guile.look.eval_keep_context]] *guile.look.eval_keep_context*
+** Beschreibung: pass:none[behält den Inhalt zwischen zwei Aufrufen bei Quellcode Evaluierung (Option "eval" des Skript-Befehls oder Info "%s_eval"); ein Hintergrundskript wird für die Evaluierung verwendet; wird diese Option deaktiviert, dann wird das Hintergrundskript nach jeder Evaluierung entfernt: das bedeutet weniger Speicherbedarf, ist aber langsamer]
** Typ: boolesch
** Werte: on, off
** Standardwert: `+on+`
-
-* [[option_xfer.network.speed_limit_recv]] *xfer.network.speed_limit_recv*
-** Beschreibung: pass:none[Begrenzt die Übertragungsgeschwindigkeit beim Empfang, in Kilobytes pro Sekunde (0 = keine Begrenzung)]
-** Typ: integer
-** Werte: 0 .. 2147483647
-** Standardwert: `+0+`
-
-* [[option_xfer.network.speed_limit_send]] *xfer.network.speed_limit_send*
-** Beschreibung: pass:none[Begrenzt die Übertragungsgeschwindigkeit beim Versenden, in Kilobytes pro Sekunde (0 = keine Begrenzung)]
-** Typ: integer
-** Werte: 0 .. 2147483647
-** Standardwert: `+0+`
-
-* [[option_xfer.network.timeout]] *xfer.network.timeout*
-** Beschreibung: pass:none[Zeitüberschreitung bei Transferanfrage (in Sekunden)]
-** Typ: integer
-** Werte: 5 .. 2147483647
-** Standardwert: `+300+`
-// end::xfer_options[]
+// end::guile_options[]
// tag::irc_options[]
* [[option_irc.color.input_nick]] *irc.color.input_nick*
@@ -2985,6 +1601,192 @@
** Standardwert: `+""+`
// end::irc_options[]
+// tag::javascript_options[]
+* [[option_javascript.look.check_license]] *javascript.look.check_license*
+** Beschreibung: pass:none[Überprüft die Lizenz von Skripten, wenn sie geladen werden: Sollte die Lizenz abweichend von der Erweiterungslizenz sein, wird eine Warnung ausgegeben]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+off+`
+
+* [[option_javascript.look.eval_keep_context]] *javascript.look.eval_keep_context*
+** Beschreibung: pass:none[behält den Inhalt zwischen zwei Aufrufen bei Quellcode Evaluierung (Option "eval" des Skript-Befehls oder Info "%s_eval"); ein Hintergrundskript wird für die Evaluierung verwendet; wird diese Option deaktiviert, dann wird das Hintergrundskript nach jeder Evaluierung entfernt: das bedeutet weniger Speicherbedarf, ist aber langsamer]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+on+`
+// end::javascript_options[]
+
+// tag::logger_options[]
+* [[option_logger.color.backlog_end]] *logger.color.backlog_end*
+** Beschreibung: pass:none[Farbe für die letzte Zeile im Verlaufsspeicher]
+** Typ: Farbe
+** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
+** Standardwert: `+default+`
+
+* [[option_logger.color.backlog_line]] *logger.color.backlog_line*
+** Beschreibung: pass:none[Farbe der Zeilen des Verlaufspeichers; wird nur dann angewandt, wenn die Option logger.file.color_lines = off ist]
+** Typ: Farbe
+** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
+** Standardwert: `+default+`
+
+* [[option_logger.file.auto_log]] *logger.file.auto_log*
+** Beschreibung: pass:none[speichert automatisch den Inhalt eines Buffers in eine Datei (sofern das Protokollieren für den Buffer nicht deaktiviert sein sollte); Falls deaktiviert, wird die Protokollierung für alle Buffer deaktiviert]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+on+`
+
+* [[option_logger.file.color_lines]] *logger.file.color_lines*
+** Beschreibung: pass:none[Nutze ANSI-Farbcodes für die in Logdateien geschriebenen Zeilen und zeige die Zeilen aus dem Verlaufspeicher in diesen Farben an]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+off+`
+
+* [[option_logger.file.flush_delay]] *logger.file.flush_delay*
+** Beschreibung: pass:none[Zeit, in Sekunden, die verstreicht bis eine Protokolldatei gesichert wird (0 = Protokolldatei wird unmittelbar gesichert, nachdem eine neue Zeile dargestellt wurde)]
+** Typ: integer
+** Werte: 0 .. 3600
+** Standardwert: `+120+`
+
+* [[option_logger.file.fsync]] *logger.file.fsync*
+** Beschreibung: pass:none[es wird fsync verwendet um die Protokolldateien mit dem Datenträger zu synchronisieren (siehe man fsync); dies verlangsamt das Sichern der Daten, soll aber zum Beispiel bei einem Stromausfall dafür sorgen, dass keine Daten verloren gehen]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+off+`
+
+* [[option_logger.file.info_lines]] *logger.file.info_lines*
+** Beschreibung: pass:none[fügt eine Information in die Protokoll-Datei ein, wenn die Protokollierung gestartet oder beendet wird]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+off+`
+
+* [[option_logger.file.mask]] *logger.file.mask*
+** Beschreibung: pass:none[Standardmaske für Protokolldateien (Format: "Verzeichnis/zur/Datei" oder "Datei", ohne ein führendes "/", da die "Verzeichnis" Einstellung genutzt wird um vollständige Verzeichnisstrukturen zu erstellen); lokale Buffer Variablen und Datumsspezifikationen (siehe: man strftime) sind zulässig (es sollten aber nur solche Variablen genutzt werden die auf alle Buffer angewendet werden können. Zum Beispiel sollten NICHT die Variablen $server oder $channel genutzt werden)]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+"$plugin.$name.weechatlog"+`
+
+* [[option_logger.file.name_lower_case]] *logger.file.name_lower_case*
+** Beschreibung: pass:none[Protokolldateien werden ausschließlich in Kleinschreibung erstellt]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+on+`
+
+* [[option_logger.file.nick_prefix]] *logger.file.nick_prefix*
+** Beschreibung: pass:none[Zeichenkette, die dem Nick vorangestellt werden soll. Beispiel: "<"]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+""+`
+
+* [[option_logger.file.nick_suffix]] *logger.file.nick_suffix*
+** Beschreibung: pass:none[Zeichenkette, die nach dem Nick eingefügt werden soll. Beispiel: ">"]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+""+`
+
+* [[option_logger.file.path]] *logger.file.path*
+** Beschreibung: pass:none[Pfad für WeeChat-Protokolldateien; Datumsangaben sind zulässig (siehe man strftime) (Pfad ist evaluiert, siehe Funktion string_eval_path_home in der Plugin-API-Referenz)]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+"${weechat_data_dir}/logs"+`
+
+* [[option_logger.file.replacement_char]] *logger.file.replacement_char*
+** Beschreibung: pass:none[Ersatzzeichen für Dateinamen, falls der Dateiname Sonderzeichen beinhaltet (z.B. das Trennzeichen bei Verzeichnissen "/")]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+"_"+`
+
+* [[option_logger.file.rotation_compression_level]] *logger.file.rotation_compression_level*
+** Beschreibung: pass:none[Komprimierungsstufe für rotierende Protokolldateien (mit Dateierweiterung „.1“, „.2“,etc.), falls die Option logger.file.rotation_compression_type aktiviert ist: 1 = niedrigeKomprimierung / schnell ... 100 = beste Komprimierung / langsam; Der Wert des Prozentsatzes wird umgewandelt in 1-9 für gzip und 1-19 für zstd; der Standardwert wird hierbeiempfohlen, denn er bietet einen guten Kompromiss zwischen Komprimierung und Geschwindigkeit]
+** Typ: integer
+** Werte: 1 .. 100
+** Standardwert: `+20+`
+
+* [[option_logger.file.rotation_compression_type]] *logger.file.rotation_compression_type*
+** Beschreibung: pass:none[Komprimierungstyp für rotierende Protokolldateien; wenn "none" genutzt wird, findet keine Komprimierung der Protokolldateien statt; WARNUNG: wenn die Rotation mit einer anderen Stufe der Komprimierung (oder gar keiner Komprimierung) aktiviert wurde, muss zuerst die Logger-Erweiterung beendet werden., dann de-komprimieren Sie die Dateien mit dem neuen Typ, danach muss die Option in der Datei logger.conf angepasst werden, bevor die Logger-Erweiterung neu geladen wird]
+** Typ: integer
+** Werte: none, gzip, zstd
+** Standardwert: `+none+`
+
+* [[option_logger.file.rotation_size_max]] *logger.file.rotation_size_max*
+** Beschreibung: pass:none[Wenn diese Größe erreicht ist, wird eine Rotation der Protokolldateien durchgeführt: dievorhandene rotierte Protokolldateien werden umbenannt (.1 wird zu .2, .2 wird zu .3 usw.).Die aktuelle Datei erhält wird umbenannt und erhält .1 als Erweiterung; eine ganze Zahl mitSuffix ist erlaubt: b = Bytes (Standard, wenn keine Einheit angegeben ist), k = Kilobytes, m =Megabyte, g = Gigabyte, t = Terabyte; Beispiel: "2g" bewirkt eine Rotationsobald die Dateigröße > 2.000.000.000 Byte ist; wenn auf „0“ gesetzt, erfolgt keine Rotationder Dateien (unbegrenzte Protokollgröße); WARNUNG: Bevor Sie diese Option ändern,sollte sie zuerst den Komprimierungstyp über die Option logger.file festlegen.rotation_compression_type]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+"0"+`
+
+* [[option_logger.file.time_format]] *logger.file.time_format*
+** Beschreibung: pass:none[Zeitstempel in Protokoll-Datei nutzen (siehe man strftime, welche Platzhalter für das Datum und die Uhrzeit verwendet werden)]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+"%Y-%m-%d %H:%M:%S"+`
+
+* [[option_logger.look.backlog]] *logger.look.backlog*
+** Beschreibung: pass:none[maximale Anzahl der letzten Zeilen die aus der Protokolldatei dargestellt werden sollen, sobald ein Buffer geöffnet wird (0 = kein Darstellung)]
+** Typ: integer
+** Werte: 0 .. 2147483647
+** Standardwert: `+20+`
+
+* [[option_logger.look.backlog_conditions]] *logger.look.backlog_conditions*
+** Beschreibung: pass:none[Bedingungen um die Protokolldatei anzuzeigen (Hinweis: Der Inhalt ist evaluiert, siehe /help eval); wird kein Wert angegeben, wird die Protokolldatei bei allen Buffern angezeigt ; Beispiel: um nur bei privaten Buffern die Protokolldatei anzuzeigen: "${type} == private"]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+""+`
+// end::logger_options[]
+
+// tag::lua_options[]
+* [[option_lua.look.check_license]] *lua.look.check_license*
+** Beschreibung: pass:none[Überprüft die Lizenz von Skripten, wenn sie geladen werden: Sollte die Lizenz abweichend von der Erweiterungslizenz sein, wird eine Warnung ausgegeben]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+off+`
+
+* [[option_lua.look.eval_keep_context]] *lua.look.eval_keep_context*
+** Beschreibung: pass:none[behält den Inhalt zwischen zwei Aufrufen bei Quellcode Evaluierung (Option "eval" des Skript-Befehls oder Info "%s_eval"); ein Hintergrundskript wird für die Evaluierung verwendet; wird diese Option deaktiviert, dann wird das Hintergrundskript nach jeder Evaluierung entfernt: das bedeutet weniger Speicherbedarf, ist aber langsamer]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+on+`
+// end::lua_options[]
+
+// tag::perl_options[]
+* [[option_perl.look.check_license]] *perl.look.check_license*
+** Beschreibung: pass:none[Überprüft die Lizenz von Skripten, wenn sie geladen werden: Sollte die Lizenz abweichend von der Erweiterungslizenz sein, wird eine Warnung ausgegeben]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+off+`
+
+* [[option_perl.look.eval_keep_context]] *perl.look.eval_keep_context*
+** Beschreibung: pass:none[behält den Inhalt zwischen zwei Aufrufen bei Quellcode Evaluierung (Option "eval" des Skript-Befehls oder Info "%s_eval"); ein Hintergrundskript wird für die Evaluierung verwendet; wird diese Option deaktiviert, dann wird das Hintergrundskript nach jeder Evaluierung entfernt: das bedeutet weniger Speicherbedarf, ist aber langsamer]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+on+`
+// end::perl_options[]
+
+// tag::php_options[]
+* [[option_php.look.check_license]] *php.look.check_license*
+** Beschreibung: pass:none[Überprüft die Lizenz von Skripten, wenn sie geladen werden: Sollte die Lizenz abweichend von der Erweiterungslizenz sein, wird eine Warnung ausgegeben]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+off+`
+
+* [[option_php.look.eval_keep_context]] *php.look.eval_keep_context*
+** Beschreibung: pass:none[behält den Inhalt zwischen zwei Aufrufen bei Quellcode Evaluierung (Option "eval" des Skript-Befehls oder Info "%s_eval"); ein Hintergrundskript wird für die Evaluierung verwendet; wird diese Option deaktiviert, dann wird das Hintergrundskript nach jeder Evaluierung entfernt: das bedeutet weniger Speicherbedarf, ist aber langsamer]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+on+`
+// end::php_options[]
+
+// tag::python_options[]
+* [[option_python.look.check_license]] *python.look.check_license*
+** Beschreibung: pass:none[Überprüft die Lizenz von Skripten, wenn sie geladen werden: Sollte die Lizenz abweichend von der Erweiterungslizenz sein, wird eine Warnung ausgegeben]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+off+`
+
+* [[option_python.look.eval_keep_context]] *python.look.eval_keep_context*
+** Beschreibung: pass:none[behält den Inhalt zwischen zwei Aufrufen bei Quellcode Evaluierung (Option "eval" des Skript-Befehls oder Info "%s_eval"); ein Hintergrundskript wird für die Evaluierung verwendet; wird diese Option deaktiviert, dann wird das Hintergrundskript nach jeder Evaluierung entfernt: das bedeutet weniger Speicherbedarf, ist aber langsamer]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+on+`
+// end::python_options[]
+
// tag::relay_options[]
* [[option_relay.color.client]] *relay.color.client*
** Beschreibung: pass:none[Textfarbe für Client-Beschreibung]
@@ -3197,90 +1999,6 @@
** Standardwert: `+""+`
// end::relay_options[]
-// tag::guile_options[]
-* [[option_guile.look.check_license]] *guile.look.check_license*
-** Beschreibung: pass:none[Überprüft die Lizenz von Skripten, wenn sie geladen werden: Sollte die Lizenz abweichend von der Erweiterungslizenz sein, wird eine Warnung ausgegeben]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+off+`
-
-* [[option_guile.look.eval_keep_context]] *guile.look.eval_keep_context*
-** Beschreibung: pass:none[behält den Inhalt zwischen zwei Aufrufen bei Quellcode Evaluierung (Option "eval" des Skript-Befehls oder Info "%s_eval"); ein Hintergrundskript wird für die Evaluierung verwendet; wird diese Option deaktiviert, dann wird das Hintergrundskript nach jeder Evaluierung entfernt: das bedeutet weniger Speicherbedarf, ist aber langsamer]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+on+`
-// end::guile_options[]
-
-// tag::javascript_options[]
-* [[option_javascript.look.check_license]] *javascript.look.check_license*
-** Beschreibung: pass:none[Überprüft die Lizenz von Skripten, wenn sie geladen werden: Sollte die Lizenz abweichend von der Erweiterungslizenz sein, wird eine Warnung ausgegeben]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+off+`
-
-* [[option_javascript.look.eval_keep_context]] *javascript.look.eval_keep_context*
-** Beschreibung: pass:none[behält den Inhalt zwischen zwei Aufrufen bei Quellcode Evaluierung (Option "eval" des Skript-Befehls oder Info "%s_eval"); ein Hintergrundskript wird für die Evaluierung verwendet; wird diese Option deaktiviert, dann wird das Hintergrundskript nach jeder Evaluierung entfernt: das bedeutet weniger Speicherbedarf, ist aber langsamer]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+on+`
-// end::javascript_options[]
-
-// tag::lua_options[]
-* [[option_lua.look.check_license]] *lua.look.check_license*
-** Beschreibung: pass:none[Überprüft die Lizenz von Skripten, wenn sie geladen werden: Sollte die Lizenz abweichend von der Erweiterungslizenz sein, wird eine Warnung ausgegeben]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+off+`
-
-* [[option_lua.look.eval_keep_context]] *lua.look.eval_keep_context*
-** Beschreibung: pass:none[behält den Inhalt zwischen zwei Aufrufen bei Quellcode Evaluierung (Option "eval" des Skript-Befehls oder Info "%s_eval"); ein Hintergrundskript wird für die Evaluierung verwendet; wird diese Option deaktiviert, dann wird das Hintergrundskript nach jeder Evaluierung entfernt: das bedeutet weniger Speicherbedarf, ist aber langsamer]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+on+`
-// end::lua_options[]
-
-// tag::perl_options[]
-* [[option_perl.look.check_license]] *perl.look.check_license*
-** Beschreibung: pass:none[Überprüft die Lizenz von Skripten, wenn sie geladen werden: Sollte die Lizenz abweichend von der Erweiterungslizenz sein, wird eine Warnung ausgegeben]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+off+`
-
-* [[option_perl.look.eval_keep_context]] *perl.look.eval_keep_context*
-** Beschreibung: pass:none[behält den Inhalt zwischen zwei Aufrufen bei Quellcode Evaluierung (Option "eval" des Skript-Befehls oder Info "%s_eval"); ein Hintergrundskript wird für die Evaluierung verwendet; wird diese Option deaktiviert, dann wird das Hintergrundskript nach jeder Evaluierung entfernt: das bedeutet weniger Speicherbedarf, ist aber langsamer]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+on+`
-// end::perl_options[]
-
-// tag::php_options[]
-* [[option_php.look.check_license]] *php.look.check_license*
-** Beschreibung: pass:none[Überprüft die Lizenz von Skripten, wenn sie geladen werden: Sollte die Lizenz abweichend von der Erweiterungslizenz sein, wird eine Warnung ausgegeben]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+off+`
-
-* [[option_php.look.eval_keep_context]] *php.look.eval_keep_context*
-** Beschreibung: pass:none[behält den Inhalt zwischen zwei Aufrufen bei Quellcode Evaluierung (Option "eval" des Skript-Befehls oder Info "%s_eval"); ein Hintergrundskript wird für die Evaluierung verwendet; wird diese Option deaktiviert, dann wird das Hintergrundskript nach jeder Evaluierung entfernt: das bedeutet weniger Speicherbedarf, ist aber langsamer]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+on+`
-// end::php_options[]
-
-// tag::python_options[]
-* [[option_python.look.check_license]] *python.look.check_license*
-** Beschreibung: pass:none[Überprüft die Lizenz von Skripten, wenn sie geladen werden: Sollte die Lizenz abweichend von der Erweiterungslizenz sein, wird eine Warnung ausgegeben]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+off+`
-
-* [[option_python.look.eval_keep_context]] *python.look.eval_keep_context*
-** Beschreibung: pass:none[behält den Inhalt zwischen zwei Aufrufen bei Quellcode Evaluierung (Option "eval" des Skript-Befehls oder Info "%s_eval"); ein Hintergrundskript wird für die Evaluierung verwendet; wird diese Option deaktiviert, dann wird das Hintergrundskript nach jeder Evaluierung entfernt: das bedeutet weniger Speicherbedarf, ist aber langsamer]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+on+`
-// end::python_options[]
-
// tag::ruby_options[]
* [[option_ruby.look.check_license]] *ruby.look.check_license*
** Beschreibung: pass:none[Überprüft die Lizenz von Skripten, wenn sie geladen werden: Sollte die Lizenz abweichend von der Erweiterungslizenz sein, wird eine Warnung ausgegeben]
@@ -3295,20 +2013,6 @@
** Standardwert: `+on+`
// end::ruby_options[]
-// tag::tcl_options[]
-* [[option_tcl.look.check_license]] *tcl.look.check_license*
-** Beschreibung: pass:none[Überprüft die Lizenz von Skripten, wenn sie geladen werden: Sollte die Lizenz abweichend von der Erweiterungslizenz sein, wird eine Warnung ausgegeben]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+off+`
-
-* [[option_tcl.look.eval_keep_context]] *tcl.look.eval_keep_context*
-** Beschreibung: pass:none[behält den Inhalt zwischen zwei Aufrufen bei Quellcode Evaluierung (Option "eval" des Skript-Befehls oder Info "%s_eval"); ein Hintergrundskript wird für die Evaluierung verwendet; wird diese Option deaktiviert, dann wird das Hintergrundskript nach jeder Evaluierung entfernt: das bedeutet weniger Speicherbedarf, ist aber langsamer]
-** Typ: boolesch
-** Werte: on, off
-** Standardwert: `+on+`
-// end::tcl_options[]
-
// tag::script_options[]
* [[option_script.color.status_autoloaded]] *script.color.status_autoloaded*
** Beschreibung: pass:none[Farbe in der der Status "autoloaded" ("a") dargestellt werden soll]
@@ -3557,484 +2261,1780 @@
** Standardwert: `+"https://weechat.org/files/plugins.xml.gz"+`
// end::script_options[]
-// tag::fset_options[]
-* [[option_fset.color.default_value]] *fset.color.default_value*
-** Beschreibung: pass:none[Farbe für Standardwert]
-** Typ: Farbe
-** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+default+`
+// tag::sec_options[]
+* [[option_sec.crypt.cipher]] *sec.crypt.cipher*
+** Beschreibung: pass:none[zu nutzendes Chiffre zum Verschlüsseln von Daten (die Zahl hinter dem Algorithmus bestimmt die Größe des Schlüssels, in Bits)]
+** Typ: integer
+** Werte: aes128, aes192, aes256
+** Standardwert: `+aes256+`
-* [[option_fset.color.default_value_selected]] *fset.color.default_value_selected*
-** Beschreibung: pass:none[Farbe für den Standardwert bei der ausgewählten Zeile]
+* [[option_sec.crypt.hash_algo]] *sec.crypt.hash_algo*
+** Beschreibung: pass:none[Hash-Algorithmus zur Überprüfung der verschlüsselten Daten]
+** Typ: integer
+** Werte: sha224, sha256, sha384, sha512
+** Standardwert: `+sha256+`
+
+* [[option_sec.crypt.passphrase_command]] *sec.crypt.passphrase_command*
+** Beschreibung: pass:none[Auslesen der Passphrase aus der Ausgabe des angegebenen Befehls (nur die erste Zeile wird verwendet und darf kein zusätzliches Zeichen enthalten); Diese Option wird nur verwendet, wenn die Datei sec.conf gelesen wird und wenn die Umgebungsvariable "WEECHAT_PASSPHRASE" nicht festgelegt ist (die Umgebungsvariable hat eine höhere Priorität); Beispiel mit Passwortspeicher: "/usr/bin/pass show weechat / passphrase"]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+""+`
+
+* [[option_sec.crypt.salt]] *sec.crypt.salt*
+** Beschreibung: pass:none[nutzt salt bei der Schlüsselerstellung für die Verschlüsselung (wird für maximale Sicherheit empfohlen); wenn aktiviert, ist der Inhalt der verschlüsselten Daten bei jeder Sicherung in die Datei sec.conf verschieden. Wird die Datei sec.conf in eine Versionsverwaltung eingepflegt kann die Einstellung deaktiviert werden, um immer den selben Dateiinhalt zu erhalten]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+on+`
+// end::sec_options[]
+
+// tag::spell_options[]
+* [[option_spell.check.commands]] *spell.check.commands*
+** Beschreibung: pass:none[durch Kommata getrennte Liste der Befehle, für die eine Rechtschreibprüfung gelten soll (Rechtschreibprüfung ist für andere Befehle deaktiviert)]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+"away,command,cycle,kick,kickban,me,msg,notice,part,query,quit,topic"+`
+
+* [[option_spell.check.default_dict]] *spell.check.default_dict*
+** Beschreibung: pass:none[Voreingestelltes Wörterbuch (oder durch Kommata getrennte Liste der Wörterbücher) welche(s) genutzt werden soll, sofern kein Wörterbuch für einen Buffer definiert wurde (wird kein Wörterbuch angegeben dann ist die Rechtschreibprüfung in allen Buffer deaktiviert, außer es wird für einen Buffer explizit ein Wörterbuch angegeben)]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+""+`
+
+* [[option_spell.check.during_search]] *spell.check.during_search*
+** Beschreibung: pass:none[Überprüfe Wörter während im Buffer nach einem Text gesucht wird]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+off+`
+
+* [[option_spell.check.enabled]] *spell.check.enabled*
+** Beschreibung: pass:none[Rechtschreibprüfung wird für die Eingabezeile aktiviert]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+off+`
+
+* [[option_spell.check.real_time]] *spell.check.real_time*
+** Beschreibung: pass:none[Eine Korrektur findet während der Texteingabe statt (da dies langsamer ist, ist diese Funktion standardmäßig deaktiviert. Wörter werden erst überprüft sobald ein Leerzeichen dem vorangegangenen Wort folgt)]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+off+`
+
+* [[option_spell.check.suggestions]] *spell.check.suggestions*
+** Beschreibung: pass:none[legt die Anzahl an Vorschlägen, für ein falsch geschriebenes Wort, fest. Die Vorschläge werden mittels der Bar-Item "spell_suggest", für die jeweilige(n) Sprache(n), die für den Buffer augewählt wurden, angezeigt (-1 = deaktiviert die Funktion, 0 = zeigt alle verfügbaren Vorschläge, für alle ausgewählten Sprachen, an)]
+** Typ: integer
+** Werte: -1 .. 2147483647
+** Standardwert: `+-1+`
+
+* [[option_spell.check.word_min_length]] *spell.check.word_min_length*
+** Beschreibung: pass:none[Mindestlänge für ein Wort, welches auf Rechtschreibung überprüft werden soll (bei 0 werden alle Wörter überprüft)]
+** Typ: integer
+** Werte: 0 .. 2147483647
+** Standardwert: `+2+`
+
+* [[option_spell.color.misspelled]] *spell.color.misspelled*
+** Beschreibung: pass:none[Farbe in der ein Wort mit einem Rechtschreibfehler hervorgehoben werden soll (Eingabezeile)]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+white+`
+** Standardwert: `+lightred+`
-* [[option_fset.color.description]] *fset.color.description*
-** Beschreibung: pass:none[Farbe für Beschreibung]
+* [[option_spell.color.suggestion]] *spell.color.suggestion*
+** Beschreibung: pass:none[Textfarbe für die Vorschläge der Rechtsschreibkorrektur in der Bar-Item "spell_suggest"]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
** Standardwert: `+default+`
-* [[option_fset.color.description_selected]] *fset.color.description_selected*
-** Beschreibung: pass:none[Farbe für Beschreibung für die ausgewählte Zeile]
+* [[option_spell.color.suggestion_delimiter_dict]] *spell.color.suggestion_delimiter_dict*
+** Beschreibung: pass:none[Textfarbe für das Trennzeichen welches zwischen zwei Wörterbüchern dargestellt wird, im Bar-Item "spell_suggest"]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+white+`
+** Standardwert: `+cyan+`
-* [[option_fset.color.file]] *fset.color.file*
-** Beschreibung: pass:none[Farbe für Datei]
+* [[option_spell.color.suggestion_delimiter_word]] *spell.color.suggestion_delimiter_word*
+** Beschreibung: pass:none[Textfarbe für das Trennzeichen zwischen zwei Wörtern in der Bar-Item "spell_suggest"]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+default+`
+** Standardwert: `+cyan+`
-* [[option_fset.color.file_changed]] *fset.color.file_changed*
-** Beschreibung: pass:none[Farbei für Datei, falls der Wert abweichend ist]
+* [[option_spell.look.suggestion_delimiter_dict]] *spell.look.suggestion_delimiter_dict*
+** Beschreibung: pass:none[Trennzeichen, im Bar-Item "spell_suggest", welches zwischen zwei Wörterbücher dargestellt wird]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+" / "+`
+
+* [[option_spell.look.suggestion_delimiter_word]] *spell.look.suggestion_delimiter_word*
+** Beschreibung: pass:none[Trennzeichen, im Bar-Item "spell_suggest", welches zwischen zwei Wörtern dargestellt wird]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+","+`
+// end::spell_options[]
+
+// tag::tcl_options[]
+* [[option_tcl.look.check_license]] *tcl.look.check_license*
+** Beschreibung: pass:none[Überprüft die Lizenz von Skripten, wenn sie geladen werden: Sollte die Lizenz abweichend von der Erweiterungslizenz sein, wird eine Warnung ausgegeben]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+off+`
+
+* [[option_tcl.look.eval_keep_context]] *tcl.look.eval_keep_context*
+** Beschreibung: pass:none[behält den Inhalt zwischen zwei Aufrufen bei Quellcode Evaluierung (Option "eval" des Skript-Befehls oder Info "%s_eval"); ein Hintergrundskript wird für die Evaluierung verwendet; wird diese Option deaktiviert, dann wird das Hintergrundskript nach jeder Evaluierung entfernt: das bedeutet weniger Speicherbedarf, ist aber langsamer]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+on+`
+// end::tcl_options[]
+
+// tag::trigger_options[]
+* [[option_trigger.color.flag_command]] *trigger.color.flag_command*
+** Beschreibung: pass:none[Textfarbe für Befehls-Flag (in /trigger list)]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+brown+`
+** Standardwert: `+lightgreen+`
-* [[option_fset.color.file_changed_selected]] *fset.color.file_changed_selected*
-** Beschreibung: pass:none[Farbe von Datei wenn Wert verändert ist, bei der ausgewählten Zeile]
+* [[option_trigger.color.flag_conditions]] *trigger.color.flag_conditions*
+** Beschreibung: pass:none[Textfarbe für Bedingungen-Flag (in /trigger list)]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
** Standardwert: `+yellow+`
-* [[option_fset.color.file_selected]] *fset.color.file_selected*
-** Beschreibung: pass:none[Farbe der Datei für die ausgewählte Zeile]
+* [[option_trigger.color.flag_post_action]] *trigger.color.flag_post_action*
+** Beschreibung: pass:none[Textfarbe für das Flag welches anzeigt welche nachfolgende Aktion ausgeführt werden soll (in /trigger list)]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+white+`
+** Standardwert: `+lightblue+`
-* [[option_fset.color.help_default_value]] *fset.color.help_default_value*
-** Beschreibung: pass:none[Farbe für Standardwert in der Hilfe-Bar]
+* [[option_trigger.color.flag_regex]] *trigger.color.flag_regex*
+** Beschreibung: pass:none[Textfarbe für Regex-Flag (in /trigger list)]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+white+`
+** Standardwert: `+lightcyan+`
-* [[option_fset.color.help_description]] *fset.color.help_description*
-** Beschreibung: pass:none[Farbe für die Beschreibung in der Hilfe-Bar]
+* [[option_trigger.color.flag_return_code]] *trigger.color.flag_return_code*
+** Beschreibung: pass:none[Textfarbe für Rückgabewert-Flag (in /trigger list)]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+default+`
+** Standardwert: `+lightmagenta+`
-* [[option_fset.color.help_name]] *fset.color.help_name*
-** Beschreibung: pass:none[Farbe für Namen in Hilfe-Bar]
+* [[option_trigger.color.identifier]] *trigger.color.identifier*
+** Beschreibung: pass:none[Textfarbe für Trigger-Kontextkennung im Monitorbuffer]
+** Typ: Farbe
+** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
+** Standardwert: `+cyan+`
+
+* [[option_trigger.color.regex]] *trigger.color.regex*
+** Beschreibung: pass:none[Textfarbe für reguläre Ausdrücke]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
** Standardwert: `+white+`
-* [[option_fset.color.help_quotes]] *fset.color.help_quotes*
-** Beschreibung: pass:none[Farbe der Anführungszeichen für Stringwerte]
+* [[option_trigger.color.replace]] *trigger.color.replace*
+** Beschreibung: pass:none[Textfarbe für ausgetauschten Text (bei regulären Ausdrücken)]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+darkgray+`
+** Standardwert: `+cyan+`
-* [[option_fset.color.help_values]] *fset.color.help_values*
-** Beschreibung: pass:none[Farbe für erlaubte Werte]
+* [[option_trigger.color.trigger]] *trigger.color.trigger*
+** Beschreibung: pass:none[Textfarbe für den Namen des Triggers]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+default+`
+** Standardwert: `+green+`
-* [[option_fset.color.index]] *fset.color.index*
-** Beschreibung: pass:none[Farbe für Index einer Option]
+* [[option_trigger.color.trigger_disabled]] *trigger.color.trigger_disabled*
+** Beschreibung: pass:none[Textfarbe für den Namen des Triggers, wenn dieser deaktiviert ist]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+cyan+`
+** Standardwert: `+red+`
-* [[option_fset.color.index_selected]] *fset.color.index_selected*
-** Beschreibung: pass:none[Farbe für Index der Option bei der ausgewählten Zeile]
+* [[option_trigger.look.enabled]] *trigger.look.enabled*
+** Beschreibung: pass:none[Triggerunterstützung einschalten]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+on+`
+
+* [[option_trigger.look.monitor_strip_colors]] *trigger.look.monitor_strip_colors*
+** Beschreibung: pass:none[entfernt Farben von Hashtablewerten die im Monitor-Buffer angezeigt werden]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+off+`
+// end::trigger_options[]
+
+// tag::typing_options[]
+* [[option_typing.look.delay_purge_paused]] *typing.look.delay_purge_paused*
+** Beschreibung: pass:none[Anzahl der Sekunden, nachdem der Pausenstatus gesetzt wurde: wenn erreicht, wird der Tippstatus entfernt]
+** Typ: integer
+** Werte: 1 .. 2147483647
+** Standardwert: `+30+`
+
+* [[option_typing.look.delay_purge_typing]] *typing.look.delay_purge_typing*
+** Beschreibung: pass:none[Anzahl der Sekunden nach Setzen des Tippstatuses: wenn erreicht, wird der Tipptatus entfernt]
+** Typ: integer
+** Werte: 1 .. 2147483647
+** Standardwert: `+6+`
+
+* [[option_typing.look.delay_set_paused]] *typing.look.delay_set_paused*
+** Beschreibung: pass:none[Anzahl der Sekunden nach Eingabe des letzten Zeichens: wenn erreicht, wird der Schreibstatus "pausiert" und es werden keine Schreibsignale mehr gesendet]
+** Typ: integer
+** Werte: 1 .. 2147483647
+** Standardwert: `+10+`
+
+* [[option_typing.look.enabled_nicks]] *typing.look.enabled_nicks*
+** Beschreibung: pass:none[Tippfunktion für andere Nicks aktiviert (Anzeige von Tippinfos für Nicks, die im aktuellen Buffer schreiben)]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+off+`
+
+* [[option_typing.look.enabled_self]] *typing.look.enabled_self*
+** Beschreibung: pass:none[Tippfunktion für eigene Nachrichten aktiviert (Schreibinformationen an andere Benutzer senden)]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+off+`
+
+* [[option_typing.look.input_min_chars]] *typing.look.input_min_chars*
+** Beschreibung: pass:none[Mindestanzahl von Zeichen in der Nachricht, um das Senden von Tippsignalen auszulösen]
+** Typ: integer
+** Werte: 1 .. 2147483647
+** Standardwert: `+4+`
+
+* [[option_typing.look.item_max_length]] *typing.look.item_max_length*
+** Beschreibung: pass:none[maximale Anzahl von Zeichen, die im Bar-Item "typing" angezeigt werden (0 = Inhalt nicht abschneiden)]
+** Typ: integer
+** Werte: 0 .. 2147483647
+** Standardwert: `+0+`
+// end::typing_options[]
+
+// tag::weechat_options[]
+* [[option_weechat.color.bar_more]] *weechat.color.bar_more*
+** Beschreibung: pass:none[Farbe des "+" beim Scrollen von Info-Bars]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+lightcyan+`
+** Standardwert: `+lightmagenta+`
-* [[option_fset.color.line_marked_bg1]] *fset.color.line_marked_bg1*
-** Beschreibung: pass:none[Hintergrundfarbe für markierte Zeile (wird für das erste Format verwendet, siehe Option fset.format.option1)]
+* [[option_weechat.color.chat]] *weechat.color.chat*
+** Beschreibung: pass:none[Farbe des Chat-Textes]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
** Standardwert: `+default+`
-* [[option_fset.color.line_marked_bg2]] *fset.color.line_marked_bg2*
-** Beschreibung: pass:none[Hintergrundfarbe für markierte Zeile (wird für das zweite Format verwendet, siehe Option fset.format.option2)]
+* [[option_weechat.color.chat_bg]] *weechat.color.chat_bg*
+** Beschreibung: pass:none[Hintergrundfarbe des Chats]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
** Standardwert: `+default+`
-* [[option_fset.color.line_selected_bg1]] *fset.color.line_selected_bg1*
-** Beschreibung: pass:none[Hintergrundfarbe für ausgewählte Zeile (wird für das erste Format verwendet, siehe Option fset.format.option1)]
+* [[option_weechat.color.chat_buffer]] *weechat.color.chat_buffer*
+** Beschreibung: pass:none[Textfarbe für den Namen des Buffers]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+blue+`
+** Standardwert: `+white+`
-* [[option_fset.color.line_selected_bg2]] *fset.color.line_selected_bg2*
-** Beschreibung: pass:none[Hintergrundfarbe für ausgewählte Zeile (wird für das zweite Format verwendet, siehe Option fset.format.option2)]
+* [[option_weechat.color.chat_channel]] *weechat.color.chat_channel*
+** Beschreibung: pass:none[Farbe für den Kanalnamen]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+red+`
+** Standardwert: `+white+`
-* [[option_fset.color.marked]] *fset.color.marked*
-** Beschreibung: pass:none[Farbe des Markierungssymbols]
+* [[option_weechat.color.chat_day_change]] *weechat.color.chat_day_change*
+** Beschreibung: pass:none[Textfarbe für die Nachricht die beim Datumswechsel angezeigt wird]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+brown+`
+** Standardwert: `+cyan+`
-* [[option_fset.color.marked_selected]] *fset.color.marked_selected*
-** Beschreibung: pass:none[Farbe für das Markierungssymbol für die ausgewählte Zeile]
+* [[option_weechat.color.chat_delimiters]] *weechat.color.chat_delimiters*
+** Beschreibung: pass:none[Farbe der Infobar-Trennzeichen]
+** Typ: Farbe
+** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
+** Standardwert: `+green+`
+
+* [[option_weechat.color.chat_highlight]] *weechat.color.chat_highlight*
+** Beschreibung: pass:none[Textfarbe für Highlight-Präfix]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
** Standardwert: `+yellow+`
-* [[option_fset.color.max]] *fset.color.max*
-** Beschreibung: pass:none[Farbe für Maximalwert]
+* [[option_weechat.color.chat_highlight_bg]] *weechat.color.chat_highlight_bg*
+** Beschreibung: pass:none[Hintergrundfarbe für Highlight-Präfix]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+default+`
+** Standardwert: `+magenta+`
-* [[option_fset.color.max_selected]] *fset.color.max_selected*
-** Beschreibung: pass:none[Farbe für Maximalwert bei der ausgewählten Zeile]
+* [[option_weechat.color.chat_host]] *weechat.color.chat_host*
+** Beschreibung: pass:none[Textfarbe für Host-Namen]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+white+`
+** Standardwert: `+cyan+`
-* [[option_fset.color.min]] *fset.color.min*
-** Beschreibung: pass:none[Farbe für Minimalwert]
+* [[option_weechat.color.chat_inactive_buffer]] *weechat.color.chat_inactive_buffer*
+** Beschreibung: pass:none[Textfarbe für inaktive Zeilen im Chatfenster (Buffer wurde mit anderen Buffern zusammengefügt und der Buffer ist nicht aktiv)]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
** Standardwert: `+default+`
-* [[option_fset.color.min_selected]] *fset.color.min_selected*
-** Beschreibung: pass:none[Farbe für Minimalwert, für ausgewählte Zeile]
+* [[option_weechat.color.chat_inactive_window]] *weechat.color.chat_inactive_window*
+** Beschreibung: pass:none[Textfarbe für Chat wenn das Fenster inaktiv ist (betrifft nicht das aktuell ausgewählte Fenster)]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+white+`
+** Standardwert: `+default+`
-* [[option_fset.color.name]] *fset.color.name*
-** Beschreibung: pass:none[Farbe für Name]
+* [[option_weechat.color.chat_nick]] *weechat.color.chat_nick*
+** Beschreibung: pass:none[Textfarbe für Nicks im Chatfenster: Farbe wird für einige Server-Nachrichten verwendet und als Ersatz falls eine Farbe für einen Nick nicht gefunden wird; normalerweise wird die Farbe von der Option weechat.color.chat_nick_colors bereitgestellt]
+** Typ: Farbe
+** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
+** Standardwert: `+lightcyan+`
+
+* [[option_weechat.color.chat_nick_colors]] *weechat.color.chat_nick_colors*
+** Beschreibung: pass:none[Textfarbe für Nicks (durch Kommata getrennte Liste von Farben. Eine Hintergrundfarbe kann durch das folgende Format genutzt werden: "fg:bg". Zum Beispiel: "lightred:blue")]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+"cyan,magenta,green,brown,lightblue,default,lightcyan,lightmagenta,lightgreen,blue"+`
+
+* [[option_weechat.color.chat_nick_offline]] *weechat.color.chat_nick_offline*
+** Beschreibung: pass:none[Textfarbe für Nicks die nicht angemeldet sind (nicht in der Benutzerliste aufgeführt sind); diese Farbeinstellung wird aber nur verwendet wenn die Einstellung weechat.look.color_nick_offline aktiviert ist]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
** Standardwert: `+default+`
-* [[option_fset.color.name_changed]] *fset.color.name_changed*
-** Beschreibung: pass:none[Farbe für Namen wenn Wert verändert wurde]
+* [[option_weechat.color.chat_nick_offline_highlight]] *weechat.color.chat_nick_offline_highlight*
+** Beschreibung: pass:none[Textfarbe bei Highlights für Nicks die nicht angemeldet sind; diese Farbeinstellung wird aber nur verwendet wenn die Einstellung weechat.look.color_nick_offline aktiviert ist]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+brown+`
+** Standardwert: `+default+`
-* [[option_fset.color.name_changed_selected]] *fset.color.name_changed_selected*
-** Beschreibung: pass:none[Farbe vom Namen, falls Wert verändert wurde bei der ausgewählten Zeile]
+* [[option_weechat.color.chat_nick_offline_highlight_bg]] *weechat.color.chat_nick_offline_highlight_bg*
+** Beschreibung: pass:none[Hintergrundfarbe bei Highlights für Nicks die nicht angemeldet sind, diese Farbeinstellung wird aber nur verwendet wenn die Einstellung weechat.look.color_nick_offline aktiviert ist]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+yellow+`
+** Standardwert: `+blue+`
-* [[option_fset.color.name_selected]] *fset.color.name_selected*
-** Beschreibung: pass:none[Farbe des Namens für die ausgewählte Zeile]
+* [[option_weechat.color.chat_nick_other]] *weechat.color.chat_nick_other*
+** Beschreibung: pass:none[Farbe des anderen Nicknamens in einem privaten Buffer]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+white+`
+** Standardwert: `+cyan+`
-* [[option_fset.color.option]] *fset.color.option*
-** Beschreibung: pass:none[Farbe für Option]
+* [[option_weechat.color.chat_nick_prefix]] *weechat.color.chat_nick_prefix*
+** Beschreibung: pass:none[Farbe für den Nick-Präfix (Zeichenkette die vor dem Nick steht)]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+default+`
+** Standardwert: `+green+`
-* [[option_fset.color.option_changed]] *fset.color.option_changed*
-** Beschreibung: pass:none[Farbe der Option wenn Wert verändert wurde]
+* [[option_weechat.color.chat_nick_self]] *weechat.color.chat_nick_self*
+** Beschreibung: pass:none[Textfarbe für den eigenen Nicknamen, im lokalen Chat-Fenster]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+brown+`
+** Standardwert: `+white+`
-* [[option_fset.color.option_changed_selected]] *fset.color.option_changed_selected*
-** Beschreibung: pass:none[Farbe von Option, falls Wert verändert wurde bei der ausgewählten Zeile]
+* [[option_weechat.color.chat_nick_suffix]] *weechat.color.chat_nick_suffix*
+** Beschreibung: pass:none[Farbe für den Nick-Suffix (Zeichenkette die nach dem Nick steht)]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+yellow+`
+** Standardwert: `+green+`
-* [[option_fset.color.option_selected]] *fset.color.option_selected*
-** Beschreibung: pass:none[Farbe der Option für die ausgewählte Zeile]
+* [[option_weechat.color.chat_prefix_action]] *weechat.color.chat_prefix_action*
+** Beschreibung: pass:none[Textfarbe für Action-Präfix]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
** Standardwert: `+white+`
-* [[option_fset.color.parent_name]] *fset.color.parent_name*
-** Beschreibung: pass:none[Farbe des Namens für übergeordnete Option]
+* [[option_weechat.color.chat_prefix_buffer]] *weechat.color.chat_prefix_buffer*
+** Beschreibung: pass:none[Textfarbe des Buffer-Namens (vor dem Präfix, wenn mehrere Buffer mit der selben Nummer zusammengefügt worden sind)]
+** Typ: Farbe
+** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
+** Standardwert: `+brown+`
+
+* [[option_weechat.color.chat_prefix_buffer_inactive_buffer]] *weechat.color.chat_prefix_buffer_inactive_buffer*
+** Beschreibung: pass:none[Textfarbe für den inaktiven Namen des Buffer (vor dem Präfix, falls mehrere Buffer zu einem zusammengefügt worden sind und der Buffer nicht ausgewählt ist)]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
** Standardwert: `+default+`
-* [[option_fset.color.parent_name_selected]] *fset.color.parent_name_selected*
-** Beschreibung: pass:none[Farbe des Namens für übergeordnete Option, für ausgewählte Zeile]
+* [[option_weechat.color.chat_prefix_error]] *weechat.color.chat_prefix_error*
+** Beschreibung: pass:none[Textfarbe für Fehler-Präfix]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+white+`
+** Standardwert: `+yellow+`
-* [[option_fset.color.parent_value]] *fset.color.parent_value*
-** Beschreibung: pass:none[Farbe des Wertes für übergeordnete Option]
+* [[option_weechat.color.chat_prefix_join]] *weechat.color.chat_prefix_join*
+** Beschreibung: pass:none[Textfarbe für Join-Präfix]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+cyan+`
+** Standardwert: `+lightgreen+`
-* [[option_fset.color.parent_value_selected]] *fset.color.parent_value_selected*
-** Beschreibung: pass:none[Farbe des Wertes für übergeordnete Option, für ausgewählte Zeile]
+* [[option_weechat.color.chat_prefix_more]] *weechat.color.chat_prefix_more*
+** Beschreibung: pass:none[Farbe des "+" Zeichens, falls Präfix zu lang sein sollte]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+lightcyan+`
+** Standardwert: `+lightmagenta+`
-* [[option_fset.color.quotes]] *fset.color.quotes*
-** Beschreibung: pass:none[Farbe der Anführungszeichen für Stringwerte]
+* [[option_weechat.color.chat_prefix_network]] *weechat.color.chat_prefix_network*
+** Beschreibung: pass:none[Textfarbe für Netzwerk-Präfix]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+darkgray+`
+** Standardwert: `+magenta+`
-* [[option_fset.color.quotes_changed]] *fset.color.quotes_changed*
-** Beschreibung: pass:none[Farbe der Anführungszeichen um Zeichenketten wenn der Wert verändert wurde]
+* [[option_weechat.color.chat_prefix_quit]] *weechat.color.chat_prefix_quit*
+** Beschreibung: pass:none[Textfarbe für Quit-Präfix]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+default+`
+** Standardwert: `+lightred+`
-* [[option_fset.color.quotes_changed_selected]] *fset.color.quotes_changed_selected*
-** Beschreibung: pass:none[Farbe der Anführungszeichen um Zeichenketten wenn der Wert verändert wurde, bei der ausgewählten Zeile]
+* [[option_weechat.color.chat_prefix_suffix]] *weechat.color.chat_prefix_suffix*
+** Beschreibung: pass:none[Textfarbe für den Suffix (senkrechter Strich)]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+white+`
+** Standardwert: `+green+`
-* [[option_fset.color.quotes_selected]] *fset.color.quotes_selected*
-** Beschreibung: pass:none[Farbe der Anführungszeichen um Zeichenketten, bei der ausgewählten Zeile]
+* [[option_weechat.color.chat_read_marker]] *weechat.color.chat_read_marker*
+** Beschreibung: pass:none[Farbe in der das Lesezeichen dargestellt werden soll]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+default+`
+** Standardwert: `+magenta+`
-* [[option_fset.color.section]] *fset.color.section*
-** Beschreibung: pass:none[Farbe für Sektion]
+* [[option_weechat.color.chat_read_marker_bg]] *weechat.color.chat_read_marker_bg*
+** Beschreibung: pass:none[Hintergrundfarbe für das Lesezeichen]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
** Standardwert: `+default+`
-* [[option_fset.color.section_changed]] *fset.color.section_changed*
-** Beschreibung: pass:none[Farbe der Sektion wenn Wert verändert wurde]
+* [[option_weechat.color.chat_server]] *weechat.color.chat_server*
+** Beschreibung: pass:none[Textfarbe für den Namen des Servers]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
** Standardwert: `+brown+`
-* [[option_fset.color.section_changed_selected]] *fset.color.section_changed_selected*
-** Beschreibung: pass:none[Farbe der aktuellen Zeile für Sektion, sofern Wert verändert wurde]
+* [[option_weechat.color.chat_tags]] *weechat.color.chat_tags*
+** Beschreibung: pass:none[Textfarbe in der die Schlagwörter, die nach der jeweiligen Nachricht angezeigt werden, dargestellt werden sollen (wird durch den Befehl "/debug tags" angezeigt)]
+** Typ: Farbe
+** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
+** Standardwert: `+red+`
+
+* [[option_weechat.color.chat_text_found]] *weechat.color.chat_text_found*
+** Beschreibung: pass:none[Farbe zur Hervorhebung des gesuchten Textes in einer Zeile]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
** Standardwert: `+yellow+`
-* [[option_fset.color.section_selected]] *fset.color.section_selected*
-** Beschreibung: pass:none[Farbe der Sektion für ausgewählte Zeile]
+* [[option_weechat.color.chat_text_found_bg]] *weechat.color.chat_text_found_bg*
+** Beschreibung: pass:none[Hintergrundfarbe zur Hervorhebung des gesuchten Textes in einer Zeile]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+white+`
+** Standardwert: `+lightmagenta+`
-* [[option_fset.color.string_values]] *fset.color.string_values*
-** Beschreibung: pass:none[Farbe für String-Werte]
+* [[option_weechat.color.chat_time]] *weechat.color.chat_time*
+** Beschreibung: pass:none[Textfarbe der Zeit im Chatfenster]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
** Standardwert: `+default+`
-* [[option_fset.color.string_values_selected]] *fset.color.string_values_selected*
-** Beschreibung: pass:none[Farbe für Werte von Zeichenketten, bei der ausgewählten Zeile]
+* [[option_weechat.color.chat_time_delimiters]] *weechat.color.chat_time_delimiters*
+** Beschreibung: pass:none[Farbe in der das Trennzeichen für die Uhrzeit dargestellt werden soll]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+white+`
+** Standardwert: `+brown+`
-* [[option_fset.color.title_count_options]] *fset.color.title_count_options*
-** Beschreibung: pass:none[Farbe für die Zahl die im Buffer-Titel anzeigt wie viele Optionen gefunden wurden]
+* [[option_weechat.color.chat_value]] *weechat.color.chat_value*
+** Beschreibung: pass:none[Farbe für Werte]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
** Standardwert: `+cyan+`
-* [[option_fset.color.title_current_option]] *fset.color.title_current_option*
-** Beschreibung: pass:none[Farbe in welcher die Ordnungszahl der ausgewählten Option im Title angegeben werden soll]
+* [[option_weechat.color.chat_value_null]] *weechat.color.chat_value_null*
+** Beschreibung: pass:none[Textfarbe für null-Werte (undefiniert)]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+lightcyan+`
+** Standardwert: `+blue+`
-* [[option_fset.color.title_filter]] *fset.color.title_filter*
-** Beschreibung: pass:none[Farbe für Filter im Buffer-Titel]
+* [[option_weechat.color.emphasized]] *weechat.color.emphasized*
+** Beschreibung: pass:none[Textfarbe um Text hervorzuheben (zum Beispiel bei der Textsuche); wird ausschließlich dann genutzt, falls die Einstellung weechat.look.emphasized_attributes keinen Eintrag besitzt (Standardwert)]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
** Standardwert: `+yellow+`
-* [[option_fset.color.title_marked_options]] *fset.color.title_marked_options*
-** Beschreibung: pass:none[Farbe für die Zahl die im Buffer-Titel anzeigt wie viele Optionen markiert sind]
+* [[option_weechat.color.emphasized_bg]] *weechat.color.emphasized_bg*
+** Beschreibung: pass:none[Hintergrundfarbe um Textpassagen hervorzuheben (zum Beispiel bei der Textsuche); wird ausschließlich dann genutzt, falls die Einstellung weechat.look.emphasized_attributes keinen Eintrag besitzt (Standardwert)]
+** Typ: Farbe
+** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
+** Standardwert: `+magenta+`
+
+* [[option_weechat.color.input_actions]] *weechat.color.input_actions*
+** Beschreibung: pass:none[Textfarbe in der Eingabezeile bei Aktivität (z.B. beim Einfügen von Zeilen)]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
** Standardwert: `+lightgreen+`
-* [[option_fset.color.title_sort]] *fset.color.title_sort*
-** Beschreibung: pass:none[Farbe für Sortierung im Buffer-Titel]
+* [[option_weechat.color.input_text_not_found]] *weechat.color.input_text_not_found*
+** Beschreibung: pass:none[Textfarbe in der Eingabezeile bei einer erfolglosen Textsuche]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+white+`
+** Standardwert: `+red+`
-* [[option_fset.color.type]] *fset.color.type*
-** Beschreibung: pass:none[Farbe für den Variablentyp]
+* [[option_weechat.color.item_away]] *weechat.color.item_away*
+** Beschreibung: pass:none[Textfarbe für das Abwesenheitsitem]
+** Typ: Farbe
+** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
+** Standardwert: `+yellow+`
+
+* [[option_weechat.color.nicklist_away]] *weechat.color.nicklist_away*
+** Beschreibung: pass:none[Textfarbe von abwesenden Nicknamen]
+** Typ: Farbe
+** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
+** Standardwert: `+cyan+`
+
+* [[option_weechat.color.nicklist_group]] *weechat.color.nicklist_group*
+** Beschreibung: pass:none[Textfarbe für Gruppen in Benutzerliste]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
** Standardwert: `+green+`
-* [[option_fset.color.type_selected]] *fset.color.type_selected*
-** Beschreibung: pass:none[Farbe für den Variablentyp wenn Zeile angewählt wird]
+* [[option_weechat.color.separator]] *weechat.color.separator*
+** Beschreibung: pass:none[Farbe der Trennlinie von Fenstern (bei Fenster geteilt sind) und Bars (wie z.B. Nicklist)]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+lightgreen+`
+** Standardwert: `+blue+`
-* [[option_fset.color.unmarked]] *fset.color.unmarked*
-** Beschreibung: pass:none[Farbe für das Markierungssymbol wenn die Option nicht markiert ist]
+* [[option_weechat.color.status_count_highlight]] *weechat.color.status_count_highlight*
+** Beschreibung: pass:none[Farbe für die Anzahl der Highlight-Nachrichten die in der Hotlist dargestellt werden (Statusbar)]
+** Typ: Farbe
+** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
+** Standardwert: `+magenta+`
+
+* [[option_weechat.color.status_count_msg]] *weechat.color.status_count_msg*
+** Beschreibung: pass:none[Farbe für die Anzahl der Nachrichten die in der Hotlist dargestellt werden (Statusbar)]
+** Typ: Farbe
+** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
+** Standardwert: `+brown+`
+
+* [[option_weechat.color.status_count_other]] *weechat.color.status_count_other*
+** Beschreibung: pass:none[Farbe für die Anzahl aller anderen Nachrichten die in der Hotlist dargestellt werden (Statusbar)]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
** Standardwert: `+default+`
-* [[option_fset.color.unmarked_selected]] *fset.color.unmarked_selected*
-** Beschreibung: pass:none[Farbe für das Markierungssymbol wenn die Option in der ausgewählten Zeile nicht markiert ist]
+* [[option_weechat.color.status_count_private]] *weechat.color.status_count_private*
+** Beschreibung: pass:none[Farbe für die Anzahl der privaten Nachrichten die in der Hotlist dargestellt werden (Statusbar)]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+white+`
+** Standardwert: `+green+`
-* [[option_fset.color.value]] *fset.color.value*
-** Beschreibung: pass:none[Farbe für Wert]
+* [[option_weechat.color.status_data_highlight]] *weechat.color.status_data_highlight*
+** Beschreibung: pass:none[Farbe eines Buffers mit Highlight-Nachricht (Statusbar)]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+cyan+`
+** Standardwert: `+lightmagenta+`
-* [[option_fset.color.value_changed]] *fset.color.value_changed*
-** Beschreibung: pass:none[Farbe für veränderten Wert (abweichend vom Standardwert)]
+* [[option_weechat.color.status_data_msg]] *weechat.color.status_data_msg*
+** Beschreibung: pass:none[Farbe eines Buffers der neue Nachrichten enthält (Statusbar)]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+brown+`
+** Standardwert: `+yellow+`
-* [[option_fset.color.value_changed_selected]] *fset.color.value_changed_selected*
-** Beschreibung: pass:none[Farbe für veränderten Wert (abweichend vom Standardwert) für die ausgewählte Zeile]
+* [[option_weechat.color.status_data_other]] *weechat.color.status_data_other*
+** Beschreibung: pass:none[Farbe eines Buffers mit neuen Daten (keine Nachrichten) (Statusbar)]
+** Typ: Farbe
+** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
+** Standardwert: `+default+`
+
+* [[option_weechat.color.status_data_private]] *weechat.color.status_data_private*
+** Beschreibung: pass:none[Farbe eines Buffers mit privater Nachricht (Statusbar)]
+** Typ: Farbe
+** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
+** Standardwert: `+lightgreen+`
+
+* [[option_weechat.color.status_filter]] *weechat.color.status_filter*
+** Beschreibung: pass:none[Farbe des Filterkennzeichens in der Statuszeile]
+** Typ: Farbe
+** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
+** Standardwert: `+green+`
+
+* [[option_weechat.color.status_more]] *weechat.color.status_more*
+** Beschreibung: pass:none[Farbe eines Buffers mit neuen Daten (Statusbar)]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
** Standardwert: `+yellow+`
-* [[option_fset.color.value_selected]] *fset.color.value_selected*
-** Beschreibung: pass:none[Farbe für Wert für die ausgewählte Zeile]
+* [[option_weechat.color.status_mouse]] *weechat.color.status_mouse*
+** Beschreibung: pass:none[Farbe des Zeichens welches den Status der Maus anzeigt]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+lightcyan+`
+** Standardwert: `+green+`
-* [[option_fset.color.value_undef]] *fset.color.value_undef*
-** Beschreibung: pass:none[Farbe für undefinierten Wert]
+* [[option_weechat.color.status_name]] *weechat.color.status_name*
+** Beschreibung: pass:none[Farbe des aktuellen Buffer-Namens in der Statuszeile]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+magenta+`
+** Standardwert: `+white+`
-* [[option_fset.color.value_undef_selected]] *fset.color.value_undef_selected*
-** Beschreibung: pass:none[Farbe für undefinierte Werte für die ausgewählte Zeile]
+* [[option_weechat.color.status_name_ssl]] *weechat.color.status_name_ssl*
+** Beschreibung: pass:none[Farbe in der der aktuelle Buffer-Name in der Statuszeile angezeigt werden soll, sofern die Verbindung durch ein Protokoll, zum Beispiel, SSL geschützt ist]
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
-** Standardwert: `+lightmagenta+`
+** Standardwert: `+lightgreen+`
-* [[option_fset.format.export_help]] *fset.format.export_help*
-** Beschreibung: pass:none[Format für die Hilfezeile die vor jede Option geschrieben wird, wenn in eine Datei exportiert wird (Hinweis: Inhalt wird evaluiert, siehe /help fset)]
+* [[option_weechat.color.status_nicklist_count]] *weechat.color.status_nicklist_count*
+** Beschreibung: pass:none[Textfarbe für die Anzahl der Nicks in der Benutzerliste (Statusbar)]
+** Typ: Farbe
+** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
+** Standardwert: `+default+`
+
+* [[option_weechat.color.status_number]] *weechat.color.status_number*
+** Beschreibung: pass:none[Farbe des aktuellen Kanals in der Statuszeile]
+** Typ: Farbe
+** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
+** Standardwert: `+yellow+`
+
+* [[option_weechat.color.status_time]] *weechat.color.status_time*
+** Beschreibung: pass:none[Textfarbe für die Uhrzeit (Statusbar)]
+** Typ: Farbe
+** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
+** Standardwert: `+default+`
+
+* [[option_weechat.completion.base_word_until_cursor]] *weechat.completion.base_word_until_cursor*
+** Beschreibung: pass:none[ist diese Einstellung aktiviert wird ein zu vervollständigendes Wort in den fließenden Text, mit einem Leerzeichen, hinzugefügt. Ist diese Einstellung deaktiviert, muss in den fließenden Text ein Leerzeichen manuell einfügt werden, um eine Vervollständigung durchführen zu können (Beispiel: In einen schon geschriebenen Text, einen Nick einzufügen)]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+on+`
+
+* [[option_weechat.completion.command_inline]] *weechat.completion.command_inline*
+** Beschreibung: pass:none[ist diese Einstellung aktiviert werden Befehle innerhalb der Eingabezeile vervollständigt (ein Befehl zu Beginn der Eingabezeile besitzt die höhere Priorität und wird zuerst verwendet). Hinweis: die Vervollständigung von Verzeichnissen, die mit "/" beginnen, funktioniert außerhalb von Befehlen nicht mehr]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+on+`
+
+* [[option_weechat.completion.default_template]] *weechat.completion.default_template*
+** Beschreibung: pass:none[Standardvorlage für die automatische Vervollständigung (in der API-Dokumentation findet man die vorgegebenen Codes und Werte, Funktion "weechat_hook_command")]
** Typ: Zeichenkette
** Werte: beliebige Zeichenkette
-** Standardwert: `+"# ${description2}"+`
+** Standardwert: `+"%(nicks)|%(irc_channels)"+`
-* [[option_fset.format.export_option]] *fset.format.export_option*
-** Beschreibung: pass:none[Format für jede Option die in eine Datei exportiert wird (Hinweis: Inhalt wird evaluiert, siehe /help fset)]
+* [[option_weechat.completion.nick_add_space]] *weechat.completion.nick_add_space*
+** Beschreibung: pass:none[fügt ein Leerzeichen hinter die Nick-Vervollständigung ein (sofern der Nickname nicht das erste Wort in einer Kommandozeile darstellt)]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+on+`
+
+* [[option_weechat.completion.nick_case_sensitive]] *weechat.completion.nick_case_sensitive*
+** Beschreibung: pass:none[Groß-und Kleinschreibung wird bei Vervollständigung von Nicks berücksichtigt]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+off+`
+
+* [[option_weechat.completion.nick_completer]] *weechat.completion.nick_completer*
+** Beschreibung: pass:none[fügt eine Zeichenkette hinter die Nick-Vervollständigung ein (sofern ein Nickname das erste Wort in der Kommandozeile ist)]
** Typ: Zeichenkette
** Werte: beliebige Zeichenkette
-** Standardwert: `+"/set ${name} ${quoted_value}"+`
+** Standardwert: `+": "+`
-* [[option_fset.format.export_option_null]] *fset.format.export_option_null*
-** Beschreibung: pass:none[Format für jede Option die "null" als Wert hat und in eine Datei exportiert wird (Hinweis: Inhalt wird evaluiert, siehe /help fset)]
+* [[option_weechat.completion.nick_first_only]] *weechat.completion.nick_first_only*
+** Beschreibung: pass:none[es wird ausschließlich mit dem ersten, passendem Nick-Namen vervollständigt]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+off+`
+
+* [[option_weechat.completion.nick_ignore_chars]] *weechat.completion.nick_ignore_chars*
+** Beschreibung: pass:none[Zeichen, die bei der Vervollständigung von Nicks ignoriert werden]
** Typ: Zeichenkette
** Werte: beliebige Zeichenkette
-** Standardwert: `+"/unset ${name}"+`
+** Standardwert: `+"[]`_-^"+`
-* [[option_fset.format.option1]] *fset.format.option1*
-** Beschreibung: pass:none[erstes von zwei Formaten um Optionen anzuzeigen, wird genutzt wenn die Option fset.look.format_number auf 1 gesetzt ist (Hinweis: der Inhalt ist evaluiert, siehe /help fset); eine leere Zeichenkette nutzt die Standardeinstellung ("${marked} ${name} ${type} ${value2}"), dies findet ohne eine Evaluierung statt, was wesentlich schneller ist; zwischen den Formaten kann mittels ctrl-X umgeschaltet werden]
+* [[option_weechat.completion.partial_completion_alert]] *weechat.completion.partial_completion_alert*
+** Beschreibung: pass:none[erzeugt eine Mitteilung (BEL) wenn eine teilweise Vervollständigung auftritt]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+on+`
+
+* [[option_weechat.completion.partial_completion_command]] *weechat.completion.partial_completion_command*
+** Beschreibung: pass:none[teilweise Vervollständigung von Befehlen (bricht ab, falls zu viele Befehle mit dem selben Buchstaben beginnen)]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+off+`
+
+* [[option_weechat.completion.partial_completion_command_arg]] *weechat.completion.partial_completion_command_arg*
+** Beschreibung: pass:none[teilweise Vervollständigung von Befehls-Argumenten (bricht ab, falls zu viele Befehle mit dem selben Präfix beginnen)]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+off+`
+
+* [[option_weechat.completion.partial_completion_count]] *weechat.completion.partial_completion_count*
+** Beschreibung: pass:none[zeigt bei einer teilweisen Vervollständigung die Anzahl der jeweiligen Möglichkeiten in der Bar-Item an]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+on+`
+
+* [[option_weechat.completion.partial_completion_other]] *weechat.completion.partial_completion_other*
+** Beschreibung: pass:none[teilweise Vervollständigung von externen Befehlen (bricht ab, falls zu viele Befehle mit dem selben Buchstaben beginnen)]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+off+`
+
+* [[option_weechat.completion.partial_completion_templates]] *weechat.completion.partial_completion_templates*
+** Beschreibung: pass:none[durch Kommata getrennte Liste der Vorgaben für die eine teilweise Vervollständigung standardmäßig aktiv ist (mittels TAB Taste, anstelle von shift-TAB); eine Auflistung möglicher Vorgaben findet man in der Dokumentation: Anleitung für API Erweiterung, Funktion "weechat_hook_command"]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+"config_options"+`
+
+* [[option_weechat.history.display_default]] *weechat.history.display_default*
+** Beschreibung: pass:none[Wert für die maximale Anzahl der angezeigten Befehle im Verlaufsspeicher, die mittels /history angezeigt werden (0: unbegrenzt)]
+** Typ: integer
+** Werte: 0 .. 2147483647
+** Standardwert: `+5+`
+
+* [[option_weechat.history.max_buffer_lines_minutes]] *weechat.history.max_buffer_lines_minutes*
+** Beschreibung: pass:none[Dauer in Minuten, wie lange die Zeilen im Verlaufsspeicher, pro Buffer, gehalten werden sollen (0 = unbegrenzt); Beispiele: 1440 = einen Tag, 10080 = eine Woche, 43200 = einen Monat, 525600 = ein Jahr; 0 sollte nur genutzt werden sofern weechat.history.max_buffer_lines_number nicht ebenfalls 0 ist]
+** Typ: integer
+** Werte: 0 .. 2147483647
+** Standardwert: `+0+`
+
+* [[option_weechat.history.max_buffer_lines_number]] *weechat.history.max_buffer_lines_number*
+** Beschreibung: pass:none[maximale Anzahl an Zeilen im Verlaufsspeicher, dies gilt pro Buffer (0: keine Zeilenbegrenzung); 0 sollte nur genutzt werden sofern weechat.history.max_buffer_lines_minutes nicht ebenfalls 0 ist]
+** Typ: integer
+** Werte: 0 .. 2147483647
+** Standardwert: `+4096+`
+
+* [[option_weechat.history.max_commands]] *weechat.history.max_commands*
+** Beschreibung: pass:none[maximale Anzahl an Befehlen im Verlaufsspeicher (0: kein Begrenzung, NICHT EMPFOHLEN: keine Begrenzung des Speicherverbrauches)]
+** Typ: integer
+** Werte: 0 .. 2147483647
+** Standardwert: `+100+`
+
+* [[option_weechat.history.max_visited_buffers]] *weechat.history.max_visited_buffers*
+** Beschreibung: pass:none[maximale Anzahl an besuchten Buffern, welche im Speicher gehalten werden sollen]
+** Typ: integer
+** Werte: 0 .. 1000
+** Standardwert: `+50+`
+
+* [[option_weechat.look.align_end_of_lines]] *weechat.look.align_end_of_lines*
+** Beschreibung: pass:none[Einstellung für einen Zeilenumbruch (betrifft alle Zeilen, außer der ersten Zeile). Die Darstellung der nachfolgenden Zeile beginnt unter: Uhrzeit = time, Buffer = buffer, Präfix = prefix, Suffix = suffix, Nachricht = message (Standardwert)]
+** Typ: integer
+** Werte: time, buffer, prefix, suffix, message
+** Standardwert: `+message+`
+
+* [[option_weechat.look.align_multiline_words]] *weechat.look.align_multiline_words*
+** Beschreibung: pass:none[Einstellung für Zeilenumbruch gemäß weechat.look.align_end_of_lines; falls deaktiviert wird ein Wort welches durch einen Zeilenumbruch in die nächste Zeile gezwungen wird nicht in die neue Zeile eingeschoben, sondern beginnt direkt am Zeilenanfang. Dies kann sinnvoll sein um lange URLs weiterhin anklicken zu können und kein Leerzeichen innerhalb der URL zu erhalten]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+on+`
+
+* [[option_weechat.look.bar_more_down]] *weechat.look.bar_more_down*
+** Beschreibung: pass:none[Zeichen welches anzeigt, dass die Bar nach unten gescrollt werden kann (dies trifft nur auf Bars zu bei denen die Einstellung "/set *.filling_*" nicht auf "horizontal" eingestellt ist)]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+"++"+`
+
+* [[option_weechat.look.bar_more_left]] *weechat.look.bar_more_left*
+** Beschreibung: pass:none[Zeichen welches anzeigt, dass die Bar nach links gescrollt werden kann (dies trifft nur auf Bars zu bei denen die Einstellung "/set *.filling_*" nicht auf "horizontal" eingestellt ist)]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+"<<"+`
+
+* [[option_weechat.look.bar_more_right]] *weechat.look.bar_more_right*
+** Beschreibung: pass:none[Zeichen welches anzeigt, dass die Bar nach rechts gescrollt werden kann (dies trifft nur auf Bars zu bei denen die Einstellung "/set *.filling_*" nicht auf "horizontal" eingestellt ist)]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+">>"+`
+
+* [[option_weechat.look.bar_more_up]] *weechat.look.bar_more_up*
+** Beschreibung: pass:none[Zeichen welches anzeigt, dass die Bar nach oben gescrollt werden kann (dies trifft nur auf Bars zu bei denen die Option "/set *.filling_*" nicht auf "horizontal" eingestellt ist)]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+"--"+`
+
+* [[option_weechat.look.bare_display_exit_on_input]] *weechat.look.bare_display_exit_on_input*
+** Beschreibung: pass:none[beendet den einfachen Anzeigemodus durch Tastendruck]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+on+`
+
+* [[option_weechat.look.bare_display_time_format]] *weechat.look.bare_display_time_format*
+** Beschreibung: pass:none[Format für die Zeitanzeige im einfachen Anzeigemodus, "time" (siehe man strftime, welche Platzhalter für das Datum und die Uhrzeit verwendet werden)]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+"%H:%M"+`
+
+* [[option_weechat.look.buffer_auto_renumber]] *weechat.look.buffer_auto_renumber*
+** Beschreibung: pass:none[automatisches nummerieren von Buffern um ausschließlich eine aufeinander folgende Durchnummerierung zu besitzen, die bei 1 beginnt; ist diese Einstellung deaktiviert sind Lücken zwischen den Buffern möglich und der erste Buffer muss nicht mit der Zahl 1 beginnen]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+on+`
+
+* [[option_weechat.look.buffer_notify_default]] *weechat.look.buffer_notify_default*
+** Beschreibung: pass:none[Standardeinstellung der Benachrichtigungsstufe für Buffer (dies wird genutzt um WeeChat mitzuteilen ob der Buffer in der Hotlist angezeigt werden soll oder nicht, entsprechend der Wichtigkeit der Nachricht): all=alle Nachrichten (Standard), message=Nachrichten+Highlights, highlights=nur Highlights, none=Hotlist wird niemals angezeigt]
+** Typ: integer
+** Werte: none, highlight, message, all
+** Standardwert: `+all+`
+
+* [[option_weechat.look.buffer_position]] *weechat.look.buffer_position*
+** Beschreibung: pass:none[Position auf der ein neuer Buffer geöffnet werden soll: end = am Ende der Liste (Nummer = letzter Buffer + 1) (Standard), first_gap = erste mögliche Nummer die frei ist (wird das Ende der Liste erreicht, wird der Buffer hinten angehängt); diese Einstellung wird nur angewendet sofern dem Buffer keine Position, durch Layout, zugeordnet wurde]
+** Typ: integer
+** Werte: end, first_gap
+** Standardwert: `+end+`
+
+* [[option_weechat.look.buffer_search_case_sensitive]] *weechat.look.buffer_search_case_sensitive*
+** Beschreibung: pass:none[standardmäßige Textsuche im Buffer: zwischen Groß-und Kleinschreibung wird unterschieden]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+off+`
+
+* [[option_weechat.look.buffer_search_force_default]] *weechat.look.buffer_search_force_default*
+** Beschreibung: pass:none[es werden immer die Standardeinstellungen verwendet (anstelle der zuletzt genutzten Sucheinstellungen)]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+off+`
+
+* [[option_weechat.look.buffer_search_regex]] *weechat.look.buffer_search_regex*
+** Beschreibung: pass:none[standardmäßige Textsuche im Buffer: falls aktiviert wird mittels erweiterten regulären POSIX Ausdrücken gesucht, andernfalls findet eine genaue Textsuche statt]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+off+`
+
+* [[option_weechat.look.buffer_search_where]] *weechat.look.buffer_search_where*
+** Beschreibung: pass:none[standardmäßige Textsuche im Buffer: in der Nachricht (message), im Präfix (prefix), Präfix und Nachricht (prefix_message)]
+** Typ: integer
+** Werte: prefix, message, prefix_message
+** Standardwert: `+prefix_message+`
+
+* [[option_weechat.look.buffer_time_format]] *weechat.look.buffer_time_format*
+** Beschreibung: pass:none[Format für die Uhrzeit, die in jeder Zeile eines Buffers dargestellt wird (siehe man strftime, welche Platzhalter für das Datum und die Uhrzeit verwendet werden) (Hinweis: Inhalt wird evaluiert, somit kann mittels des Formats "${color:xxx} Farben gesetzt werden, siehe /help eval). Beispiel: Uhrzeit in Graustufen (Unterstützung von 256 Farben notwendig): "${color:252}%H${color:245}%M${color:240}%S"]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+"%H:%M:%S"+`
+
+* [[option_weechat.look.buffer_time_same]] *weechat.look.buffer_time_same*
+** Beschreibung: pass:none[Uhrzeit die bei einer Nachricht dargestellt werden soll, sofern die Uhrzeit der vorherigen Nachricht entspricht: bei einem Leerzeichen " " wird keine Uhrzeit angezeigt, oder man kann eine Zeichenkette anstelle der Uhrzeit anzeigen, keine Zeichenkette deaktiviert diese Funktion (Uhrzeit wird angezeigt) (Hinweis: Inhalt wird evaluiert, es kann z.B. eine Farbe mittels dem Format "${color:xxx}" angegeben werden, siehe /help eval)]
** Typ: Zeichenkette
** Werte: beliebige Zeichenkette
** Standardwert: `+""+`
-* [[option_fset.format.option2]] *fset.format.option2*
-** Beschreibung: pass:none[zweites von zwei Formaten um Optionen anzuzeigen,wird genutzt wenn die Option fset.look.format_number auf 1 gesetzt ist (Hinweis: der Inhalt ist evaluiert, siehe /help fset); eine leere Zeichenkette nutzt die Standardeinstellung ("${marked} ${name} ${type} ${value2}"), dies findet ohne eine Evaluierung statt, was wesentlich schneller ist; zwischen den Formaten kann mittels ctrl-X umgeschaltet werden]
+* [[option_weechat.look.chat_space_right]] *weechat.look.chat_space_right*
+** Beschreibung: pass:none[auf der rechten Seite des Chatbereichs ein Leerzeichen darstellen, sofern rechts eine Bar angezeigt wird (dies gilt sowohl für Text als auch für die Lesemarkierung)]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+off+`
+
+* [[option_weechat.look.color_basic_force_bold]] *weechat.look.color_basic_force_bold*
+** Beschreibung: pass:none[erzwingt das Textattribut "fett" für helle Farben und "darkgray", um diese Farben stärker hervorzuheben (diese Einstellung ist standardmäßig deaktiviert: "fett" findet ausschließlich dann Verwendung falls das Terminal weniger als 16 Farben zur Verfügung stellt)]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+off+`
+
+* [[option_weechat.look.color_inactive_buffer]] *weechat.look.color_inactive_buffer*
+** Beschreibung: pass:none[Textfarbe für Zeilen in einem inaktiven Buffer (betrifft Zeilen in einem zusammengefügt Buffer, welcher nicht aktiv ist)]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+on+`
+
+* [[option_weechat.look.color_inactive_message]] *weechat.look.color_inactive_message*
+** Beschreibung: pass:none[nutzt eine andere Farbe um die inaktiven Nachrichten darzustellen (Fenster ist nicht das aktuelle Fenster oder wenn die Zeile des zusammengefügten Buffers nicht die aktiv Zeile ist)]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+on+`
+
+* [[option_weechat.look.color_inactive_prefix]] *weechat.look.color_inactive_prefix*
+** Beschreibung: pass:none[nutzt eine andere Farbe um den inaktiven Präfix darzustellen (Fenster ist nicht das aktuelle Fenster oder wenn die Zeile des zusammengefügten Buffers nicht die aktiv Zeile ist)]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+on+`
+
+* [[option_weechat.look.color_inactive_prefix_buffer]] *weechat.look.color_inactive_prefix_buffer*
+** Beschreibung: pass:none[nutzt eine andere Farbe für den inaktiven Buffernamen im Präfix (das Fenster ist nicht das aktuelle aktive Fenster oder wenn die Zeile des zusammengefügten Buffers nicht die aktiv Zeile ist)]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+on+`
+
+* [[option_weechat.look.color_inactive_time]] *weechat.look.color_inactive_time*
+** Beschreibung: pass:none[nutzt eine andere Farbe um die inaktive Zeitangabe darzustellen (Fenster ist nicht das aktuelle Fenster oder wenn die Zeile des zusammengefügten Buffers nicht die aktiv Zeile ist)]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+off+`
+
+* [[option_weechat.look.color_inactive_window]] *weechat.look.color_inactive_window*
+** Beschreibung: pass:none[Textfarbe für Zeilen in einem inaktiven Fenster (betrifft das Fenster, welches nicht aktiv ist)]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+on+`
+
+* [[option_weechat.look.color_nick_offline]] *weechat.look.color_nick_offline*
+** Beschreibung: pass:none[Nicks die Offline sind werden im Buffer in einer anderen Farbe dargestellt (dies betrifft Nicks, die nicht in der Benutzerliste vorhanden sind!)]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+off+`
+
+* [[option_weechat.look.color_pairs_auto_reset]] *weechat.look.color_pairs_auto_reset*
+** Beschreibung: pass:none[automatischer Reset der Farbpaarungen sobald die verfügbare Anzahl an Paaren kleiner oder gleich der hier angegebenen Anzahl ist (-1 = deaktiviert den automatischen Reset, dann ist ein manueller Reset mittels "/color reset" notwendig falls alle Farbpaarungen belegt sind)]
+** Typ: integer
+** Werte: -1 .. 256
+** Standardwert: `+5+`
+
+* [[option_weechat.look.color_real_white]] *weechat.look.color_real_white*
+** Beschreibung: pass:none[falls diese Einstellung aktiviert ist, wird echtes weiß als Farbe genutzt. Standardmäßig ist diese Einstellung deaktiviert, damit keine Probleme bei Terminals auftreten, die einen weißen Hintergrund nutzen (falls man keinen weißen Hintergrund nutzt, dann ist es ratsam diese Einstellung zu aktivieren. Andernfalls wird die voreingestellte Vordergrundfarbe des Terminals verwendet)]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+off+`
+
+* [[option_weechat.look.command_chars]] *weechat.look.command_chars*
+** Beschreibung: pass:none[Bestimmt ein- oder mehrere Zeichen mit denen man ebenfalls einen Befehl ausführen kann. Zum Beispiel mittels ".$". Der Schrägstrich (slash: "/") ist ein reserviertes Zeichen und wird immer genutzt]
** Typ: Zeichenkette
** Werte: beliebige Zeichenkette
-** Standardwert: `+"${marked} ${name} ${type} ${value2}${newline} ${empty_name} ${_default_value}${color:darkgray} -- ${min}..${max}${newline} ${empty_name} ${description}"+`
+** Standardwert: `+""+`
-* [[option_fset.look.auto_refresh]] *fset.look.auto_refresh*
-** Beschreibung: pass:none[durch Kommata getrennte Liste von Optionen, die eine Aktualisierung des fset Buffers auslösen (falls dieser geöffnet sein sollte); "*" beschreibt alle Optionen (empfohlen). Beginnt der Name einer Option hingegen mit "!" erzeugt diese Option keine Aktualisierung des Buffers. Im Optionsnamen kann der Platzhalter "*" verwendet werden (Beispiel: "*,!plugin.section.*" )]
+* [[option_weechat.look.command_incomplete]] *weechat.look.command_incomplete*
+** Beschreibung: pass:none[ist diese Einstellung aktiviert werden unvollständige und eindeutige Befehle akzeptiert, zum Beispiel /he für /help]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+off+`
+
+* [[option_weechat.look.confirm_quit]] *weechat.look.confirm_quit*
+** Beschreibung: pass:none[ist diese Einstellung aktiviert, muss der "/quit" Befehl mit dem Argument "-yes" ausgeführt werden (siehe /help quit)]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+off+`
+
+* [[option_weechat.look.confirm_upgrade]] *weechat.look.confirm_upgrade*
+** Beschreibung: pass:none[ist diese Einstellung aktiviert, muss der "/upgrade" Befehl mit dem Argument "-yes" ausgeführt werden (siehe /help upgrade)]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+off+`
+
+* [[option_weechat.look.day_change]] *weechat.look.day_change*
+** Beschreibung: pass:none[bei einem Datumswechsel wird eine entsprechende Nachricht angezeigt]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+on+`
+
+* [[option_weechat.look.day_change_message_1date]] *weechat.look.day_change_message_1date*
+** Beschreibung: pass:none[Nachricht welche bei einem Datumswechsel angezeigt wird (zum Beispiel als erste Zeile im Buffer) (siehe man strftime, welche Platzhalter für das Datum und die Uhrzeit verwendet werden) (Hinweis: Inhalt wird evaluiert, somit kann mittels des Formats "${color:xxx} Farben gesetzt werden, siehe /help eval)]
** Typ: Zeichenkette
** Werte: beliebige Zeichenkette
-** Standardwert: `+"*"+`
+** Standardwert: `+"-- %a, %d %b %Y --"+`
-* [[option_fset.look.auto_unmark]] *fset.look.auto_unmark*
-** Beschreibung: pass:none[die Markierung wird automatisch für alle Optionen gelöscht, sobald eine Aktion bei einer markierten Option durchgeführt wird oder die Liste neu eingelesen wird]
+* [[option_weechat.look.day_change_message_2dates]] *weechat.look.day_change_message_2dates*
+** Beschreibung: pass:none[Nachricht welche bei einem Datumswechsel angezeigt wird, dabei werden zwei Daten angegeben die zwischen zwei Nachrichten liegen; der zweite Platzhalter muss mit zwei "%" angegeben werden, da strftime auch zweimal aufgerufen wird (siehe man strftime, welche Platzhalter für das Datum und die Uhrzeit verwendet werden) (Hinweis: Inhalt wird evaluiert, somit kann mittels des Formats "${color:xxx} Farben gesetzt werden, siehe /help eval)]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+"-- %%a, %%d %%b %%Y (%a, %d %b %Y) --"+`
+
+* [[option_weechat.look.eat_newline_glitch]] *weechat.look.eat_newline_glitch*
+** Beschreibung: pass:none[aktiviert man diese Einstellung, dann wird "eat_newline_glitch" auf 0 gesetzt; dies bedeutet, dass am Ende einer Zeile kein Zeilenumbruch angehängt wird und somit der Text beim kopieren aus WeeChat und beim einfügen in einer anderen Applikation nicht umgebrochen wird (diese Einstellung ist standardmäßig deaktiviert, da es zu schwerwiegenden Grafikfehlern kommen kann)]
** Typ: boolesch
** Werte: on, off
** Standardwert: `+off+`
-* [[option_fset.look.condition_catch_set]] *fset.look.condition_catch_set*
-** Beschreibung: pass:none[Bedingung um den /set Befehl abzufangen und die Ausgabe im fset Buffer darzustellen; folgende Variablen können verwendet werden: ${name} (Name der Option die dem /set Befehl übergeben wurde), ${count} (Anzahl der Optionen die mit /set gefunden wurden); eine leere Zeichenkette deaktiviert die Funktion; der Wert "1", nutzt immer den fset Buffer für die Ausgabe des /set Befehls]
+* [[option_weechat.look.emphasized_attributes]] *weechat.look.emphasized_attributes*
+** Beschreibung: pass:none[Attribute um Textpassagen hervorzuheben: Das setzen von ein- oder mehreren Attributen ist möglich ("%" für blinkenden Text, "." zum "dimmen" (halbe Helligkeit),"*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen); wenn die Zeichenkette leer ist, werden die Farben genutzt die durch weechat.color.emphasized* definiert sind]
** Typ: Zeichenkette
** Werte: beliebige Zeichenkette
-** Standardwert: `+"${count} >= 1"+`
+** Standardwert: `+""+`
-* [[option_fset.look.export_help_default]] *fset.look.export_help_default*
-** Beschreibung: pass:none[erstellt standardmäßig eine Hilfe für jede exportierte Option (dies kann mit dem Argumenten "-help" und "-nohelp" überschrieben werden wenn man den Befehl /fset -export nutzt)]
+* [[option_weechat.look.highlight]] *weechat.look.highlight*
+** Beschreibung: pass:none[eine durch Kommata getrennte Liste der hervorzuhebenden Wörter. Groß- und Kleinschreibung wird dabei standardmäßig nicht beachtet (um zwischen Groß-und Kleinschreibung zu unterscheiden muss am Wortanfang "(?-i)" genutzt werden). Schlagwörter können mit "*", als Joker, beginnen oder enden; Beispiel: "test,(?-i)*toto*,flash*"]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+""+`
+
+* [[option_weechat.look.highlight_disable_regex]] *weechat.look.highlight_disable_regex*
+** Beschreibung: pass:none[Erweiterter regulärer POSIX-Ausdruck, der verwendet wird, um jede Hervorhebung von einer Nachricht zu verhindern: Diese Option hat eine höhere Priorität als andere Hervorhebungsoptionen (sofern die Zeichenkette in der Nachricht gefunden wird, die Hervorhebung deaktiviert ist und die andereOptionen ignoriert werden), bei regulären Ausdrücken wird die Groß-/Kleinschreibung nicht beachtet (verwenden Sie "(?-i)" am Anfang, um Groß- und Kleinschreibung zu beachten), Beispiele: "<flash.*>", "(?-i)<Flash.*>"]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+""+`
+
+* [[option_weechat.look.highlight_regex]] *weechat.look.highlight_regex*
+** Beschreibung: pass:none[Suchmuster (erweiterter regulärer POSIX Ausdruck) welches genutzt werden soll, um zu überprüfen ob eine Nachricht ein Highlight enthält oder nicht. Mindestens eine Zeichenkette muss dabei auf das Suchmuster passen (alphanumerisch, "-", "_" oder "|"). Das Suchmuster unterscheidet dabei nicht zwischen Groß-und Kleinschreibung (um zwischen Groß-und Kleinschreibung zu unterscheiden muss am Wortanfang "(?-i)" genutzt werden). Beispiele: "flashcode|flashy", "(?-i)FlashCode|flashy"]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+""+`
+
+* [[option_weechat.look.highlight_tags]] *weechat.look.highlight_tags*
+** Beschreibung: pass:none[eine durch Kommata getrennte Liste von Tags, die eine highlight-Nachricht erzeugen; Groß- und Kleinschreibung wird dabei nicht beachtet; der Platzhalter "*" darf in einem Tag genutzt werden. Um eine logische "und" Verknüpfung zu verwenden, können mehrere Tags durch "+" zusammengefügt werden. Beispiele: "nick_flashcode" für Nachrichten von "FlashCode", "irc_notice+nick_toto*" für Notice-Nachrichten von Nicks, die mit "toto" beginnen]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+""+`
+
+* [[option_weechat.look.hotlist_add_conditions]] *weechat.look.hotlist_add_conditions*
+** Beschreibung: pass:none[Bedingungen um einen Buffer in die Hotlist einzutragen (sofern der Notify-Level für den Buffer korrekt ist); es können folgende Bedingungen genutzt werden: "window" (zur Zeit genutzter Window-Pointer), "buffer" (Buffer-Pointer welcher zur Hotlist hinzugefügt werden soll), "priority" (0 = niedrig, 1 = Nachricht, 2 = Privat, 3 = Highlight); Standardmäßig wird ein Buffer in die Hotlist eingetragen falls man abwesend sein sollte oder falls der Buffer nicht auf dem Bildschirm angezeigt wird (Buffer wird nicht in einem Fenster dargestellt) oder falls mindestens ein relay client mit dem weechat Protokoll verbunden ist]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+"${away} || ${buffer.num_displayed} == 0 || ${info:relay_client_count,weechat,connected} > 0"+`
+
+* [[option_weechat.look.hotlist_buffer_separator]] *weechat.look.hotlist_buffer_separator*
+** Beschreibung: pass:none[Zeichen welches zum Trennen zwischen den verschiedenen Buffern in der Hotlist genutzt werden soll]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+", "+`
+
+* [[option_weechat.look.hotlist_count_max]] *weechat.look.hotlist_count_max*
+** Beschreibung: pass:none[maximale Anzahl an Nachrichtenzähler in der Hotlist, für einen Buffer: 0 = der Nachrichtenzähler wird nicht dargestellt, nächst höhere Zahl = zeigt maximal <N> Nachrichtenzähler an (von höchster zu niedrigster Priorität)]
+** Typ: integer
+** Werte: 0 .. 4
+** Standardwert: `+2+`
+
+* [[option_weechat.look.hotlist_count_min_msg]] *weechat.look.hotlist_count_min_msg*
+** Beschreibung: pass:none[zeigt einen Nachrichtenzähler an, sofern die Anzahl der Nachrichten größer oder gleich dem hier angegebenen Wertes ist]
+** Typ: integer
+** Werte: 1 .. 100
+** Standardwert: `+2+`
+
+* [[option_weechat.look.hotlist_names_count]] *weechat.look.hotlist_names_count*
+** Beschreibung: pass:none[maximale Anzahl an Namen in der Hotlist (0 = es werden keine Namen angezeigt, sondern nur die entsprechenden Nummern der Buffer)]
+** Typ: integer
+** Werte: 0 .. 10000
+** Standardwert: `+3+`
+
+* [[option_weechat.look.hotlist_names_length]] *weechat.look.hotlist_names_length*
+** Beschreibung: pass:none[maximale Länge der Namen in der Hotlist (0: kein Limitierung)]
+** Typ: integer
+** Werte: 0 .. 32
+** Standardwert: `+0+`
+
+* [[option_weechat.look.hotlist_names_level]] *weechat.look.hotlist_names_level*
+** Beschreibung: pass:none[Grad für die Darstellung wann der Namen eines Buffers in der Hotlist angezeigt werden soll (Kombination aus: 1=join/part, 2=Nachricht, 4=Query, 8=Highlight, z.B. 12=Query+Highlight)]
+** Typ: integer
+** Werte: 1 .. 15
+** Standardwert: `+12+`
+
+* [[option_weechat.look.hotlist_names_merged_buffers]] *weechat.look.hotlist_names_merged_buffers*
+** Beschreibung: pass:none[ist diese Einstellung aktiviert, werden die Namen der zusammengefügten Buffer in der Hotlist dargestellt]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+off+`
+
+* [[option_weechat.look.hotlist_prefix]] *weechat.look.hotlist_prefix*
+** Beschreibung: pass:none[Text der vor der Hotlist angezeigt werden soll]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+"H: "+`
+
+* [[option_weechat.look.hotlist_remove]] *weechat.look.hotlist_remove*
+** Beschreibung: pass:none[entfernt Buffer aus der Hotlist: buffer = entfernt einen einzelnen Buffer, merged = entfernt alle zusammengefügten Buffer auf einmal]
+** Typ: integer
+** Werte: buffer, merged
+** Standardwert: `+merged+`
+
+* [[option_weechat.look.hotlist_short_names]] *weechat.look.hotlist_short_names*
+** Beschreibung: pass:none[ist diese Einstellung aktiviert, wird der Kurzname der zusammengefügten Buffer in der Hotlist dargestellt (die Darstellung geschieht nach dem ersten "." im Namen)]
** Typ: boolesch
** Werte: on, off
** Standardwert: `+on+`
-* [[option_fset.look.format_number]] *fset.look.format_number*
-** Beschreibung: pass:none[Nummer welches Format genutzt werden soll um Optionen anzuzeigen; diese Option wird dynamisch geändert indem man ctrl-X im fset Buffer nutzt]
+* [[option_weechat.look.hotlist_sort]] *weechat.look.hotlist_sort*
+** Beschreibung: pass:none[Sortierung der Hotlist: group_time_*: nach Benachrichtigungstufe (Highlights zuerst) und dann nach Uhrzeit, group_number_*: nach Benachrichtigungstufe (Highlights zuerst) und dann nach Buffer-Nummer, number_*: sortiert nach Buffer-Nummer; asc = aufsteigende Sortierung, desc = absteigende Sortierung]
** Typ: integer
-** Werte: 1 .. 2
-** Standardwert: `+1+`
+** Werte: group_time_asc, group_time_desc, group_number_asc, group_number_desc, number_asc, number_desc
+** Standardwert: `+group_time_asc+`
-* [[option_fset.look.marked_string]] *fset.look.marked_string*
-** Beschreibung: pass:none[Zeichenkette welche dargestellt wird wenn eine Option markiert wurde (um eine Aktion auf mehrere Optionen durchzuführen)]
+* [[option_weechat.look.hotlist_suffix]] *weechat.look.hotlist_suffix*
+** Beschreibung: pass:none[Text der am Ende der Hotlist angezeigt werden soll]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+""+`
+
+* [[option_weechat.look.hotlist_unique_numbers]] *weechat.look.hotlist_unique_numbers*
+** Beschreibung: pass:none[die Nummer des Buffers wird nur einmal in der Hotlist angezeigt (diese Einstellung kommt nur zum Tragen sofern KEINE Buffernamen angezeigt werden)]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+on+`
+
+* [[option_weechat.look.hotlist_update_on_buffer_switch]] *weechat.look.hotlist_update_on_buffer_switch*
+** Beschreibung: pass:none[Aktualisiert die Hotlist, wenn der Buffer gewechselt wird]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+on+`
+
+* [[option_weechat.look.input_cursor_scroll]] *weechat.look.input_cursor_scroll*
+** Beschreibung: pass:none[Anzahl an Zeichen die nach links verschoben werden sollen, falls das Ende der Eingabezeile erreicht wird]
+** Typ: integer
+** Werte: 0 .. 100
+** Standardwert: `+20+`
+
+* [[option_weechat.look.input_share]] *weechat.look.input_share*
+** Beschreibung: pass:none[diese Einstellung erlaubt es den Inhalt der aktuellen Eingabezeile in andere Buffern zu übernehmen. Dabei kann unterschieden werden, ob ausschließlich Befehle (commands), nur Text (text) oder beides (all) berücksichtigt werden soll (der Befehlsverlauf der einzelnen Buffer bleibt davon unberührt)]
+** Typ: integer
+** Werte: none, commands, text, all
+** Standardwert: `+none+`
+
+* [[option_weechat.look.input_share_overwrite]] *weechat.look.input_share_overwrite*
+** Beschreibung: pass:none[ist diese Einstellung aktiviert und die Eingabezeile wird für alle Buffer gleichberechtigt genutzt, dann wird der Inhalt im Zielbuffer überschrieben]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+off+`
+
+* [[option_weechat.look.input_undo_max]] *weechat.look.input_undo_max*
+** Beschreibung: pass:none[maximale Anzahl von "Rücknahmen" für Befehle im Verlauf, pro Buffer (0: deaktiviert die Funktion)]
+** Typ: integer
+** Werte: 0 .. 65535
+** Standardwert: `+32+`
+
+* [[option_weechat.look.item_away_message]] *weechat.look.item_away_message*
+** Beschreibung: pass:none[Abwesenheitsnachricht im Away-Bar-Item anzeigen]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+on+`
+
+* [[option_weechat.look.item_buffer_filter]] *weechat.look.item_buffer_filter*
+** Beschreibung: pass:none[Zeichen mit welchem signalisiert wird ob im aktuellen Buffer die Filterfunktion eingeschaltet ist (durch Bar-Item "buffer_filter")]
** Typ: Zeichenkette
** Werte: beliebige Zeichenkette
** Standardwert: `+"*"+`
-* [[option_fset.look.scroll_horizontal]] *fset.look.scroll_horizontal*
-** Beschreibung: pass:none[links/rechts im fset Buffer scrollen (prozentual zur Breite)]
+* [[option_weechat.look.item_buffer_zoom]] *weechat.look.item_buffer_zoom*
+** Beschreibung: pass:none[Zeichen mit welchem signalisiert wird ob im aktuellen Buffer der Zoom aktiviert ist (durch Bar-Item "buffer_zoom")]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+"!"+`
+
+* [[option_weechat.look.item_mouse_status]] *weechat.look.item_mouse_status*
+** Beschreibung: pass:none[Zeichen mit welchem signalisiert wird ob die Mausfunktionalität eingeschaltet ist (durch Bar-Item "mouse_status")]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+"M"+`
+
+* [[option_weechat.look.item_time_format]] *weechat.look.item_time_format*
+** Beschreibung: pass:none[Format für die Zeitanzeige des Bar-Items, "time" (siehe man strftime, welche Platzhalter für das Datum und die Uhrzeit verwendet werden)(Hinweis: Inhalt wird evaluiert, somit kann mittels des Formats "${color:xxx} Farben gesetzt werden, siehe /help eval)]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+"%H:%M"+`
+
+* [[option_weechat.look.jump_current_to_previous_buffer]] *weechat.look.jump_current_to_previous_buffer*
+** Beschreibung: pass:none[wechselt zum vorher genutzten Buffer falls man mit dem Befehl /buffer *N (N ist die Buffer-Nummer) zum aktuellen Buffer gewechselt hat. Dies dient dazu um zwischen den letzten beiden Buffern hin- und her zu springen]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+on+`
+
+* [[option_weechat.look.jump_previous_buffer_when_closing]] *weechat.look.jump_previous_buffer_when_closing*
+** Beschreibung: pass:none[wechselt zum vorher genutzten Buffer, falls der aktuelle Buffer geschlossen wird (wenn diese Funktion deaktiviert ist wird zum Buffer gewechselt der die relative Position -1 einnimmt)]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+on+`
+
+* [[option_weechat.look.jump_smart_back_to_buffer]] *weechat.look.jump_smart_back_to_buffer*
+** Beschreibung: pass:none[falls keine weiteren Einträge in der Hotlist vorhanden sind wird zum Ausgangsbuffer zurückgekehrt]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+on+`
+
+* [[option_weechat.look.key_bind_safe]] *weechat.look.key_bind_safe*
+** Beschreibung: pass:none[Es dürfen nur "geschützte" Tasten zugeordnet werden (Tasten, die mittels ctrl oder meta verwendet werden)]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+on+`
+
+* [[option_weechat.look.key_grab_delay]] *weechat.look.key_grab_delay*
+** Beschreibung: pass:none[Standardverzögerung (in Millisekunden) um eine Tasteneingabe zu greifen (Standardtastenbelegung: alt-k); die Verzögerung kann mit dem /input Befehl angepasst werden (siehe /help input)]
** Typ: integer
-** Werte: 1 .. 100
+** Werte: 1 .. 10000
+** Standardwert: `+800+`
+
+* [[option_weechat.look.mouse]] *weechat.look.mouse*
+** Beschreibung: pass:none[Mausunterstützung einschalten]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+off+`
+
+* [[option_weechat.look.mouse_timer_delay]] *weechat.look.mouse_timer_delay*
+** Beschreibung: pass:none[Verzögerung (in Millisekunden) um eine Mauseingabe zu fangen: WeeChat wartet zuerst diese Verzögerung ab bevor das Kommando verarbeitet wird]
+** Typ: integer
+** Werte: 1 .. 10000
+** Standardwert: `+100+`
+
+* [[option_weechat.look.nick_color_force]] *weechat.look.nick_color_force*
+** Beschreibung: pass:none[erzwingt für einen Nick eine spezielle Farbe. Die standardmäßig, mittels Streuwertfunktion aus dem Nicknamen, generierte Farbe findet für diese Nicks keine Anwendung (Format:"Nick1:Farbe1;Nick2:Farbe2"). Zuerst wird beim Namen des Nick nach Groß- und Kleinschreibung unterschieden. Sollte der Nick nicht gefunden werden findet keine Unterscheidung mehr statt. Somit ist es möglich die Nicks, für diese Einstellung, ausschließlich in Kleinschrift aufzuführen; die Farbauswahl kann auch eine Hintergrundfarbe beinhalten "Textfarbe,Hintergrundfarbe", zum Beispiel "yellow,red"]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+""+`
+
+* [[option_weechat.look.nick_color_hash]] *weechat.look.nick_color_hash*
+** Beschreibung: pass:none[Gibt an welcher Hash-Algorithmus zur Farbauswahl für Nicks genutzt werden soll: djb2 = Variante des djb2 (Position der Buchstaben innerhalb des Nicks werden berücksichtigt: Anagramme eines Nick erhalten eine andere Farbe), djb2_32 = Variante von djb2 wobei 32-Bit anstelle von 64-Bit Integer genutzt wird, sum = hier ist nur die Anzahl der Buchstaben maßgeblich, sum_32 = wie sum, nur das 32-Bit anstelle von 64-Bit Integer genutzt wird]
+** Typ: integer
+** Werte: djb2, sum, djb2_32, sum_32
+** Standardwert: `+djb2+`
+
+* [[option_weechat.look.nick_color_hash_salt]] *weechat.look.nick_color_hash_salt*
+** Beschreibung: pass:none[salt für den Hash-Algorithmus, der zum Auffinden von Nickfarben verwendet wird (der Nickname wird an diesen Salt angehängt und der Hash-Algorithmus verarbeitet diesen String); Wenn Sie dies ändern, werden die Nickfarben gemischt]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+""+`
+
+* [[option_weechat.look.nick_color_stop_chars]] *weechat.look.nick_color_stop_chars*
+** Beschreibung: pass:none[Zeichen die genutzt werden sollen damit bei der Generierung der Farbe für einen Nicknamen abgebrochen wird. Es muss mindestens ein Zeichen im Nicknamen enthalten sein der nicht in dieser Liste aufgeführt wird, damit eine Farbe für den Nicknamen erstellt werden kann (Beispiel: Der Nickname lautet "|nick|abwesend" wobei das Zeichen "|" ignoriert werden soll. Die Farbe für den Nicknamen wird nun für "|nick" anstelle von "|nick|abwesend" erstellt); diese Option hat einen Einfluss auf die Option weechat.look.nick_color_force, dort aufgeführte Nicks sollten keine Zeichen haben, die von dieser Option ignoriert werden]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+"_|["+`
+
+* [[option_weechat.look.nick_prefix]] *weechat.look.nick_prefix*
+** Beschreibung: pass:none[Text, der vor dem Nick dargestellt werden soll, Beispiel: "<"]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+""+`
+
+* [[option_weechat.look.nick_suffix]] *weechat.look.nick_suffix*
+** Beschreibung: pass:none[Text, der nach dem Nick dargestellt werden soll, Beispiel: ">"]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+""+`
+
+* [[option_weechat.look.paste_auto_add_newline]] *weechat.look.paste_auto_add_newline*
+** Beschreibung: pass:none[fügt automatisch einen Zeilenumbruch nach dem Einfügen eines Textes hinzu, sofern mindestens zwei Zeilen eingefügt wurden und nach einer Bestätigung gefragt wurde]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+on+`
+
+* [[option_weechat.look.paste_bracketed]] *weechat.look.paste_bracketed*
+** Beschreibung: pass:none[aktiviert den "bracketed paste mode" des Terminals (wird nicht durch alle Terminals/Multiplexer unterstützt): Dieser Modus erlaubt das Einfügen von Steuersequenzen die in Klammern gesetzt sind. WeeChat kann dadurch ermitteln ob ein Text eingefügt oder geschrieben wurde ("ESC[200~", gefolgt von dem einzufügenden Text und einem abschließenden "ESC[201~")]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+on+`
+
+* [[option_weechat.look.paste_bracketed_timer_delay]] *weechat.look.paste_bracketed_timer_delay*
+** Beschreibung: pass:none[erzwingt beim Einfügen von Steuersequenzen, nach einer vorgegeben Zeit (in Sekunden), dessen Ende, sofern die Steuersequenz zum Beenden ("ESC[201~") nicht innerhalb dieser Zeitvorgabe empfangen wurde]
+** Typ: integer
+** Werte: 1 .. 60
** Standardwert: `+10+`
-* [[option_fset.look.show_plugins_desc]] *fset.look.show_plugins_desc*
-** Beschreibung: pass:none[zeigt die zusätzlichen Optionen von Erweiterung an, die für die Beschreibung zuständig sind (plugins.desc.*)]
+* [[option_weechat.look.paste_max_lines]] *weechat.look.paste_max_lines*
+** Beschreibung: pass:none[maximale Anzahl an Zeilen die, ohne Rückfrage, eingefügt werden sollen (-1 = deaktiviert die Funktion); diese Option wird nur genutzt wenn das Bar-Item "input_paste" in mindestens einer Bar genutzt wird (Standardmäßig wird es in der "input" Bar verwendet)]
+** Typ: integer
+** Werte: -1 .. 2147483647
+** Standardwert: `+1+`
+
+* [[option_weechat.look.prefix_action]] *weechat.look.prefix_action*
+** Beschreibung: pass:none[Präfix, dass bei einer Action-Nachricht genutzt wird (Hinweis: Inhalt wird evaluiert, somit kann mittels des Formats "${color:xxx} Farben gesetzt werden, siehe /help eval)]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+" *"+`
+
+* [[option_weechat.look.prefix_align]] *weechat.look.prefix_align*
+** Beschreibung: pass:none[Einstellung für Präfix (keine = none, links = left, rechts = right (Voreinstellung))]
+** Typ: integer
+** Werte: none, left, right
+** Standardwert: `+right+`
+
+* [[option_weechat.look.prefix_align_max]] *weechat.look.prefix_align_max*
+** Beschreibung: pass:none[maximale Größe des Präfix (0 = keine Limitierung)]
+** Typ: integer
+** Werte: 0 .. 128
+** Standardwert: `+0+`
+
+* [[option_weechat.look.prefix_align_min]] *weechat.look.prefix_align_min*
+** Beschreibung: pass:none[minimale Größe des Präfix]
+** Typ: integer
+** Werte: 0 .. 128
+** Standardwert: `+0+`
+
+* [[option_weechat.look.prefix_align_more]] *weechat.look.prefix_align_more*
+** Beschreibung: pass:none[Zeichen welches dargestellt werden soll, falls der Nickname abgeschnitten wird (es darf nur ein Zeichen genutzt werden)]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+"+"+`
+
+* [[option_weechat.look.prefix_align_more_after]] *weechat.look.prefix_align_more_after*
+** Beschreibung: pass:none[Das Zeichen welches zum Verkürzen angezeigt wird (Standardzeichen: "+"), nach dem Nick-Suffix darstellen (das vorhandene Leerzeichen wird ersetzt); wird diese Funktion deaktiviert, dann wird das Zeichen nach dem Nick dargestellt]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+on+`
+
+* [[option_weechat.look.prefix_buffer_align]] *weechat.look.prefix_buffer_align*
+** Beschreibung: pass:none[Einstellung des Präfix für den Namen des Buffers, falls viele Buffer zu einem Buffer zusammengefügt wurden (keine = none, links = left, rechts = right (Standardwert))]
+** Typ: integer
+** Werte: none, left, right
+** Standardwert: `+right+`
+
+* [[option_weechat.look.prefix_buffer_align_max]] *weechat.look.prefix_buffer_align_max*
+** Beschreibung: pass:none[maximale Größe für den Namen des Buffers, falls mehrere Buffer zusammengefügt worden sind (0 = keine Größenbegrenzung)]
+** Typ: integer
+** Werte: 0 .. 128
+** Standardwert: `+0+`
+
+* [[option_weechat.look.prefix_buffer_align_more]] *weechat.look.prefix_buffer_align_more*
+** Beschreibung: pass:none[Zeichen welches dargestellt werden soll falls der Name des Buffers abgeschnitten wird (wenn mehrere Buffer zusammengefügt wurden und diese somit die selbe Nummer besitzen) (es darf nur ein Zeichen genutzt werden)]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+"+"+`
+
+* [[option_weechat.look.prefix_buffer_align_more_after]] *weechat.look.prefix_buffer_align_more_after*
+** Beschreibung: pass:none[Das Zeichen welches zum Verkürzen angezeigt wird (Standardzeichen: "+"), nach dem Nick-Suffix darstellen (das vorhandene Leerzeichen wird ersetzt); wird diese Funktion deaktiviert, dann wird das Zeichen nach dem Nick dargestellt]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+on+`
+
+* [[option_weechat.look.prefix_error]] *weechat.look.prefix_error*
+** Beschreibung: pass:none[Präfix, dass bei einer Fehlernachricht genutzt wird (Hinweis: Inhalt wird evaluiert, somit kann mittels des Formats "${color:xxx} Farben gesetzt werden, siehe /help eval)]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+"=!="+`
+
+* [[option_weechat.look.prefix_join]] *weechat.look.prefix_join*
+** Beschreibung: pass:none[Präfix, dass bei einer Join-Nachricht genutzt wird (Hinweis: Inhalt wird evaluiert, somit kann mittels des Formats "${color:xxx} Farben gesetzt werden, siehe /help eval)]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+"-->"+`
+
+* [[option_weechat.look.prefix_network]] *weechat.look.prefix_network*
+** Beschreibung: pass:none[Präfix, dass bei einer Netzwerknachricht genutzt wird (Hinweis: Inhalt wird evaluiert, somit kann mittels des Formats "${color:xxx} Farben gesetzt werden, siehe /help eval)]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+"--"+`
+
+* [[option_weechat.look.prefix_quit]] *weechat.look.prefix_quit*
+** Beschreibung: pass:none[Präfix, dass bei einer Quit-Nachricht genutzt wird (Hinweis: Inhalt wird evaluiert, somit kann mittels des Formats "${color:xxx} Farben gesetzt werden, siehe /help eval)]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+"<--"+`
+
+* [[option_weechat.look.prefix_same_nick]] *weechat.look.prefix_same_nick*
+** Beschreibung: pass:none[setzt ein Präfix welches anstelle des Nicks der Nachricht vorangestellt wird, sofern die vorherige aber nicht die nachfolgende Nachricht von dem selben Nick geschrieben wurde. Wird ein Leerzeichen (" ") genutzt, dann wird der Nachricht kein Präfix vorangestellt. Um diese Funktion zu deaktivieren und den Nick als Präfix zu nutzen, einfach keine Zeichenkette angeben]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+""+`
+
+* [[option_weechat.look.prefix_same_nick_middle]] *weechat.look.prefix_same_nick_middle*
+** Beschreibung: pass:none[setzt ein Präfix welches anstelle des Nicks der Nachricht vorangestellt wird, sofern die vorherige und die nachfolgende Nachricht von dem selben Nick geschrieben wurde. Wird ein Leerzeichen (" ") genutzt, dann wird der Nachricht kein Präfix vorangestellt. Um diese Funktion zu deaktivieren und den Nick als Präfix zu nutzen, einfach keine Zeichenkette angeben]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+""+`
+
+* [[option_weechat.look.prefix_suffix]] *weechat.look.prefix_suffix*
+** Beschreibung: pass:none[Nach dem Präfix anzufügende Zeichenfolge]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+"|"+`
+
+* [[option_weechat.look.quote_nick_prefix]] *weechat.look.quote_nick_prefix*
+** Beschreibung: pass:none[Text der vor dem Nick dargestellt werden soll, wenn die Nachricht gequotet wird (siehe /help cursor)]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+"<"+`
+
+* [[option_weechat.look.quote_nick_suffix]] *weechat.look.quote_nick_suffix*
+** Beschreibung: pass:none[Text der nach dem Nick dargestellt werden soll, wenn die Nachricht gequotet wird (siehe /help cursor)]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+">"+`
+
+* [[option_weechat.look.quote_time_format]] *weechat.look.quote_time_format*
+** Beschreibung: pass:none[Zeitformat wenn eine Nachricht gequotet wird (siehe /help cursor)]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+"%H:%M:%S"+`
+
+* [[option_weechat.look.read_marker]] *weechat.look.read_marker*
+** Beschreibung: pass:none[nutzt eine Linie oder ein Zeichen, als Lesezeichen, um die erste ungelesene Nachricht in einem Buffer hervorzuheben]
+** Typ: integer
+** Werte: none, line, char
+** Standardwert: `+line+`
+
+* [[option_weechat.look.read_marker_always_show]] *weechat.look.read_marker_always_show*
+** Beschreibung: pass:none[ist diese Einstellung gesetzt wird das Lesezeichen immer im Buffer dargestellt, auch wenn noch keine neue Nachricht geschrieben wurde]
** Typ: boolesch
** Werte: on, off
** Standardwert: `+off+`
-* [[option_fset.look.sort]] *fset.look.sort*
-** Beschreibung: pass:none[durch Kommata getrennte Liste von Feldern um die Optionen zu sortieren (siehe /help fset um eine Auflistung der Felder zu erhalten); wird das "-" Zeichen vor einem Feld angewendet, wird die Ausgabe umgekehrt, um bei einem Vergleich nicht zwischen Groß- und Kleinschreibung zu unterscheiden wird das Zeichen "~" verwendet; Beispiel: "-~name" sortiert die Optionsnamen in umgekehrter Reihenfolge und es wird dabei nicht zwischen Groß-und Kleinschreibung unterschieden]
+* [[option_weechat.look.read_marker_string]] *weechat.look.read_marker_string*
+** Beschreibung: pass:none[Zeichen, das als Lesezeichen genutzt werden soll (das Zeichen wird bis zum Ende der Zeile wiederholt)]
** Typ: Zeichenkette
** Werte: beliebige Zeichenkette
-** Standardwert: `+"~name"+`
+** Standardwert: `+"- "+`
-* [[option_fset.look.unmarked_string]] *fset.look.unmarked_string*
-** Beschreibung: pass:none[Zeichen welches angezeigt wird sofern eine Option nicht markiert ist]
+* [[option_weechat.look.read_marker_update_on_buffer_switch]] *weechat.look.read_marker_update_on_buffer_switch*
+** Beschreibung: pass:none[Aktualisiert das Lesezeichen, wenn der Buffer gewechselt wird]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+on+`
+
+* [[option_weechat.look.save_config_on_exit]] *weechat.look.save_config_on_exit*
+** Beschreibung: pass:none[die aktuelle Konfiguration wird beim Beenden automatisch gesichert]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+on+`
+
+* [[option_weechat.look.save_config_with_fsync]] *weechat.look.save_config_with_fsync*
+** Beschreibung: pass:none[es wird fsync verwendet um die Konfigurationsdateien mit dem Datenträger zu synchronisieren (siehe man fsync); dies verlangsamt das Sichern der Daten, soll aber zum Beispiel bei einem Stromausfall dafür sorgen, dass keine Daten verloren gehen]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+off+`
+
+* [[option_weechat.look.save_layout_on_exit]] *weechat.look.save_layout_on_exit*
+** Beschreibung: pass:none[beim Beenden wird das aktuelle Layout gesichert (Buffer, Fenster oder beides)]
+** Typ: integer
+** Werte: none, buffers, windows, all
+** Standardwert: `+none+`
+
+* [[option_weechat.look.scroll_amount]] *weechat.look.scroll_amount*
+** Beschreibung: pass:none[Anzahl der zu scrollenden Zeilen wenn seitenweise geblättert wird (Bild hoch/runter)]
+** Typ: integer
+** Werte: 1 .. 2147483647
+** Standardwert: `+3+`
+
+* [[option_weechat.look.scroll_bottom_after_switch]] *weechat.look.scroll_bottom_after_switch*
+** Beschreibung: pass:none[scrollt zum unteren Ende des Fensters nachdem zu einem anderen Buffer gewechselt wurde (die aktuelle Position wird dabei nicht gesichert); diese Funktion hat nur einen Einfluss auf Buffer mit einem formatierten Inhalt und nicht auf Buffer mit einem freien Inhalt]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+off+`
+
+* [[option_weechat.look.scroll_page_percent]] *weechat.look.scroll_page_percent*
+** Beschreibung: pass:none[Angabe in Prozent, die die Seite hoch oder runter gescrollt werden soll (Beispiel: 100 für eine ganze Seite, 50 für eine halbe Seite)]
+** Typ: integer
+** Werte: 1 .. 100
+** Standardwert: `+100+`
+
+* [[option_weechat.look.search_text_not_found_alert]] *weechat.look.search_text_not_found_alert*
+** Beschreibung: pass:none[Informiert den Anwender falls der gesuchte Text nicht im Buffer gefunden wurde]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+on+`
+
+* [[option_weechat.look.separator_horizontal]] *weechat.look.separator_horizontal*
+** Beschreibung: pass:none[das angegebene Zeichen wird verwendet um die horizontalen Linien zu zeichnen. Wird kein Zeichen angegeben, dann zeichnet ncurses eine durchgängige Linie. Dies kann allerdings bei einigen Terminals zu Problemen führen, falls die URL Auswahl genutzt wird. Die Schriftbreite muss exakt ein Zeichen betragen]
** Typ: Zeichenkette
** Werte: beliebige Zeichenkette
-** Standardwert: `+" "+`
+** Standardwert: `+"-"+`
-* [[option_fset.look.use_color_value]] *fset.look.use_color_value*
-** Beschreibung: pass:none[Farbe die genutzt wird um Werte für Farboptionen darzustellen]
+* [[option_weechat.look.separator_vertical]] *weechat.look.separator_vertical*
+** Beschreibung: pass:none[das angegebene Zeichen wird verwendet um die vertikale Linien zu zeichnen. Wird kein Zeichen angegeben, dann zeichnet ncurses eine durchgängige Linie. Die Schriftbreite muss exakt ein Zeichen betragen]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+""+`
+
+* [[option_weechat.look.tab_width]] *weechat.look.tab_width*
+** Beschreibung: pass:none[Anzahl an Leerzeichen um Tabulatoren in Nachrichten darzustellen]
+** Typ: integer
+** Werte: 1 .. 64
+** Standardwert: `+1+`
+
+* [[option_weechat.look.time_format]] *weechat.look.time_format*
+** Beschreibung: pass:none[Format für das Datum, wenn dieses in eine Zeichenkette umgewandelt und in Nachrichten dargestellt wird (siehe man strftime, welche Platzhalter für das Datum und die Uhrzeit verwendet werden)]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+"%a, %d %b %Y %T"+`
+
+* [[option_weechat.look.window_auto_zoom]] *weechat.look.window_auto_zoom*
+** Beschreibung: pass:none[automatischer Zoom für aktuelles Fenster, sobald das Terminalfenster zu klein wird um alle Fenster darstellen zu können (mit der Tastenkombination alt-z kann der Zoom rückgängig gemacht werden, sobald das Terminal wieder groß genug ist)]
** Typ: boolesch
** Werte: on, off
** Standardwert: `+off+`
-* [[option_fset.look.use_keys]] *fset.look.use_keys*
-** Beschreibung: pass:none[nutzt die alt+X Tasten im fset Buffer um Aktionen durchzuführen; wenn deaktiviert sind nur Eingaben in der Eingabezeile erlaubt]
+* [[option_weechat.look.window_separator_horizontal]] *weechat.look.window_separator_horizontal*
+** Beschreibung: pass:none[ist die Einstellung aktiviert dann wird eine horizontale Trennlinie zwischen Fenstern gezeichnet]
** Typ: boolesch
** Werte: on, off
** Standardwert: `+on+`
-* [[option_fset.look.use_mute]] *fset.look.use_mute*
-** Beschreibung: pass:none[nutzt /mute Befehl wenn eine Option geändert wird]
+* [[option_weechat.look.window_separator_vertical]] *weechat.look.window_separator_vertical*
+** Beschreibung: pass:none[ist die Einstellung aktiviert dann wird eine vertikale Trennlinie zwischen Fenstern gezeichnet]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+on+`
+
+* [[option_weechat.look.window_title]] *weechat.look.window_title*
+** Beschreibung: pass:none[Fenstertitel für Fenster (Terminal in dem Curses GUI läuft), wird beim Programmstart gesetzt; ein leerer Eintrag belässt den original Fenstertitel (Hinweis: Inhalt wird evaluiert, siehe /help eval); Beispiel: "WeeChat ${info:version}"]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+""+`
+
+* [[option_weechat.look.word_chars_highlight]] *weechat.look.word_chars_highlight*
+** Beschreibung: pass:none[durch Kommata getrennte Liste von Zeichen (oder eine Auswahl von Zeichen) bei denen bei einem Highlight keine Worttrennung erfolgt; jeder Eintrag kann ein einzelnes Zeichen oder eine Auswahl von Zeichen sein (Format: a-z), eine Auswahl von Breitzeichen (wide character; zum Beispiel "alnum", siehe man wctype); beginnt das Item mit einem "!" wird die Auswahl umgekehrt (bedeutet, das Zeichen ist NICHT Bestandteil eines Wortes); das Zeichen "*" wird als Platzhalter verwendet; Unicode Zeichen müssen folgendes Format nutzen \u1234, zum Beispiel \u00A0 für geschütztes Leerzeichen (siehe /help print für unterstützte Formate)]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+"!\u00A0,-,_,|,alnum"+`
+
+* [[option_weechat.look.word_chars_input]] *weechat.look.word_chars_input*
+** Beschreibung: pass:none[durch Kommata getrennte Liste von Zeichen (oder eine Auswahl von Zeichen) bei denen in der Eingabezeile keine Worttrennung erfolgt; jeder Eintrag kann ein einzelnes Zeichen oder eine Auswahl von Zeichen sein (Format: a-z), eine Auswahl von Breitzeichen (wide character; zum Beispiel "alnum", siehe man wctype); beginnt das Item mit einem "!" wird die Auswahl umgekehrt (bedeutet, das Zeichen ist NICHT Bestandteil eines Wortes); das Zeichen "*" wird als Platzhalter verwendet; Unicode Zeichen müssen folgendes Format nutzen \u1234, zum Beispiel \u00A0 für geschütztes Leerzeichen (siehe /help print für unterstützte Formate)]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+"!\u00A0,-,_,|,alnum"+`
+
+* [[option_weechat.network.connection_timeout]] *weechat.network.connection_timeout*
+** Beschreibung: pass:none[Zeitüberschreitung (in Sekunden) für eine Verbindung zu einem entfernten Rechner (mittels einem Kindprozess)]
+** Typ: integer
+** Werte: 1 .. 2147483647
+** Standardwert: `+60+`
+
+* [[option_weechat.network.gnutls_ca_system]] *weechat.network.gnutls_ca_system*
+** Beschreibung: pass:none[lädt die standardmäßigen vertrauenswürdigen Zertifizierungsstellen des Systems beim Start; Dies kann deaktiviert werden, um Speicherplatz zu sparen, falls keine SSL-Verbindungen verwendet werden]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+on+`
+
+* [[option_weechat.network.gnutls_ca_user]] *weechat.network.gnutls_ca_user*
+** Beschreibung: pass:none[zusätzliche Datei(en) bei den Zertifizierungsstellen; mehrere Dateien müssen durch Doppelpunkte getrennt werden (jeder Pfad ist evaluiert, siehe Funktion string_eval_path_home in der Plugin-API-Referenz)]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+""+`
+
+* [[option_weechat.network.gnutls_handshake_timeout]] *weechat.network.gnutls_handshake_timeout*
+** Beschreibung: pass:none[Zeitüberschreitung für gnutls Handshake (in Sekunden)]
+** Typ: integer
+** Werte: 1 .. 2147483647
+** Standardwert: `+30+`
+
+* [[option_weechat.network.proxy_curl]] *weechat.network.proxy_curl*
+** Beschreibung: pass:none[Name des Proxy welcher für URL Downloads mittels Curl genutzt werden soll (wird verwendet um das Inhaltsverzeichnis für Skript-Erweiterung herunterzuladen oder in Skripten, welche die Funktion hook_process nutzen); der Proxy muss mit dem Befehl /proxy eingerichtet werden]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+""+`
+
+* [[option_weechat.plugin.autoload]] *weechat.plugin.autoload*
+** Beschreibung: pass:none[durch Kommata getrennte Liste der Erweiterungen, die beim Programmstart automatisch geladen werden sollen; "*" lädt alle vorhandenen Erweiterungen. Beginnt der Name hingegen mit "!" wird die Erweiterung nicht geladen. Im Namen der Erweiterung kann der Platzhalter "*" verwendet werden (Beispiele: "*" oder "*,!lua,!tcl")]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+"*"+`
+
+* [[option_weechat.plugin.extension]] *weechat.plugin.extension*
+** Beschreibung: pass:none[durch Kommata getrennte Liste von Dateinamenserweiterungen, welche für die Erweiterungen genutzt werden sollen]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+".so,.dll"+`
+
+* [[option_weechat.plugin.path]] *weechat.plugin.path*
+** Beschreibung: pass:none[Pfad für die Suche nach Erweiterungen (Pfad ist evaluiert, siehe Funktion string_eval_path_home in der Plugin-API-Referenz)]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+"${weechat_data_dir}/plugins"+`
+
+* [[option_weechat.plugin.save_config_on_unload]] *weechat.plugin.save_config_on_unload*
+** Beschreibung: pass:none[speichert Konfigurationen, falls Erweiterungen beendet werden]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+on+`
+
+* [[option_weechat.signal.sighup]] *weechat.signal.sighup*
+** Beschreibung: pass:none[Befehl welcher ausgeführt werden soll, wenn das Signal empfangen wird. Mehrere Befehle können durch Semikolons getrennt werden (Hinweis: Inhalt wird ausgewertet, siehe / help eval)]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+"${if:${info:weechat_headless}?/reload:/quit -yes}"+`
+
+* [[option_weechat.signal.sigquit]] *weechat.signal.sigquit*
+** Beschreibung: pass:none[Befehl welcher ausgeführt werden soll, wenn das Signal empfangen wird. Mehrere Befehle können durch Semikolons getrennt werden (Hinweis: Inhalt wird ausgewertet, siehe / help eval)]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+"/quit -yes"+`
+
+* [[option_weechat.signal.sigterm]] *weechat.signal.sigterm*
+** Beschreibung: pass:none[Befehl welcher ausgeführt werden soll, wenn das Signal empfangen wird. Mehrere Befehle können durch Semikolons getrennt werden (Hinweis: Inhalt wird ausgewertet, siehe / help eval)]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+"/quit -yes"+`
+
+* [[option_weechat.signal.sigusr1]] *weechat.signal.sigusr1*
+** Beschreibung: pass:none[Befehl welcher ausgeführt werden soll, wenn das Signal empfangen wird. Mehrere Befehle können durch Semikolons getrennt werden (Hinweis: Inhalt wird ausgewertet, siehe / help eval)]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+""+`
+
+* [[option_weechat.signal.sigusr2]] *weechat.signal.sigusr2*
+** Beschreibung: pass:none[Befehl welcher ausgeführt werden soll, wenn das Signal empfangen wird. Mehrere Befehle können durch Semikolons getrennt werden (Hinweis: Inhalt wird ausgewertet, siehe / help eval)]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+""+`
+
+* [[option_weechat.startup.command_after_plugins]] *weechat.startup.command_after_plugins*
+** Beschreibung: pass:none[Befehl wird ausgeführt, wenn WeeChat gestartet wird, nachdem die Erweiterungen geladen wurden. Mehrere Befehle können durch Semikolons getrennt werden (Hinweis: Inhalt wird ausgewertet, siehe / help eval)]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+""+`
+
+* [[option_weechat.startup.command_before_plugins]] *weechat.startup.command_before_plugins*
+** Beschreibung: pass:none[Befehl wird ausgeführt, wenn WeeChat gestartet wird, bevor Erweiterungen geladen werden. Mehrere Befehle können durch Semikolons getrennt werden (Hinweis: Inhalt wird ausgewertet, siehe / help eval)]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+""+`
+
+* [[option_weechat.startup.display_logo]] *weechat.startup.display_logo*
+** Beschreibung: pass:none[WeeChat-Logo beim Start anzeigen]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+on+`
+
+* [[option_weechat.startup.display_version]] *weechat.startup.display_version*
+** Beschreibung: pass:none[WeeChat-Version beim Start anzeigen]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+on+`
+
+* [[option_weechat.startup.sys_rlimit]] *weechat.startup.sys_rlimit*
+** Beschreibung: pass:none[setzt Ressourcenbeschränkungen für den WeeChat Prozess. (Format: "res1:limit1,res2:limit2"; Ressourcenname ist das Ende der Konstanten (RLIMIT_XXX) in Kleinbuchstaben (siehe man setrlimit für Werte); limit -1 bedeutet "unbegrenzt"; Beispiele: für die Core-Datei wird eine unbegrenzte Dateigröße bestimmt und die virtuelle Speicherkapazität auf maximal 1GB festgelegt: "core:-1,as:1000000000"]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+""+`
+// end::weechat_options[]
+
+// tag::xfer_options[]
+* [[option_xfer.color.status_aborted]] *xfer.color.status_aborted*
+** Beschreibung: pass:none[Textfarbe für Status: "abgebrochen"]
+** Typ: Farbe
+** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
+** Standardwert: `+lightred+`
+
+* [[option_xfer.color.status_active]] *xfer.color.status_active*
+** Beschreibung: pass:none[Textfarbe für Status: "aktiv"]
+** Typ: Farbe
+** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
+** Standardwert: `+lightblue+`
+
+* [[option_xfer.color.status_connecting]] *xfer.color.status_connecting*
+** Beschreibung: pass:none[Textfarbe für Status: "verbinde"]
+** Typ: Farbe
+** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
+** Standardwert: `+yellow+`
+
+* [[option_xfer.color.status_done]] *xfer.color.status_done*
+** Beschreibung: pass:none[Textfarbe für Status: "fertig"]
+** Typ: Farbe
+** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
+** Standardwert: `+lightgreen+`
+
+* [[option_xfer.color.status_failed]] *xfer.color.status_failed*
+** Beschreibung: pass:none[Textfarbe für Status: "fehlgeschlagen"]
+** Typ: Farbe
+** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
+** Standardwert: `+lightred+`
+
+* [[option_xfer.color.status_waiting]] *xfer.color.status_waiting*
+** Beschreibung: pass:none[Textfarbe für Status: "wartend"]
+** Typ: Farbe
+** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
+** Standardwert: `+lightcyan+`
+
+* [[option_xfer.color.text]] *xfer.color.text*
+** Beschreibung: pass:none[Textfarbe in xfer Buffer]
+** Typ: Farbe
+** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
+** Standardwert: `+default+`
+
+* [[option_xfer.color.text_bg]] *xfer.color.text_bg*
+** Beschreibung: pass:none[Hintergrundfarbe des xfer Buffer]
+** Typ: Farbe
+** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
+** Standardwert: `+default+`
+
+* [[option_xfer.color.text_selected]] *xfer.color.text_selected*
+** Beschreibung: pass:none[Textfarbe für selektierte Zeile in xfer Buffer]
+** Typ: Farbe
+** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "%" für blinken, "." für "dimmen" (half hell), "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen
+** Standardwert: `+white+`
+
+* [[option_xfer.file.auto_accept_chats]] *xfer.file.auto_accept_chats*
+** Beschreibung: pass:none[eine Chat-Anfrage wird automatisch akzeptiert (Vorsicht!)]
** Typ: boolesch
** Werte: on, off
** Standardwert: `+off+`
-// end::fset_options[]
+
+* [[option_xfer.file.auto_accept_files]] *xfer.file.auto_accept_files*
+** Beschreibung: pass:none[eine Datenübertragung wird automatisch angenommen (Vorsicht!)]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+off+`
+
+* [[option_xfer.file.auto_accept_nicks]] *xfer.file.auto_accept_nicks*
+** Beschreibung: pass:none[durch Kommata getrennte Liste von Nicks deren Chat- und Transferanfragen automatisch akzeptiert werden. Format : "server.nick" (für einen speziellen Server) oder "nick" (global, für alle Server); Beispiel: "libera.FlashCode,andrew"]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+""+`
+
+* [[option_xfer.file.auto_check_crc32]] *xfer.file.auto_check_crc32*
+** Beschreibung: pass:none[automatische Überprüfung der CRC32 Prüfsumme, sofern eine Prüfsumme im Dateinamen angegeben wird (mittels acht hexadezimalen Zeichen)]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+off+`
+
+* [[option_xfer.file.auto_rename]] *xfer.file.auto_rename*
+** Beschreibung: pass:none[eingehende Dateien werden automatisch umbenannt um ein Überschreiben zu vermeiden (dabei wird dem Dateinamen '.1', '.2', ... hinzugefügt)]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+on+`
+
+* [[option_xfer.file.auto_resume]] *xfer.file.auto_resume*
+** Beschreibung: pass:none[falls eine Verbindung getrennt wurde, dann wird eine abgebrochene Übertragungen automatisch fortsetzt]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+on+`
+
+* [[option_xfer.file.convert_spaces]] *xfer.file.convert_spaces*
+** Beschreibung: pass:none[beim Versenden und Empfangen von Dateien werden Leerzeichen im Dateinamen durch einen Unterstrich ersetzt]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+on+`
+
+* [[option_xfer.file.download_path]] *xfer.file.download_path*
+** Beschreibung: pass:none[Pfad zum Schreiben eingehender Dateien (Pfad ist evaluiert, siehe Funktion string_eval_path_home in der Plugin-API-Referenz)]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+"${weechat_data_dir}/xfer"+`
+
+* [[option_xfer.file.download_temporary_suffix]] *xfer.file.download_temporary_suffix*
+** Beschreibung: pass:none[Dateiendung der temporären Datei, die während eines eingehenden Datei-Transfers genutzt wird und die gelöscht wird, sobald die Übertragung erfolgreich beendet wurde; wenn -leer-, dann wird keine temporäre Dateiendung während des Transfers genutzt]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+".part"+`
+
+* [[option_xfer.file.upload_path]] *xfer.file.upload_path*
+** Beschreibung: pass:none[Pfad zum Lesen von Dateien beim Senden (Pfad ist evaluiert, siehe Funktion string_eval_path_home in der Plugin-API-Referenz)]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+"~"+`
+
+* [[option_xfer.file.use_nick_in_filename]] *xfer.file.use_nick_in_filename*
+** Beschreibung: pass:none[beim Empfang von Dateien wird der Nickname des Versenders dem Dateinamen vorangestellt]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+on+`
+
+* [[option_xfer.look.auto_open_buffer]] *xfer.look.auto_open_buffer*
+** Beschreibung: pass:none[öffnet automatisch den Buffer für Übertragungen, falls eine neue Übertragung hinzugefügt wird]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+on+`
+
+* [[option_xfer.look.progress_bar_size]] *xfer.look.progress_bar_size*
+** Beschreibung: pass:none[Größe des Fortschrittsbalkens, in Zeichen (0, falls Fortschrittsbalken deaktiviert sein soll)]
+** Typ: integer
+** Werte: 0 .. 256
+** Standardwert: `+20+`
+
+* [[option_xfer.look.pv_tags]] *xfer.look.pv_tags*
+** Beschreibung: pass:none[durch Kommata getrennte Liste von Schlagwörtern die für private Nachrichten genutzt werden sollen. Zum Beispiel: "notify_message", "notify_private" oder "notify_highlight"]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+"notify_private"+`
+
+* [[option_xfer.network.blocksize]] *xfer.network.blocksize*
+** Beschreibung: pass:none[Blockgröße für versendete Pakete (in Bytes)]
+** Typ: integer
+** Werte: 1024 .. 102400
+** Standardwert: `+65536+`
+
+* [[option_xfer.network.fast_send]] *xfer.network.fast_send*
+** Beschreibung: pass:none[beim Versenden von Daten wird nicht auf ein Bestätigungssignal (ACK) gewartet]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+on+`
+
+* [[option_xfer.network.own_ip]] *xfer.network.own_ip*
+** Beschreibung: pass:none[IP- oder DNS-Adresse für ausgehenden Datentransfer/Chat (falls kein Wert angegeben ist, wird die IP des lokalen Interfaces benutzt)]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+""+`
+
+* [[option_xfer.network.port_range]] *xfer.network.port_range*
+** Beschreibung: pass:none[schränkt den ausgehenden Datenversand/Chats auf die ausschließliche Nutzung von Ports in einem vorgegebenen Bereich ein (hilfreich bei NAT) (Syntax: ein einzelner Port, z.B. 5000 oder ein Port-Bereich, z.B. 5000-5015. Ohne Angabe eines Wertes wird ein beliebiger Port genutzt. Es wird empfohlen nur Ports zu nutzen die über 1024 liegen. Denn nur der User "root" kann auf den Port-Bereich unter 1024 zugreifen)]
+** Typ: Zeichenkette
+** Werte: beliebige Zeichenkette
+** Standardwert: `+""+`
+
+* [[option_xfer.network.send_ack]] *xfer.network.send_ack*
+** Beschreibung: pass:none[sendet ACK-Nachrichten wenn Dateien empfangen wurden; wenn deaktiviert kann der Transfer einfrieren, wenn der Absender auf eine ACK-Nachrichtet wartet (zum Beispiel wenn WeeChat eine Datei sendet und die Option xfer.network.fast_send aktiviert ist); andererseits kann die Deaktivierung ein Einfrieren verhindern da die ACK-Nachricht nicht umgehend an den Sender verschickt wird]
+** Typ: boolesch
+** Werte: on, off
+** Standardwert: `+on+`
+
+* [[option_xfer.network.speed_limit_recv]] *xfer.network.speed_limit_recv*
+** Beschreibung: pass:none[Begrenzt die Übertragungsgeschwindigkeit beim Empfang, in Kilobytes pro Sekunde (0 = keine Begrenzung)]
+** Typ: integer
+** Werte: 0 .. 2147483647
+** Standardwert: `+0+`
+
+* [[option_xfer.network.speed_limit_send]] *xfer.network.speed_limit_send*
+** Beschreibung: pass:none[Begrenzt die Übertragungsgeschwindigkeit beim Versenden, in Kilobytes pro Sekunde (0 = keine Begrenzung)]
+** Typ: integer
+** Werte: 0 .. 2147483647
+** Standardwert: `+0+`
+
+* [[option_xfer.network.timeout]] *xfer.network.timeout*
+** Beschreibung: pass:none[Zeitüberschreitung bei Transferanfrage (in Sekunden)]
+** Typ: integer
+** Werte: 5 .. 2147483647
+** Standardwert: `+300+`
+// end::xfer_options[]
diff --git a/doc/en/includes/autogen_user_commands.en.adoc b/doc/en/includes/autogen_user_commands.en.adoc
index 0a5f76dc7..a17629395 100644
--- a/doc/en/includes/autogen_user_commands.en.adoc
+++ b/doc/en/includes/autogen_user_commands.en.adoc
@@ -1076,11 +1076,13 @@ target: reply should match this mask
add <alias> [<command>[;<command>...]]
addcompletion <completion> <alias> [<command>[;<command>...]]
del <alias> [<alias>...]
+ rename <alias> <new_alias>
list: list aliases (without argument, this list is displayed)
add: add an alias
addcompletion: add an alias with a custom completion
del: delete an alias
+ rename: rename an alias
completion: completion for alias: by default completion is done with target command
note: you can use %%command to use completion of an existing command
alias: name of alias
@@ -1101,6 +1103,8 @@ Examples:
/alias add split /window splith
alias /hello to say "hello" on all channels but not on #weechat:
/alias add hello /allchan -exclude=#weechat hello
+ rename alias "hello" to "Hello":
+ /alias rename hello Hello
alias /forcejoin to send IRC command "forcejoin" with completion of /sajoin:
/alias addcompletion %%sajoin forcejoin /quote forcejoin
----
diff --git a/doc/en/includes/autogen_user_default_aliases.en.adoc b/doc/en/includes/autogen_user_default_aliases.en.adoc
index 5e18080b5..930bcbb2b 100644
--- a/doc/en/includes/autogen_user_default_aliases.en.adoc
+++ b/doc/en/includes/autogen_user_default_aliases.en.adoc
@@ -8,37 +8,37 @@
|===
| Alias | Command | Completion
-| /AAWAY | /allserv /away | -
-| /ANICK | /allserv /nick | -
-| /BEEP | /print -beep | -
-| /BYE | /quit | -
-| /C | /buffer clear | -
-| /CL | /buffer clear | -
-| /CLOSE | /buffer close | -
-| /CHAT | /dcc chat | -
-| /EXIT | /quit | -
-| /IG | /ignore | -
-| /J | /join | -
-| /K | /kick | -
-| /KB | /kickban | -
-| /LEAVE | /part | -
-| /M | /msg | -
-| /MUB | /unban * | -
-| /MSGBUF | /command -buffer $1 * /input send $2- | %(buffers_plugins_names)
-| /N | /names | -
-| /Q | /query | -
-| /REDRAW | /window refresh | -
-| /SAY | /msg * | -
-| /SIGNOFF | /quit | -
-| /T | /topic | -
-| /UB | /unban | -
-| /UMODE | /mode $nick | -
-| /V | /command core version | -
-| /W | /who | -
-| /WC | /window close | -
-| /WI | /whois | -
-| /WII | /whois $1 $1 | -
-| /WM | /window merge | -
-| /WW | /whowas | -
+| /aaway | /allserv /away | -
+| /anick | /allserv /nick | -
+| /beep | /print -beep | -
+| /bye | /quit | -
+| /c | /buffer clear | -
+| /cl | /buffer clear | -
+| /close | /buffer close | -
+| /chat | /dcc chat | -
+| /exit | /quit | -
+| /ig | /ignore | -
+| /j | /join | -
+| /k | /kick | -
+| /kb | /kickban | -
+| /leave | /part | -
+| /m | /msg | -
+| /mub | /unban * | -
+| /msgbuf | /command -buffer $1 * /input send $2- | %(buffers_plugins_names)
+| /n | /names | -
+| /q | /query | -
+| /redraw | /window refresh | -
+| /say | /msg * | -
+| /signoff | /quit | -
+| /t | /topic | -
+| /ub | /unban | -
+| /umode | /mode $nick | -
+| /v | /command core version | -
+| /w | /who | -
+| /wc | /window close | -
+| /wi | /whois | -
+| /wii | /whois $1 $1 | -
+| /wm | /window merge | -
+| /ww | /whowas | -
|===
// end::default_aliases[]
diff --git a/doc/en/includes/autogen_user_options.en.adoc b/doc/en/includes/autogen_user_options.en.adoc
index d968e8e97..577255c15 100644
--- a/doc/en/includes/autogen_user_options.en.adoc
+++ b/doc/en/includes/autogen_user_options.en.adoc
@@ -3,2109 +3,725 @@
// DO NOT EDIT BY HAND!
//
-// tag::sec_options[]
-* [[option_sec.crypt.cipher]] *sec.crypt.cipher*
-** description: pass:none[cipher used to crypt data (the number after algorithm is the size of the key in bits)]
-** type: integer
-** values: aes128, aes192, aes256
-** default value: `+aes256+`
+// tag::buflist_options[]
+* [[option_buflist.format.buffer]] *buflist.format.buffer*
+** description: pass:none[format of each line with a buffer (note: content is evaluated, see /help buflist); example: standard format for bar item "buflist" and only the buffer number between square brackets for other bar items ("buflist2" and "buflist3"): "${if:${bar_item.name}==buflist?${format_number}${indent}${format_nick_prefix}${color_hotlist}${format_name}:[${number}\]}"]
+** type: string
+** values: any string
+** default value: `+"${format_number}${indent}${format_nick_prefix}${color_hotlist}${format_name}"+`
-* [[option_sec.crypt.hash_algo]] *sec.crypt.hash_algo*
-** description: pass:none[hash algorithm used to check the decrypted data]
-** type: integer
-** values: sha224, sha256, sha384, sha512
-** default value: `+sha256+`
+* [[option_buflist.format.buffer_current]] *buflist.format.buffer_current*
+** description: pass:none[format for the line with current buffer (note: content is evaluated, see /help buflist)]
+** type: string
+** values: any string
+** default value: `+"${color:,blue}${format_buffer}"+`
-* [[option_sec.crypt.passphrase_command]] *sec.crypt.passphrase_command*
-** description: pass:none[read the passphrase from the output of this system command (only the first line is used and it must not contain any extra character); this option is used only when reading file sec.conf and if the environment variable "WEECHAT_PASSPHRASE" is not set (the environment variable has higher priority); example with password-store: "/usr/bin/pass show weechat/passphrase"]
+* [[option_buflist.format.hotlist]] *buflist.format.hotlist*
+** description: pass:none[format for hotlist (note: content is evaluated, see /help buflist)]
** type: string
** values: any string
-** default value: `+""+`
+** default value: `+" ${color:green}(${hotlist}${color:green})"+`
-* [[option_sec.crypt.salt]] *sec.crypt.salt*
-** description: pass:none[use salt when generating key used in encryption (recommended for maximum security); when enabled, the content of crypted data in file sec.conf will be different on each write of the file; if you put the file sec.conf in a version control system, then you can turn off this option to have always same content in file]
+* [[option_buflist.format.hotlist_highlight]] *buflist.format.hotlist_highlight*
+** description: pass:none[format for a buffer with hotlist level "highlight" (note: content is evaluated, see /help buflist)]
+** type: string
+** values: any string
+** default value: `+"${color:magenta}"+`
+
+* [[option_buflist.format.hotlist_low]] *buflist.format.hotlist_low*
+** description: pass:none[format for a buffer with hotlist level "low" (note: content is evaluated, see /help buflist)]
+** type: string
+** values: any string
+** default value: `+"${color:white}"+`
+
+* [[option_buflist.format.hotlist_message]] *buflist.format.hotlist_message*
+** description: pass:none[format for a buffer with hotlist level "message" (note: content is evaluated, see /help buflist)]
+** type: string
+** values: any string
+** default value: `+"${color:brown}"+`
+
+* [[option_buflist.format.hotlist_none]] *buflist.format.hotlist_none*
+** description: pass:none[format for a buffer not in hotlist (note: content is evaluated, see /help buflist)]
+** type: string
+** values: any string
+** default value: `+"${color:default}"+`
+
+* [[option_buflist.format.hotlist_private]] *buflist.format.hotlist_private*
+** description: pass:none[format for a buffer with hotlist level "private" (note: content is evaluated, see /help buflist)]
+** type: string
+** values: any string
+** default value: `+"${color:green}"+`
+
+* [[option_buflist.format.hotlist_separator]] *buflist.format.hotlist_separator*
+** description: pass:none[separator for counts in hotlist (note: content is evaluated, see /help buflist)]
+** type: string
+** values: any string
+** default value: `+"${color:default},"+`
+
+* [[option_buflist.format.indent]] *buflist.format.indent*
+** description: pass:none[string displayed to indent channel and private buffers (note: content is evaluated, see /help buflist)]
+** type: string
+** values: any string
+** default value: `+" "+`
+
+* [[option_buflist.format.lag]] *buflist.format.lag*
+** description: pass:none[format for lag on an IRC server buffer (note: content is evaluated, see /help buflist)]
+** type: string
+** values: any string
+** default value: `+" ${color:green}[${color:brown}${lag}${color:green}]"+`
+
+* [[option_buflist.format.name]] *buflist.format.name*
+** description: pass:none[format for buffer name (note: content is evaluated, see /help buflist)]
+** type: string
+** values: any string
+** default value: `+"${name}"+`
+
+* [[option_buflist.format.nick_prefix]] *buflist.format.nick_prefix*
+** description: pass:none[format for nick prefix on a channel (note: content is evaluated, see /help buflist)]
+** type: string
+** values: any string
+** default value: `+"${color_nick_prefix}${nick_prefix}"+`
+
+* [[option_buflist.format.number]] *buflist.format.number*
+** description: pass:none[format for buffer number, ${number} is the indented number (note: content is evaluated, see /help buflist)]
+** type: string
+** values: any string
+** default value: `+"${color:green}${number}${if:${number_displayed}?.: }"+`
+
+* [[option_buflist.format.tls_version]] *buflist.format.tls_version*
+** description: pass:none[format for TLS version on an IRC server buffer (note: content is evaluated, see /help buflist)]
+** type: string
+** values: any string
+** default value: `+" ${color:default}(${if:${tls_version}==TLS1.3?${color:green}:${if:${tls_version}==TLS1.2?${color:yellow}:${color:red}}}${translate:${tls_version}}${color:default})"+`
+
+* [[option_buflist.look.add_newline]] *buflist.look.add_newline*
+** description: pass:none[add newline between the buffers displayed, so each buffer is displayed on a separate line (recommended); if disabled, newlines must be manually added in the formats with "${\n}", and the mouse actions are not possible any more]
** type: boolean
** values: on, off
** default value: `+on+`
-// end::sec_options[]
-// tag::weechat_options[]
-* [[option_weechat.color.bar_more]] *weechat.color.bar_more*
-** description: pass:none[text color for "+" when scrolling bars]
-** type: color
-** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+lightmagenta+`
+* [[option_buflist.look.auto_scroll]] *buflist.look.auto_scroll*
+** description: pass:none[automatically scroll the buflist bar to always see the current buffer (this works only with a bar on the left/right position with a "vertical" filling); this value is the percent number of lines displayed before the current buffer when scrolling (-1 = disable scroll); for example 50 means that after a scroll, the current buffer is at the middle of bar, 0 means on top of bar, 100 means at bottom of bar]
+** type: integer
+** values: -1 .. 100
+** default value: `+50+`
-* [[option_weechat.color.chat]] *weechat.color.chat*
-** description: pass:none[text color for chat]
-** type: color
-** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+default+`
+* [[option_buflist.look.display_conditions]] *buflist.look.display_conditions*
+** description: pass:none[conditions to display a buffer (note: content is evaluated, see /help buflist); for example to hide server buffers if they are merged with core buffer: "${buffer.hidden}==0 && ((${type}!=server && ${buffer.full_name}!=core.weechat) || ${buffer.active}==1)"]
+** type: string
+** values: any string
+** default value: `+"${buffer.hidden}==0"+`
-* [[option_weechat.color.chat_bg]] *weechat.color.chat_bg*
-** description: pass:none[background color for chat]
-** type: color
-** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+default+`
+* [[option_buflist.look.enabled]] *buflist.look.enabled*
+** description: pass:none[enable buflist; it is recommended to use this option instead of just hiding the bar because it also removes some internal hooks that are not needed any more when the bar is hidden; you can also use the command "/buflist toggle" or use the default key alt+shift+b]
+** type: boolean
+** values: on, off
+** default value: `+on+`
-* [[option_weechat.color.chat_buffer]] *weechat.color.chat_buffer*
-** description: pass:none[text color for buffer names]
-** type: color
-** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+white+`
+* [[option_buflist.look.mouse_jump_visited_buffer]] *buflist.look.mouse_jump_visited_buffer*
+** description: pass:none[if enabled, clicks with left/right buttons on the line with current buffer jump to previous/next visited buffer]
+** type: boolean
+** values: on, off
+** default value: `+off+`
-* [[option_weechat.color.chat_channel]] *weechat.color.chat_channel*
-** description: pass:none[text color for channel names]
-** type: color
-** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+white+`
+* [[option_buflist.look.mouse_move_buffer]] *buflist.look.mouse_move_buffer*
+** description: pass:none[if enabled, mouse gestures (drag & drop) move buffers in list]
+** type: boolean
+** values: on, off
+** default value: `+on+`
-* [[option_weechat.color.chat_day_change]] *weechat.color.chat_day_change*
-** description: pass:none[text color for message displayed when the day has changed]
-** type: color
-** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+cyan+`
+* [[option_buflist.look.mouse_wheel]] *buflist.look.mouse_wheel*
+** description: pass:none[if enabled, mouse wheel up/down actions jump to previous/next buffer in list]
+** type: boolean
+** values: on, off
+** default value: `+on+`
-* [[option_weechat.color.chat_delimiters]] *weechat.color.chat_delimiters*
-** description: pass:none[text color for delimiters]
-** type: color
-** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+green+`
+* [[option_buflist.look.nick_prefix]] *buflist.look.nick_prefix*
+** description: pass:none[get the nick prefix and its color from nicklist so that ${nick_prefix} can be used in format; this can be slow on buffers with lot of nicks in nicklist, so this option is disabled by default]
+** type: boolean
+** values: on, off
+** default value: `+off+`
-* [[option_weechat.color.chat_highlight]] *weechat.color.chat_highlight*
-** description: pass:none[text color for highlighted prefix]
-** type: color
-** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+yellow+`
+* [[option_buflist.look.nick_prefix_empty]] *buflist.look.nick_prefix_empty*
+** description: pass:none[when the nick prefix is enabled, display a space instead if there is no nick prefix on the buffer]
+** type: boolean
+** values: on, off
+** default value: `+on+`
-* [[option_weechat.color.chat_highlight_bg]] *weechat.color.chat_highlight_bg*
-** description: pass:none[background color for highlighted prefix]
-** type: color
-** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+magenta+`
+* [[option_buflist.look.signals_refresh]] *buflist.look.signals_refresh*
+** description: pass:none[comma-separated list of extra signals that are hooked and trigger the refresh of buffers list; this can be useful if some custom variables are used in formats and need specific refresh]
+** type: string
+** values: any string
+** default value: `+""+`
-* [[option_weechat.color.chat_host]] *weechat.color.chat_host*
-** description: pass:none[text color for hostnames]
-** type: color
-** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+cyan+`
+* [[option_buflist.look.sort]] *buflist.look.sort*
+** description: pass:none[comma-separated list of fields to sort buffers; each field is a hdata variable of buffer ("var"), a hdata variable of IRC server ("irc_server.var") or a hdata variable of IRC channel ("irc_channel.var"); char "-" can be used before field to reverse order, char "~" can be used to do a case insensitive comparison; example: "-~short_name" for case insensitive and reverse sort on buffer short name (note: the content is evaluated, before being split into fields, but at that time "bar_item" is the only variable that can be used, to distinguish between different buflist items, for example "${bar_item.name}")]
+** type: string
+** values: any string
+** default value: `+"number,-active"+`
-* [[option_weechat.color.chat_inactive_buffer]] *weechat.color.chat_inactive_buffer*
-** description: pass:none[text color for chat when line is inactive (buffer is merged with other buffers and is not selected)]
-** type: color
-** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+default+`
+* [[option_buflist.look.use_items]] *buflist.look.use_items*
+** description: pass:none[number of buflist bar items that can be used; the item names are: "buflist", "buflist2", "buflist3"; be careful, using more than one bar item slows down the display of buffers list]
+** type: integer
+** values: 1 .. 3
+** default value: `+1+`
+// end::buflist_options[]
-* [[option_weechat.color.chat_inactive_window]] *weechat.color.chat_inactive_window*
-** description: pass:none[text color for chat when window is inactive (not current selected window)]
+// tag::charset_options[]
+* [[option_charset.default.decode]] *charset.default.decode*
+** description: pass:none[global decoding charset: charset used to decode incoming messages when they are not UTF-8 valid]
+** type: string
+** values: any string
+** default value: `+"iso-8859-1"+`
+
+* [[option_charset.default.encode]] *charset.default.encode*
+** description: pass:none[global encoding charset: charset used to encode outgoing messages (if empty, default is UTF-8 because it is the WeeChat internal charset)]
+** type: string
+** values: any string
+** default value: `+""+`
+// end::charset_options[]
+
+// tag::exec_options[]
+* [[option_exec.color.flag_finished]] *exec.color.flag_finished*
+** description: pass:none[text color for a finished command flag in list of commands]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+default+`
+** default value: `+lightred+`
-* [[option_weechat.color.chat_nick]] *weechat.color.chat_nick*
-** description: pass:none[text color for nicks in chat window: used in some server messages and as fallback when a nick color is not found; most of times nick color comes from option weechat.color.chat_nick_colors]
+* [[option_exec.color.flag_running]] *exec.color.flag_running*
+** description: pass:none[text color for a running command flag in list of commands]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+lightcyan+`
+** default value: `+lightgreen+`
-* [[option_weechat.color.chat_nick_colors]] *weechat.color.chat_nick_colors*
-** description: pass:none[text color for nicks (comma separated list of colors, background is allowed with format: "fg:bg", for example: "lightred:blue")]
+* [[option_exec.command.default_options]] *exec.command.default_options*
+** description: pass:none[default options for command /exec (see /help exec); example: "-nosh -bg" to run all commands in background (no output), and without using the shell]
** type: string
** values: any string
-** default value: `+"cyan,magenta,green,brown,lightblue,default,lightcyan,lightmagenta,lightgreen,blue"+`
+** default value: `+""+`
-* [[option_weechat.color.chat_nick_offline]] *weechat.color.chat_nick_offline*
-** description: pass:none[text color for offline nick (not in nicklist any more); this color is used only if option weechat.look.color_nick_offline is enabled]
-** type: color
-** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+default+`
+* [[option_exec.command.purge_delay]] *exec.command.purge_delay*
+** description: pass:none[delay for purging finished commands (in seconds, 0 = purge commands immediately, -1 = never purge)]
+** type: integer
+** values: -1 .. 25920000
+** default value: `+0+`
-* [[option_weechat.color.chat_nick_offline_highlight]] *weechat.color.chat_nick_offline_highlight*
-** description: pass:none[text color for offline nick with highlight; this color is used only if option weechat.look.color_nick_offline is enabled]
-** type: color
-** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+default+`
+* [[option_exec.command.shell]] *exec.command.shell*
+** description: pass:none[shell to use with command "/exec -sh"; it can be just the name of shell if it is in PATH (for example "bash") or the absolute path to the shell (for example "/bin/bash"); if value is empty, "sh" is used (note: content is evaluated, see /help eval)]
+** type: string
+** values: any string
+** default value: `+"${env:SHELL}"+`
+// end::exec_options[]
-* [[option_weechat.color.chat_nick_offline_highlight_bg]] *weechat.color.chat_nick_offline_highlight_bg*
-** description: pass:none[background color for offline nick with highlight; this color is used only if option weechat.look.color_nick_offline is enabled]
-** type: color
-** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+blue+`
+// tag::fifo_options[]
+* [[option_fifo.file.enabled]] *fifo.file.enabled*
+** description: pass:none[enable FIFO pipe]
+** type: boolean
+** values: on, off
+** default value: `+on+`
-* [[option_weechat.color.chat_nick_other]] *weechat.color.chat_nick_other*
-** description: pass:none[text color for other nick in private buffer]
-** type: color
-** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+cyan+`
+* [[option_fifo.file.path]] *fifo.file.path*
+** description: pass:none[path for FIFO file; WeeChat PID can be used in path with ${info:pid} (path is evaluated, see function string_eval_path_home in plugin API reference)]
+** type: string
+** values: any string
+** default value: `+"${weechat_runtime_dir}/weechat_fifo_${info:pid}"+`
+// end::fifo_options[]
-* [[option_weechat.color.chat_nick_prefix]] *weechat.color.chat_nick_prefix*
-** description: pass:none[color for nick prefix (string displayed before nick in prefix)]
+// tag::fset_options[]
+* [[option_fset.color.default_value]] *fset.color.default_value*
+** description: pass:none[color for default value]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+green+`
+** default value: `+default+`
-* [[option_weechat.color.chat_nick_self]] *weechat.color.chat_nick_self*
-** description: pass:none[text color for local nick in chat window]
+* [[option_fset.color.default_value_selected]] *fset.color.default_value_selected*
+** description: pass:none[color for default value on the selected line]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** default value: `+white+`
-* [[option_weechat.color.chat_nick_suffix]] *weechat.color.chat_nick_suffix*
-** description: pass:none[color for nick suffix (string displayed after nick in prefix)]
+* [[option_fset.color.description]] *fset.color.description*
+** description: pass:none[color for description]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+green+`
+** default value: `+default+`
-* [[option_weechat.color.chat_prefix_action]] *weechat.color.chat_prefix_action*
-** description: pass:none[text color for action prefix]
+* [[option_fset.color.description_selected]] *fset.color.description_selected*
+** description: pass:none[color for description on the selected line]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** default value: `+white+`
-* [[option_weechat.color.chat_prefix_buffer]] *weechat.color.chat_prefix_buffer*
-** description: pass:none[text color for buffer name (before prefix, when many buffers are merged with same number)]
-** type: color
-** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+brown+`
-
-* [[option_weechat.color.chat_prefix_buffer_inactive_buffer]] *weechat.color.chat_prefix_buffer_inactive_buffer*
-** description: pass:none[text color for inactive buffer name (before prefix, when many buffers are merged with same number and if buffer is not selected)]
+* [[option_fset.color.file]] *fset.color.file*
+** description: pass:none[color for file]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** default value: `+default+`
-* [[option_weechat.color.chat_prefix_error]] *weechat.color.chat_prefix_error*
-** description: pass:none[text color for error prefix]
+* [[option_fset.color.file_changed]] *fset.color.file_changed*
+** description: pass:none[color for file if value is changed]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+yellow+`
+** default value: `+brown+`
-* [[option_weechat.color.chat_prefix_join]] *weechat.color.chat_prefix_join*
-** description: pass:none[text color for join prefix]
+* [[option_fset.color.file_changed_selected]] *fset.color.file_changed_selected*
+** description: pass:none[color for file if value is changed on the selected line]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+lightgreen+`
+** default value: `+yellow+`
-* [[option_weechat.color.chat_prefix_more]] *weechat.color.chat_prefix_more*
-** description: pass:none[text color for "+" when prefix is too long]
+* [[option_fset.color.file_selected]] *fset.color.file_selected*
+** description: pass:none[color for file on the selected line]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+lightmagenta+`
+** default value: `+white+`
-* [[option_weechat.color.chat_prefix_network]] *weechat.color.chat_prefix_network*
-** description: pass:none[text color for network prefix]
+* [[option_fset.color.help_default_value]] *fset.color.help_default_value*
+** description: pass:none[color for default value in help bar]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+magenta+`
+** default value: `+white+`
-* [[option_weechat.color.chat_prefix_quit]] *weechat.color.chat_prefix_quit*
-** description: pass:none[text color for quit prefix]
+* [[option_fset.color.help_description]] *fset.color.help_description*
+** description: pass:none[color for description in help bar]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+lightred+`
+** default value: `+default+`
-* [[option_weechat.color.chat_prefix_suffix]] *weechat.color.chat_prefix_suffix*
-** description: pass:none[text color for suffix (after prefix)]
+* [[option_fset.color.help_name]] *fset.color.help_name*
+** description: pass:none[color for name in help bar]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+green+`
+** default value: `+white+`
-* [[option_weechat.color.chat_read_marker]] *weechat.color.chat_read_marker*
-** description: pass:none[text color for unread data marker]
+* [[option_fset.color.help_quotes]] *fset.color.help_quotes*
+** description: pass:none[color for quotes around string values]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+magenta+`
+** default value: `+darkgray+`
-* [[option_weechat.color.chat_read_marker_bg]] *weechat.color.chat_read_marker_bg*
-** description: pass:none[background color for unread data marker]
+* [[option_fset.color.help_values]] *fset.color.help_values*
+** description: pass:none[color for allowed values]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** default value: `+default+`
-* [[option_weechat.color.chat_server]] *weechat.color.chat_server*
-** description: pass:none[text color for server names]
-** type: color
-** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+brown+`
-
-* [[option_weechat.color.chat_tags]] *weechat.color.chat_tags*
-** description: pass:none[text color for tags after messages (displayed with command /debug tags)]
+* [[option_fset.color.index]] *fset.color.index*
+** description: pass:none[color for index of option]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+red+`
+** default value: `+cyan+`
-* [[option_weechat.color.chat_text_found]] *weechat.color.chat_text_found*
-** description: pass:none[text color for marker on lines where text sought is found]
+* [[option_fset.color.index_selected]] *fset.color.index_selected*
+** description: pass:none[color for index of option on the selected line]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+yellow+`
+** default value: `+lightcyan+`
-* [[option_weechat.color.chat_text_found_bg]] *weechat.color.chat_text_found_bg*
-** description: pass:none[background color for marker on lines where text sought is found]
+* [[option_fset.color.line_marked_bg1]] *fset.color.line_marked_bg1*
+** description: pass:none[background color for a marked line (used with the first format, see option fset.format.option1)]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+lightmagenta+`
+** default value: `+default+`
-* [[option_weechat.color.chat_time]] *weechat.color.chat_time*
-** description: pass:none[text color for time in chat window]
+* [[option_fset.color.line_marked_bg2]] *fset.color.line_marked_bg2*
+** description: pass:none[background color for a marked line (used with the second format, see option fset.format.option2)]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** default value: `+default+`
-* [[option_weechat.color.chat_time_delimiters]] *weechat.color.chat_time_delimiters*
-** description: pass:none[text color for time delimiters]
+* [[option_fset.color.line_selected_bg1]] *fset.color.line_selected_bg1*
+** description: pass:none[background color for the selected line (used with the first format, see option fset.format.option1)]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+brown+`
+** default value: `+blue+`
-* [[option_weechat.color.chat_value]] *weechat.color.chat_value*
-** description: pass:none[text color for values]
+* [[option_fset.color.line_selected_bg2]] *fset.color.line_selected_bg2*
+** description: pass:none[background color for the selected line (used with the second format, see option fset.format.option2)]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+cyan+`
+** default value: `+red+`
-* [[option_weechat.color.chat_value_null]] *weechat.color.chat_value_null*
-** description: pass:none[text color for null values (undefined)]
+* [[option_fset.color.marked]] *fset.color.marked*
+** description: pass:none[color for mark indicator]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+blue+`
+** default value: `+brown+`
-* [[option_weechat.color.emphasized]] *weechat.color.emphasized*
-** description: pass:none[text color for emphasized text (for example when searching text); this option is used only if option weechat.look.emphasized_attributes is an empty string (default value)]
+* [[option_fset.color.marked_selected]] *fset.color.marked_selected*
+** description: pass:none[color for mark indicator on the selected line]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** default value: `+yellow+`
-* [[option_weechat.color.emphasized_bg]] *weechat.color.emphasized_bg*
-** description: pass:none[background color for emphasized text (for example when searching text); used only if option weechat.look.emphasized_attributes is an empty string (default value)]
+* [[option_fset.color.max]] *fset.color.max*
+** description: pass:none[color for max value]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+magenta+`
+** default value: `+default+`
-* [[option_weechat.color.input_actions]] *weechat.color.input_actions*
-** description: pass:none[text color for actions in input line]
+* [[option_fset.color.max_selected]] *fset.color.max_selected*
+** description: pass:none[color for max value on the selected line]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+lightgreen+`
+** default value: `+white+`
-* [[option_weechat.color.input_text_not_found]] *weechat.color.input_text_not_found*
-** description: pass:none[text color for unsuccessful text search in input line]
+* [[option_fset.color.min]] *fset.color.min*
+** description: pass:none[color for min value]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+red+`
+** default value: `+default+`
-* [[option_weechat.color.item_away]] *weechat.color.item_away*
-** description: pass:none[text color for away item]
+* [[option_fset.color.min_selected]] *fset.color.min_selected*
+** description: pass:none[color for min value on the selected line]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+yellow+`
+** default value: `+white+`
-* [[option_weechat.color.nicklist_away]] *weechat.color.nicklist_away*
-** description: pass:none[text color for away nicknames]
+* [[option_fset.color.name]] *fset.color.name*
+** description: pass:none[color for name]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+cyan+`
+** default value: `+default+`
-* [[option_weechat.color.nicklist_group]] *weechat.color.nicklist_group*
-** description: pass:none[text color for groups in nicklist]
+* [[option_fset.color.name_changed]] *fset.color.name_changed*
+** description: pass:none[color for name if value is changed]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+green+`
+** default value: `+brown+`
-* [[option_weechat.color.separator]] *weechat.color.separator*
-** description: pass:none[color for window separators (when split) and separators beside bars (like nicklist)]
+* [[option_fset.color.name_changed_selected]] *fset.color.name_changed_selected*
+** description: pass:none[color for name if value is changed on the selected line]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+blue+`
+** default value: `+yellow+`
-* [[option_weechat.color.status_count_highlight]] *weechat.color.status_count_highlight*
-** description: pass:none[text color for count of highlight messages in hotlist (status bar)]
+* [[option_fset.color.name_selected]] *fset.color.name_selected*
+** description: pass:none[color for name on the selected line]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+magenta+`
+** default value: `+white+`
-* [[option_weechat.color.status_count_msg]] *weechat.color.status_count_msg*
-** description: pass:none[text color for count of messages in hotlist (status bar)]
+* [[option_fset.color.option]] *fset.color.option*
+** description: pass:none[color for option]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+brown+`
+** default value: `+default+`
-* [[option_weechat.color.status_count_other]] *weechat.color.status_count_other*
-** description: pass:none[text color for count of other messages in hotlist (status bar)]
+* [[option_fset.color.option_changed]] *fset.color.option_changed*
+** description: pass:none[color for option if value is changed]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+default+`
+** default value: `+brown+`
-* [[option_weechat.color.status_count_private]] *weechat.color.status_count_private*
-** description: pass:none[text color for count of private messages in hotlist (status bar)]
+* [[option_fset.color.option_changed_selected]] *fset.color.option_changed_selected*
+** description: pass:none[color for option if value is changed on the selected line]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+green+`
+** default value: `+yellow+`
-* [[option_weechat.color.status_data_highlight]] *weechat.color.status_data_highlight*
-** description: pass:none[text color for buffer with highlight (status bar)]
+* [[option_fset.color.option_selected]] *fset.color.option_selected*
+** description: pass:none[color for option on the selected line]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+lightmagenta+`
+** default value: `+white+`
-* [[option_weechat.color.status_data_msg]] *weechat.color.status_data_msg*
-** description: pass:none[text color for buffer with new messages (status bar)]
+* [[option_fset.color.parent_name]] *fset.color.parent_name*
+** description: pass:none[color for name of parent option]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+yellow+`
+** default value: `+default+`
-* [[option_weechat.color.status_data_other]] *weechat.color.status_data_other*
-** description: pass:none[text color for buffer with new data (not messages) (status bar)]
+* [[option_fset.color.parent_name_selected]] *fset.color.parent_name_selected*
+** description: pass:none[color for name of parent option on the selected line]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+default+`
+** default value: `+white+`
-* [[option_weechat.color.status_data_private]] *weechat.color.status_data_private*
-** description: pass:none[text color for buffer with private message (status bar)]
+* [[option_fset.color.parent_value]] *fset.color.parent_value*
+** description: pass:none[color for value of parent option]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+lightgreen+`
+** default value: `+cyan+`
-* [[option_weechat.color.status_filter]] *weechat.color.status_filter*
-** description: pass:none[text color for filter indicator in status bar]
+* [[option_fset.color.parent_value_selected]] *fset.color.parent_value_selected*
+** description: pass:none[color for value of parent option on the selected line]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+green+`
+** default value: `+lightcyan+`
-* [[option_weechat.color.status_more]] *weechat.color.status_more*
-** description: pass:none[text color for buffer with new data (status bar)]
+* [[option_fset.color.quotes]] *fset.color.quotes*
+** description: pass:none[color for quotes around string values]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+yellow+`
+** default value: `+darkgray+`
-* [[option_weechat.color.status_mouse]] *weechat.color.status_mouse*
-** description: pass:none[text color for mouse indicator in status bar]
+* [[option_fset.color.quotes_changed]] *fset.color.quotes_changed*
+** description: pass:none[color for quotes around string values which are changed]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+green+`
+** default value: `+default+`
-* [[option_weechat.color.status_name]] *weechat.color.status_name*
-** description: pass:none[text color for current buffer name in status bar]
+* [[option_fset.color.quotes_changed_selected]] *fset.color.quotes_changed_selected*
+** description: pass:none[color for quotes around string values which are changed on the selected line]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** default value: `+white+`
-* [[option_weechat.color.status_name_ssl]] *weechat.color.status_name_ssl*
-** description: pass:none[text color for current buffer name in status bar, if data are secured with a protocol like SSL]
+* [[option_fset.color.quotes_selected]] *fset.color.quotes_selected*
+** description: pass:none[color for quotes around string values on the selected line]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+lightgreen+`
+** default value: `+default+`
-* [[option_weechat.color.status_nicklist_count]] *weechat.color.status_nicklist_count*
-** description: pass:none[text color for number of nicks in nicklist (status bar)]
+* [[option_fset.color.section]] *fset.color.section*
+** description: pass:none[color for section]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** default value: `+default+`
-* [[option_weechat.color.status_number]] *weechat.color.status_number*
-** description: pass:none[text color for current buffer number in status bar]
+* [[option_fset.color.section_changed]] *fset.color.section_changed*
+** description: pass:none[color for section if value is changed]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+yellow+`
+** default value: `+brown+`
-* [[option_weechat.color.status_time]] *weechat.color.status_time*
-** description: pass:none[text color for time (status bar)]
+* [[option_fset.color.section_changed_selected]] *fset.color.section_changed_selected*
+** description: pass:none[color for section if value is changed on the selected line]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+default+`
-
-* [[option_weechat.completion.base_word_until_cursor]] *weechat.completion.base_word_until_cursor*
-** description: pass:none[if enabled, the base word to complete ends at char before cursor; otherwise the base word ends at first space after cursor]
-** type: boolean
-** values: on, off
-** default value: `+on+`
-
-* [[option_weechat.completion.command_inline]] *weechat.completion.command_inline*
-** description: pass:none[if enabled, the commands inside command line are completed (the command at beginning of line has higher priority and is used first); note: when this option is enabled, there is no more automatic completion of paths beginning with "/" (outside commands arguments)]
-** type: boolean
-** values: on, off
-** default value: `+on+`
-
-* [[option_weechat.completion.default_template]] *weechat.completion.default_template*
-** description: pass:none[default completion template (please see documentation for template codes and values: plugin API reference, function "weechat_hook_command")]
-** type: string
-** values: any string
-** default value: `+"%(nicks)|%(irc_channels)"+`
-
-* [[option_weechat.completion.nick_add_space]] *weechat.completion.nick_add_space*
-** description: pass:none[add space after nick completion (when nick is not first word on command line)]
-** type: boolean
-** values: on, off
-** default value: `+on+`
-
-* [[option_weechat.completion.nick_case_sensitive]] *weechat.completion.nick_case_sensitive*
-** description: pass:none[case sensitive completion for nicks]
-** type: boolean
-** values: on, off
-** default value: `+off+`
-
-* [[option_weechat.completion.nick_completer]] *weechat.completion.nick_completer*
-** description: pass:none[string inserted after nick completion (when nick is first word on command line)]
-** type: string
-** values: any string
-** default value: `+": "+`
-
-* [[option_weechat.completion.nick_first_only]] *weechat.completion.nick_first_only*
-** description: pass:none[complete only with first nick found]
-** type: boolean
-** values: on, off
-** default value: `+off+`
-
-* [[option_weechat.completion.nick_ignore_chars]] *weechat.completion.nick_ignore_chars*
-** description: pass:none[chars ignored for nick completion]
-** type: string
-** values: any string
-** default value: `+"[]`_-^"+`
-
-* [[option_weechat.completion.partial_completion_alert]] *weechat.completion.partial_completion_alert*
-** description: pass:none[send alert (BEL) when a partial completion occurs]
-** type: boolean
-** values: on, off
-** default value: `+on+`
-
-* [[option_weechat.completion.partial_completion_command]] *weechat.completion.partial_completion_command*
-** description: pass:none[partially complete command names (stop when many commands found begin with same letters)]
-** type: boolean
-** values: on, off
-** default value: `+off+`
-
-* [[option_weechat.completion.partial_completion_command_arg]] *weechat.completion.partial_completion_command_arg*
-** description: pass:none[partially complete command arguments (stop when many arguments found begin with same prefix)]
-** type: boolean
-** values: on, off
-** default value: `+off+`
-
-* [[option_weechat.completion.partial_completion_count]] *weechat.completion.partial_completion_count*
-** description: pass:none[display count for each partial completion in bar item]
-** type: boolean
-** values: on, off
-** default value: `+on+`
-
-* [[option_weechat.completion.partial_completion_other]] *weechat.completion.partial_completion_other*
-** description: pass:none[partially complete outside commands (stop when many words found begin with same letters)]
-** type: boolean
-** values: on, off
-** default value: `+off+`
-
-* [[option_weechat.completion.partial_completion_templates]] *weechat.completion.partial_completion_templates*
-** description: pass:none[comma-separated list of templates for which partial completion is enabled by default (with Tab key instead of shift-Tab); the list of templates is in documentation: plugin API reference, function "weechat_hook_command"]
-** type: string
-** values: any string
-** default value: `+"config_options"+`
-
-* [[option_weechat.history.display_default]] *weechat.history.display_default*
-** description: pass:none[maximum number of commands to display by default in history listing (0 = unlimited)]
-** type: integer
-** values: 0 .. 2147483647
-** default value: `+5+`
-
-* [[option_weechat.history.max_buffer_lines_minutes]] *weechat.history.max_buffer_lines_minutes*
-** description: pass:none[maximum number of minutes in history per buffer (0 = unlimited); examples: 1440 = one day, 10080 = one week, 43200 = one month, 525600 = one year; use 0 ONLY if option weechat.history.max_buffer_lines_number is NOT set to 0]
-** type: integer
-** values: 0 .. 2147483647
-** default value: `+0+`
-
-* [[option_weechat.history.max_buffer_lines_number]] *weechat.history.max_buffer_lines_number*
-** description: pass:none[maximum number of lines in history per buffer (0 = unlimited); use 0 ONLY if option weechat.history.max_buffer_lines_minutes is NOT set to 0]
-** type: integer
-** values: 0 .. 2147483647
-** default value: `+4096+`
-
-* [[option_weechat.history.max_commands]] *weechat.history.max_commands*
-** description: pass:none[maximum number of user commands in history (0 = unlimited, NOT RECOMMENDED: no limit in memory usage)]
-** type: integer
-** values: 0 .. 2147483647
-** default value: `+100+`
-
-* [[option_weechat.history.max_visited_buffers]] *weechat.history.max_visited_buffers*
-** description: pass:none[maximum number of visited buffers to keep in memory]
-** type: integer
-** values: 0 .. 1000
-** default value: `+50+`
-
-* [[option_weechat.look.align_end_of_lines]] *weechat.look.align_end_of_lines*
-** description: pass:none[alignment for end of lines (all lines after the first): they are starting under this data (time, buffer, prefix, suffix, message (default))]
-** type: integer
-** values: time, buffer, prefix, suffix, message
-** default value: `+message+`
-
-* [[option_weechat.look.align_multiline_words]] *weechat.look.align_multiline_words*
-** description: pass:none[alignment for multiline words according to option weechat.look.align_end_of_lines; if disabled, the multiline words will not be aligned, which can be useful to not break long URLs]
-** type: boolean
-** values: on, off
-** default value: `+on+`
-
-* [[option_weechat.look.bar_more_down]] *weechat.look.bar_more_down*
-** description: pass:none[string displayed when bar can be scrolled down (for bars with filling different from "horizontal")]
-** type: string
-** values: any string
-** default value: `+"++"+`
-
-* [[option_weechat.look.bar_more_left]] *weechat.look.bar_more_left*
-** description: pass:none[string displayed when bar can be scrolled to the left (for bars with filling "horizontal")]
-** type: string
-** values: any string
-** default value: `+"<<"+`
-
-* [[option_weechat.look.bar_more_right]] *weechat.look.bar_more_right*
-** description: pass:none[string displayed when bar can be scrolled to the right (for bars with filling "horizontal")]
-** type: string
-** values: any string
-** default value: `+">>"+`
-
-* [[option_weechat.look.bar_more_up]] *weechat.look.bar_more_up*
-** description: pass:none[string displayed when bar can be scrolled up (for bars with filling different from "horizontal")]
-** type: string
-** values: any string
-** default value: `+"--"+`
-
-* [[option_weechat.look.bare_display_exit_on_input]] *weechat.look.bare_display_exit_on_input*
-** description: pass:none[exit the bare display mode on any changes in input]
-** type: boolean
-** values: on, off
-** default value: `+on+`
-
-* [[option_weechat.look.bare_display_time_format]] *weechat.look.bare_display_time_format*
-** description: pass:none[time format in bare display mode (see man strftime for date/time specifiers)]
-** type: string
-** values: any string
-** default value: `+"%H:%M"+`
-
-* [[option_weechat.look.buffer_auto_renumber]] *weechat.look.buffer_auto_renumber*
-** description: pass:none[automatically renumber buffers to have only consecutive numbers and start with number 1; if disabled, gaps between buffer numbers are allowed and the first buffer can have a number greater than 1]
-** type: boolean
-** values: on, off
-** default value: `+on+`
-
-* [[option_weechat.look.buffer_notify_default]] *weechat.look.buffer_notify_default*
-** description: pass:none[default notify level for buffers (used to tell WeeChat if buffer must be displayed in hotlist or not, according to importance of message): all=all messages (default), message=messages+highlights, highlight=highlights only, none=never display in hotlist]
-** type: integer
-** values: none, highlight, message, all
-** default value: `+all+`
-
-* [[option_weechat.look.buffer_position]] *weechat.look.buffer_position*
-** description: pass:none[position of a new buffer: end = after the end of list (number = last number + 1) (default), first_gap = at first available number in the list (after the end of list if no number is available); this option is used only if the buffer has no layout number]
-** type: integer
-** values: end, first_gap
-** default value: `+end+`
-
-* [[option_weechat.look.buffer_search_case_sensitive]] *weechat.look.buffer_search_case_sensitive*
-** description: pass:none[default text search in buffer: case sensitive or not]
-** type: boolean
-** values: on, off
-** default value: `+off+`
-
-* [[option_weechat.look.buffer_search_force_default]] *weechat.look.buffer_search_force_default*
-** description: pass:none[force default values for text search in buffer (instead of using values from last search in buffer)]
-** type: boolean
-** values: on, off
-** default value: `+off+`
-
-* [[option_weechat.look.buffer_search_regex]] *weechat.look.buffer_search_regex*
-** description: pass:none[default text search in buffer: if enabled, search POSIX extended regular expression, otherwise search simple string]
-** type: boolean
-** values: on, off
-** default value: `+off+`
-
-* [[option_weechat.look.buffer_search_where]] *weechat.look.buffer_search_where*
-** description: pass:none[default text search in buffer: in message, prefix, prefix and message]
-** type: integer
-** values: prefix, message, prefix_message
-** default value: `+prefix_message+`
-
-* [[option_weechat.look.buffer_time_format]] *weechat.look.buffer_time_format*
-** description: pass:none[time format for each line displayed in buffers (see man strftime for date/time specifiers) (note: content is evaluated, so you can use colors with format "${color:xxx}", see /help eval); for example time using grayscale (requires support of 256 colors): "${color:252}%H${color:245}%M${color:240}%S"]
-** type: string
-** values: any string
-** default value: `+"%H:%M:%S"+`
-
-* [[option_weechat.look.buffer_time_same]] *weechat.look.buffer_time_same*
-** description: pass:none[time displayed for a message with same time as previous message: use a space " " to hide time, another string to display this string instead of time, or an empty string to disable feature (display time) (note: content is evaluated, so you can use colors with format "${color:xxx}", see /help eval)]
-** type: string
-** values: any string
-** default value: `+""+`
-
-* [[option_weechat.look.chat_space_right]] *weechat.look.chat_space_right*
-** description: pass:none[keep a space on the right side of chat area if there is a bar displayed on the right (for both text and read marker)]
-** type: boolean
-** values: on, off
-** default value: `+off+`
-
-* [[option_weechat.look.color_basic_force_bold]] *weechat.look.color_basic_force_bold*
-** description: pass:none[force "bold" attribute for light colors and "darkgray" in basic colors (this option is disabled by default: bold is used only if terminal has less than 16 colors)]
-** type: boolean
-** values: on, off
-** default value: `+off+`
-
-* [[option_weechat.look.color_inactive_buffer]] *weechat.look.color_inactive_buffer*
-** description: pass:none[use a different color for lines in inactive buffer (when line is from a merged buffer not selected)]
-** type: boolean
-** values: on, off
-** default value: `+on+`
-
-* [[option_weechat.look.color_inactive_message]] *weechat.look.color_inactive_message*
-** description: pass:none[use a different color for inactive message (when window is not current window, or if line is from a merged buffer not selected)]
-** type: boolean
-** values: on, off
-** default value: `+on+`
-
-* [[option_weechat.look.color_inactive_prefix]] *weechat.look.color_inactive_prefix*
-** description: pass:none[use a different color for inactive prefix (when window is not current window, or if line is from a merged buffer not selected)]
-** type: boolean
-** values: on, off
-** default value: `+on+`
-
-* [[option_weechat.look.color_inactive_prefix_buffer]] *weechat.look.color_inactive_prefix_buffer*
-** description: pass:none[use a different color for inactive buffer name in prefix (when window is not current window, or if line is from a merged buffer not selected)]
-** type: boolean
-** values: on, off
-** default value: `+on+`
-
-* [[option_weechat.look.color_inactive_time]] *weechat.look.color_inactive_time*
-** description: pass:none[use a different color for inactive time (when window is not current window, or if line is from a merged buffer not selected)]
-** type: boolean
-** values: on, off
-** default value: `+off+`
-
-* [[option_weechat.look.color_inactive_window]] *weechat.look.color_inactive_window*
-** description: pass:none[use a different color for lines in inactive window (when window is not current window)]
-** type: boolean
-** values: on, off
-** default value: `+on+`
-
-* [[option_weechat.look.color_nick_offline]] *weechat.look.color_nick_offline*
-** description: pass:none[use a different color for offline nicks (not in nicklist any more)]
-** type: boolean
-** values: on, off
-** default value: `+off+`
-
-* [[option_weechat.look.color_pairs_auto_reset]] *weechat.look.color_pairs_auto_reset*
-** description: pass:none[automatically reset table of color pairs when number of available pairs is lower or equal to this number (-1 = disable automatic reset, and then a manual "/color reset" is needed when table is full)]
-** type: integer
-** values: -1 .. 256
-** default value: `+5+`
-
-* [[option_weechat.look.color_real_white]] *weechat.look.color_real_white*
-** description: pass:none[if set, uses real white color, disabled by default for terms with white background (if you never use white background, you should turn on this option to see real white instead of default term foreground color)]
-** type: boolean
-** values: on, off
-** default value: `+off+`
-
-* [[option_weechat.look.command_chars]] *weechat.look.command_chars*
-** description: pass:none[chars used to determine if input string is a command or not: input must start with one of these chars; the slash ("/") is always considered as command prefix (example: ".$")]
-** type: string
-** values: any string
-** default value: `+""+`
-
-* [[option_weechat.look.command_incomplete]] *weechat.look.command_incomplete*
-** description: pass:none[if set, incomplete and unambiguous commands are allowed, for example /he for /help]
-** type: boolean
-** values: on, off
-** default value: `+off+`
-
-* [[option_weechat.look.confirm_quit]] *weechat.look.confirm_quit*
-** description: pass:none[if set, /quit command must be confirmed with extra argument "-yes" (see /help quit)]
-** type: boolean
-** values: on, off
-** default value: `+off+`
-
-* [[option_weechat.look.confirm_upgrade]] *weechat.look.confirm_upgrade*
-** description: pass:none[if set, /upgrade command must be confirmed with extra argument "-yes" (see /help upgrade)]
-** type: boolean
-** values: on, off
-** default value: `+off+`
-
-* [[option_weechat.look.day_change]] *weechat.look.day_change*
-** description: pass:none[display special message when day changes]
-** type: boolean
-** values: on, off
-** default value: `+on+`
-
-* [[option_weechat.look.day_change_message_1date]] *weechat.look.day_change_message_1date*
-** description: pass:none[message displayed when the day has changed, with one date displayed (for example at beginning of buffer) (see man strftime for date/time specifiers) (note: content is evaluated, so you can use colors with format "${color:xxx}", see /help eval)]
-** type: string
-** values: any string
-** default value: `+"-- %a, %d %b %Y --"+`
-
-* [[option_weechat.look.day_change_message_2dates]] *weechat.look.day_change_message_2dates*
-** description: pass:none[message displayed when the day has changed, with two dates displayed (between two messages); the second date specifiers must start with two "%" because strftime is called two times on this string (see man strftime for date/time specifiers) (note: content is evaluated, so you can use colors with format "${color:xxx}", see /help eval)]
-** type: string
-** values: any string
-** default value: `+"-- %%a, %%d %%b %%Y (%a, %d %b %Y) --"+`
-
-* [[option_weechat.look.eat_newline_glitch]] *weechat.look.eat_newline_glitch*
-** description: pass:none[if set, the eat_newline_glitch will be set to 0; this is used to not add new line char at end of each line, and then not break text when you copy/paste text from WeeChat to another application (this option is disabled by default because it can cause serious display bugs)]
-** type: boolean
-** values: on, off
-** default value: `+off+`
-
-* [[option_weechat.look.emphasized_attributes]] *weechat.look.emphasized_attributes*
-** description: pass:none[attributes for emphasized text: one or more attribute chars ("%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline); if the string is empty, the colors weechat.color.emphasized* are used]
-** type: string
-** values: any string
-** default value: `+""+`
-
-* [[option_weechat.look.highlight]] *weechat.look.highlight*
-** description: pass:none[comma separated list of words to highlight; case insensitive comparison (use "(?-i)" at beginning of words to make them case sensitive), words may begin or end with "*" for partial match; example: "test,(?-i)*toto*,flash*"]
-** type: string
-** values: any string
-** default value: `+""+`
-
-* [[option_weechat.look.highlight_disable_regex]] *weechat.look.highlight_disable_regex*
-** description: pass:none[POSIX extended regular expression used to prevent any highlight from a message: this option has higher priority over other highlight options (if the string is found in the message, the highlight is disabled and the other options are ignored), regular expression is case insensitive (use "(?-i)" at beginning to make it case sensitive), examples: "<flash.*>", "(?-i)<Flash.*>"]
-** type: string
-** values: any string
-** default value: `+""+`
-
-* [[option_weechat.look.highlight_regex]] *weechat.look.highlight_regex*
-** description: pass:none[POSIX extended regular expression used to check if a message has highlight or not, at least one match in string must be surrounded by delimiters (chars different from: alphanumeric, "-", "_" and "|"), regular expression is case insensitive (use "(?-i)" at beginning to make it case sensitive), examples: "flashcode|flashy", "(?-i)FlashCode|flashy"]
-** type: string
-** values: any string
-** default value: `+""+`
-
-* [[option_weechat.look.highlight_tags]] *weechat.look.highlight_tags*
-** description: pass:none[comma separated list of tags to highlight; case insensitive comparison; wildcard "*" is allowed in each tag; many tags can be separated by "+" to make a logical "and" between tags; examples: "nick_flashcode" for messages from nick "FlashCode", "irc_notice+nick_toto*" for notices from a nick starting with "toto"]
-** type: string
-** values: any string
-** default value: `+""+`
-
-* [[option_weechat.look.hotlist_add_conditions]] *weechat.look.hotlist_add_conditions*
-** description: pass:none[conditions to add a buffer in hotlist (if notify level is OK for the buffer); you can use in these conditions: "window" (current window pointer), "buffer" (buffer pointer to add in hotlist), "priority" (0 = low, 1 = message, 2 = private, 3 = highlight); by default a buffer is added to hotlist if you are away, or if the buffer is not visible on screen (not displayed in any window), or if at least one relay client is connected via the weechat protocol]
-** type: string
-** values: any string
-** default value: `+"${away} || ${buffer.num_displayed} == 0 || ${info:relay_client_count,weechat,connected} > 0"+`
-
-* [[option_weechat.look.hotlist_buffer_separator]] *weechat.look.hotlist_buffer_separator*
-** description: pass:none[string displayed between buffers in hotlist]
-** type: string
-** values: any string
-** default value: `+", "+`
-
-* [[option_weechat.look.hotlist_count_max]] *weechat.look.hotlist_count_max*
-** description: pass:none[max number of messages count to display in hotlist for a buffer: 0 = never display messages count, other number = display max N messages count (from the highest to lowest priority)]
-** type: integer
-** values: 0 .. 4
-** default value: `+2+`
-
-* [[option_weechat.look.hotlist_count_min_msg]] *weechat.look.hotlist_count_min_msg*
-** description: pass:none[display messages count if number of messages is greater or equal to this value]
-** type: integer
-** values: 1 .. 100
-** default value: `+2+`
-
-* [[option_weechat.look.hotlist_names_count]] *weechat.look.hotlist_names_count*
-** description: pass:none[max number of names in hotlist (0 = no name displayed, only buffer numbers)]
-** type: integer
-** values: 0 .. 10000
-** default value: `+3+`
-
-* [[option_weechat.look.hotlist_names_length]] *weechat.look.hotlist_names_length*
-** description: pass:none[max length of names in hotlist (0 = no limit)]
-** type: integer
-** values: 0 .. 32
-** default value: `+0+`
-
-* [[option_weechat.look.hotlist_names_level]] *weechat.look.hotlist_names_level*
-** description: pass:none[level for displaying names in hotlist (combination of: 1=join/part, 2=message, 4=private, 8=highlight, for example: 12=private+highlight)]
-** type: integer
-** values: 1 .. 15
-** default value: `+12+`
-
-* [[option_weechat.look.hotlist_names_merged_buffers]] *weechat.look.hotlist_names_merged_buffers*
-** description: pass:none[if set, force display of names in hotlist for merged buffers]
-** type: boolean
-** values: on, off
-** default value: `+off+`
-
-* [[option_weechat.look.hotlist_prefix]] *weechat.look.hotlist_prefix*
-** description: pass:none[text displayed at the beginning of the hotlist]
-** type: string
-** values: any string
-** default value: `+"H: "+`
-
-* [[option_weechat.look.hotlist_remove]] *weechat.look.hotlist_remove*
-** description: pass:none[remove buffers in hotlist: buffer = remove buffer by buffer, merged = remove all visible merged buffers at once]
-** type: integer
-** values: buffer, merged
-** default value: `+merged+`
-
-* [[option_weechat.look.hotlist_short_names]] *weechat.look.hotlist_short_names*
-** description: pass:none[if set, uses short names to display buffer names in hotlist (start after first "." in name)]
-** type: boolean
-** values: on, off
-** default value: `+on+`
-
-* [[option_weechat.look.hotlist_sort]] *weechat.look.hotlist_sort*
-** description: pass:none[sort of hotlist: group_time_*: group by notify level (highlights first) then sort by time, group_number_*: group by notify level (highlights first) then sort by number, number_*: sort by number; asc = ascending sort, desc = descending sort]
-** type: integer
-** values: group_time_asc, group_time_desc, group_number_asc, group_number_desc, number_asc, number_desc
-** default value: `+group_time_asc+`
-
-* [[option_weechat.look.hotlist_suffix]] *weechat.look.hotlist_suffix*
-** description: pass:none[text displayed at the end of the hotlist]
-** type: string
-** values: any string
-** default value: `+""+`
-
-* [[option_weechat.look.hotlist_unique_numbers]] *weechat.look.hotlist_unique_numbers*
-** description: pass:none[keep only unique numbers in hotlist (this applies only on hotlist items where name is NOT displayed after number)]
-** type: boolean
-** values: on, off
-** default value: `+on+`
-
-* [[option_weechat.look.hotlist_update_on_buffer_switch]] *weechat.look.hotlist_update_on_buffer_switch*
-** description: pass:none[update the hotlist when switching buffers]
-** type: boolean
-** values: on, off
-** default value: `+on+`
-
-* [[option_weechat.look.input_cursor_scroll]] *weechat.look.input_cursor_scroll*
-** description: pass:none[number of chars displayed after end of input line when scrolling to display end of line]
-** type: integer
-** values: 0 .. 100
-** default value: `+20+`
-
-* [[option_weechat.look.input_share]] *weechat.look.input_share*
-** description: pass:none[share commands, text, or both in input for all buffers (there is still local history for each buffer)]
-** type: integer
-** values: none, commands, text, all
-** default value: `+none+`
-
-* [[option_weechat.look.input_share_overwrite]] *weechat.look.input_share_overwrite*
-** description: pass:none[if set and input is shared, always overwrite input in target buffer]
-** type: boolean
-** values: on, off
-** default value: `+off+`
-
-* [[option_weechat.look.input_undo_max]] *weechat.look.input_undo_max*
-** description: pass:none[max number of "undo" for command line, by buffer (0 = undo disabled)]
-** type: integer
-** values: 0 .. 65535
-** default value: `+32+`
-
-* [[option_weechat.look.item_away_message]] *weechat.look.item_away_message*
-** description: pass:none[display server away message in away bar item]
-** type: boolean
-** values: on, off
-** default value: `+on+`
-
-* [[option_weechat.look.item_buffer_filter]] *weechat.look.item_buffer_filter*
-** description: pass:none[string used to show that some lines are filtered in current buffer (bar item "buffer_filter")]
-** type: string
-** values: any string
-** default value: `+"*"+`
-
-* [[option_weechat.look.item_buffer_zoom]] *weechat.look.item_buffer_zoom*
-** description: pass:none[string used to show zoom on merged buffer (bar item "buffer_zoom")]
-** type: string
-** values: any string
-** default value: `+"!"+`
-
-* [[option_weechat.look.item_mouse_status]] *weechat.look.item_mouse_status*
-** description: pass:none[string used to show if mouse is enabled (bar item "mouse_status")]
-** type: string
-** values: any string
-** default value: `+"M"+`
-
-* [[option_weechat.look.item_time_format]] *weechat.look.item_time_format*
-** description: pass:none[time format for "time" bar item (see man strftime for date/time specifiers) (note: content is evaluated, so you can use colors with format "${color:xxx}", see /help eval)]
-** type: string
-** values: any string
-** default value: `+"%H:%M"+`
-
-* [[option_weechat.look.jump_current_to_previous_buffer]] *weechat.look.jump_current_to_previous_buffer*
-** description: pass:none[jump to previous buffer displayed when jumping to current buffer number with /buffer *N (where N is a buffer number), to easily switch to another buffer, then come back to current buffer]
-** type: boolean
-** values: on, off
-** default value: `+on+`
-
-* [[option_weechat.look.jump_previous_buffer_when_closing]] *weechat.look.jump_previous_buffer_when_closing*
-** description: pass:none[jump to previously visited buffer when closing a buffer (if disabled, then jump to buffer number - 1)]
-** type: boolean
-** values: on, off
-** default value: `+on+`
-
-* [[option_weechat.look.jump_smart_back_to_buffer]] *weechat.look.jump_smart_back_to_buffer*
-** description: pass:none[jump back to initial buffer after reaching end of hotlist]
-** type: boolean
-** values: on, off
-** default value: `+on+`
-
-* [[option_weechat.look.key_bind_safe]] *weechat.look.key_bind_safe*
-** description: pass:none[allow only binding of "safe" keys (beginning with a ctrl or meta code)]
-** type: boolean
-** values: on, off
-** default value: `+on+`
-
-* [[option_weechat.look.key_grab_delay]] *weechat.look.key_grab_delay*
-** description: pass:none[default delay (in milliseconds) to grab a key (using default key alt-k); this delay can be overridden in the /input command (see /help input)]
-** type: integer
-** values: 1 .. 10000
-** default value: `+800+`
-
-* [[option_weechat.look.mouse]] *weechat.look.mouse*
-** description: pass:none[enable mouse support]
-** type: boolean
-** values: on, off
-** default value: `+off+`
-
-* [[option_weechat.look.mouse_timer_delay]] *weechat.look.mouse_timer_delay*
-** description: pass:none[delay (in milliseconds) to grab a mouse event: WeeChat will wait this delay before processing event]
-** type: integer
-** values: 1 .. 10000
-** default value: `+100+`
-
-* [[option_weechat.look.nick_color_force]] *weechat.look.nick_color_force*
-** description: pass:none[force color for some nicks: hash computed with nickname to find color will not be used for these nicks (format is: "nick1:color1;nick2:color2"); look up for nicks is with exact case then lower case, so it's possible to use only lower case for nicks in this option; color can include background with the format "text,background", for example "yellow,red"]
-** type: string
-** values: any string
-** default value: `+""+`
-
-* [[option_weechat.look.nick_color_hash]] *weechat.look.nick_color_hash*
-** description: pass:none[hash algorithm used to find the color for a nick: djb2 = variant of djb2 (position of letters matters: anagrams of a nick have different color), djb2_32 = variant of djb2 using 32-bit instead of 64-bit integer, sum = sum of letters, sum_32 = sum of letters using 32-bit instead of 64-bit integer]
-** type: integer
-** values: djb2, sum, djb2_32, sum_32
-** default value: `+djb2+`
-
-* [[option_weechat.look.nick_color_hash_salt]] *weechat.look.nick_color_hash_salt*
-** description: pass:none[salt for the hash algorithm used to find nick colors (the nickname is appended to this salt and the hash algorithm operates on this string); modifying this shuffles nick colors]
-** type: string
-** values: any string
-** default value: `+""+`
-
-* [[option_weechat.look.nick_color_stop_chars]] *weechat.look.nick_color_stop_chars*
-** description: pass:none[chars used to stop in nick when computing color with letters of nick (at least one char outside this list must be in string before stopping) (example: nick "|nick|away" with "|" in chars will return color of nick "|nick"); this option has an impact on option weechat.look.nick_color_force, so the nick for the forced color must not contain the chars ignored by this option]
-** type: string
-** values: any string
-** default value: `+"_|["+`
-
-* [[option_weechat.look.nick_prefix]] *weechat.look.nick_prefix*
-** description: pass:none[text to display before nick in prefix of message, example: "<"]
-** type: string
-** values: any string
-** default value: `+""+`
-
-* [[option_weechat.look.nick_suffix]] *weechat.look.nick_suffix*
-** description: pass:none[text to display after nick in prefix of message, example: ">"]
-** type: string
-** values: any string
-** default value: `+""+`
-
-* [[option_weechat.look.paste_auto_add_newline]] *weechat.look.paste_auto_add_newline*
-** description: pass:none[automatically add a newline at the end of pasted text if there are at least two lines and if a confirmation is asked]
-** type: boolean
-** values: on, off
-** default value: `+on+`
-
-* [[option_weechat.look.paste_bracketed]] *weechat.look.paste_bracketed*
-** description: pass:none[enable terminal "bracketed paste mode" (not supported in all terminals/multiplexers): in this mode, pasted text is bracketed with control sequences so that WeeChat can differentiate pasted text from typed-in text ("ESC[200~", followed by the pasted text, followed by "ESC[201~")]
-** type: boolean
-** values: on, off
-** default value: `+on+`
-
-* [[option_weechat.look.paste_bracketed_timer_delay]] *weechat.look.paste_bracketed_timer_delay*
-** description: pass:none[force end of bracketed paste after this delay (in seconds) if the control sequence for end of bracketed paste ("ESC[201~") was not received in time]
-** type: integer
-** values: 1 .. 60
-** default value: `+10+`
-
-* [[option_weechat.look.paste_max_lines]] *weechat.look.paste_max_lines*
-** description: pass:none[max number of lines for paste without asking user (-1 = disable this feature); this option is used only if the bar item "input_paste" is used in at least one bar (by default it is used in "input" bar)]
-** type: integer
-** values: -1 .. 2147483647
-** default value: `+1+`
-
-* [[option_weechat.look.prefix_action]] *weechat.look.prefix_action*
-** description: pass:none[prefix for action messages (note: content is evaluated, so you can use colors with format "${color:xxx}", see /help eval)]
-** type: string
-** values: any string
-** default value: `+" *"+`
-
-* [[option_weechat.look.prefix_align]] *weechat.look.prefix_align*
-** description: pass:none[prefix alignment (none, left, right (default))]
-** type: integer
-** values: none, left, right
-** default value: `+right+`
-
-* [[option_weechat.look.prefix_align_max]] *weechat.look.prefix_align_max*
-** description: pass:none[max size for prefix (0 = no max size)]
-** type: integer
-** values: 0 .. 128
-** default value: `+0+`
-
-* [[option_weechat.look.prefix_align_min]] *weechat.look.prefix_align_min*
-** description: pass:none[min size for prefix]
-** type: integer
-** values: 0 .. 128
-** default value: `+0+`
-
-* [[option_weechat.look.prefix_align_more]] *weechat.look.prefix_align_more*
-** description: pass:none[char to display if prefix is truncated (must be exactly one char on screen)]
-** type: string
-** values: any string
-** default value: `+"+"+`
-
-* [[option_weechat.look.prefix_align_more_after]] *weechat.look.prefix_align_more_after*
-** description: pass:none[display the truncature char (by default "+") after the text (by replacing the space that should be displayed here); if disabled, the truncature char replaces last char of text]
-** type: boolean
-** values: on, off
-** default value: `+on+`
-
-* [[option_weechat.look.prefix_buffer_align]] *weechat.look.prefix_buffer_align*
-** description: pass:none[prefix alignment for buffer name, when many buffers are merged with same number (none, left, right (default))]
-** type: integer
-** values: none, left, right
-** default value: `+right+`
-
-* [[option_weechat.look.prefix_buffer_align_max]] *weechat.look.prefix_buffer_align_max*
-** description: pass:none[max size for buffer name, when many buffers are merged with same number (0 = no max size)]
-** type: integer
-** values: 0 .. 128
-** default value: `+0+`
-
-* [[option_weechat.look.prefix_buffer_align_more]] *weechat.look.prefix_buffer_align_more*
-** description: pass:none[char to display if buffer name is truncated (when many buffers are merged with same number) (must be exactly one char on screen)]
-** type: string
-** values: any string
-** default value: `+"+"+`
-
-* [[option_weechat.look.prefix_buffer_align_more_after]] *weechat.look.prefix_buffer_align_more_after*
-** description: pass:none[display the truncature char (by default "+") after the text (by replacing the space that should be displayed here); if disabled, the truncature char replaces last char of text]
-** type: boolean
-** values: on, off
-** default value: `+on+`
-
-* [[option_weechat.look.prefix_error]] *weechat.look.prefix_error*
-** description: pass:none[prefix for error messages (note: content is evaluated, so you can use colors with format "${color:xxx}", see /help eval)]
-** type: string
-** values: any string
-** default value: `+"=!="+`
-
-* [[option_weechat.look.prefix_join]] *weechat.look.prefix_join*
-** description: pass:none[prefix for join messages (note: content is evaluated, so you can use colors with format "${color:xxx}", see /help eval)]
-** type: string
-** values: any string
-** default value: `+"-->"+`
-
-* [[option_weechat.look.prefix_network]] *weechat.look.prefix_network*
-** description: pass:none[prefix for network messages (note: content is evaluated, so you can use colors with format "${color:xxx}", see /help eval)]
-** type: string
-** values: any string
-** default value: `+"--"+`
-
-* [[option_weechat.look.prefix_quit]] *weechat.look.prefix_quit*
-** description: pass:none[prefix for quit messages (note: content is evaluated, so you can use colors with format "${color:xxx}", see /help eval)]
-** type: string
-** values: any string
-** default value: `+"<--"+`
-
-* [[option_weechat.look.prefix_same_nick]] *weechat.look.prefix_same_nick*
-** description: pass:none[prefix displayed for a message with same nick as previous but not next message: use a space " " to hide prefix, another string to display this string instead of prefix, or an empty string to disable feature (display prefix)]
-** type: string
-** values: any string
-** default value: `+""+`
-
-* [[option_weechat.look.prefix_same_nick_middle]] *weechat.look.prefix_same_nick_middle*
-** description: pass:none[prefix displayed for a message with same nick as previous and next message: use a space " " to hide prefix, another string to display this string instead of prefix, or an empty string to disable feature (display prefix)]
-** type: string
-** values: any string
-** default value: `+""+`
-
-* [[option_weechat.look.prefix_suffix]] *weechat.look.prefix_suffix*
-** description: pass:none[string displayed after prefix]
-** type: string
-** values: any string
-** default value: `+"|"+`
-
-* [[option_weechat.look.quote_nick_prefix]] *weechat.look.quote_nick_prefix*
-** description: pass:none[text to display before nick when quoting a message (see /help cursor)]
-** type: string
-** values: any string
-** default value: `+"<"+`
-
-* [[option_weechat.look.quote_nick_suffix]] *weechat.look.quote_nick_suffix*
-** description: pass:none[text to display after nick when quoting a message (see /help cursor)]
-** type: string
-** values: any string
-** default value: `+">"+`
-
-* [[option_weechat.look.quote_time_format]] *weechat.look.quote_time_format*
-** description: pass:none[time format when quoting a message (see /help cursor)]
-** type: string
-** values: any string
-** default value: `+"%H:%M:%S"+`
-
-* [[option_weechat.look.read_marker]] *weechat.look.read_marker*
-** description: pass:none[use a marker (line or char) on buffers to show first unread line]
-** type: integer
-** values: none, line, char
-** default value: `+line+`
-
-* [[option_weechat.look.read_marker_always_show]] *weechat.look.read_marker_always_show*
-** description: pass:none[always show read marker, even if it is after last buffer line]
-** type: boolean
-** values: on, off
-** default value: `+off+`
-
-* [[option_weechat.look.read_marker_string]] *weechat.look.read_marker_string*
-** description: pass:none[string used to draw read marker line (string is repeated until end of line)]
-** type: string
-** values: any string
-** default value: `+"- "+`
-
-* [[option_weechat.look.read_marker_update_on_buffer_switch]] *weechat.look.read_marker_update_on_buffer_switch*
-** description: pass:none[update the read marker when switching buffers]
-** type: boolean
-** values: on, off
-** default value: `+on+`
-
-* [[option_weechat.look.save_config_on_exit]] *weechat.look.save_config_on_exit*
-** description: pass:none[save configuration file on exit]
-** type: boolean
-** values: on, off
-** default value: `+on+`
-
-* [[option_weechat.look.save_config_with_fsync]] *weechat.look.save_config_with_fsync*
-** description: pass:none[use fsync to synchronize the configuration file with the storage device (see man fsync); this is slower but should prevent any data loss in case of power failure during the save of configuration file]
-** type: boolean
-** values: on, off
-** default value: `+off+`
-
-* [[option_weechat.look.save_layout_on_exit]] *weechat.look.save_layout_on_exit*
-** description: pass:none[save layout on exit (buffers, windows, or both)]
-** type: integer
-** values: none, buffers, windows, all
-** default value: `+none+`
-
-* [[option_weechat.look.scroll_amount]] *weechat.look.scroll_amount*
-** description: pass:none[how many lines to scroll by with scroll_up and scroll_down]
-** type: integer
-** values: 1 .. 2147483647
-** default value: `+3+`
-
-* [[option_weechat.look.scroll_bottom_after_switch]] *weechat.look.scroll_bottom_after_switch*
-** description: pass:none[scroll to bottom of window after switch to another buffer (do not remember scroll position in windows); the scroll is done only for buffers with formatted content (not free content)]
-** type: boolean
-** values: on, off
-** default value: `+off+`
-
-* [[option_weechat.look.scroll_page_percent]] *weechat.look.scroll_page_percent*
-** description: pass:none[percent of screen to scroll when scrolling one page up or down (for example 100 means one page, 50 half-page)]
-** type: integer
-** values: 1 .. 100
-** default value: `+100+`
-
-* [[option_weechat.look.search_text_not_found_alert]] *weechat.look.search_text_not_found_alert*
-** description: pass:none[alert user when text sought is not found in buffer]
-** type: boolean
-** values: on, off
-** default value: `+on+`
-
-* [[option_weechat.look.separator_horizontal]] *weechat.look.separator_horizontal*
-** description: pass:none[char used to draw horizontal separators around bars and windows (empty value will draw a real line with ncurses, but may cause bugs with URL selection under some terminals); width on screen must be exactly one char]
-** type: string
-** values: any string
-** default value: `+"-"+`
-
-* [[option_weechat.look.separator_vertical]] *weechat.look.separator_vertical*
-** description: pass:none[char used to draw vertical separators around bars and windows (empty value will draw a real line with ncurses); width on screen must be exactly one char]
-** type: string
-** values: any string
-** default value: `+""+`
-
-* [[option_weechat.look.tab_width]] *weechat.look.tab_width*
-** description: pass:none[number of spaces used to display tabs in messages]
-** type: integer
-** values: 1 .. 64
-** default value: `+1+`
-
-* [[option_weechat.look.time_format]] *weechat.look.time_format*
-** description: pass:none[time format for dates converted to strings and displayed in messages (see man strftime for date/time specifiers)]
-** type: string
-** values: any string
-** default value: `+"%a, %d %b %Y %T"+`
-
-* [[option_weechat.look.window_auto_zoom]] *weechat.look.window_auto_zoom*
-** description: pass:none[automatically zoom on current window if the terminal becomes too small to display all windows (use alt-z to unzoom windows when the terminal is big enough)]
-** type: boolean
-** values: on, off
-** default value: `+off+`
-
-* [[option_weechat.look.window_separator_horizontal]] *weechat.look.window_separator_horizontal*
-** description: pass:none[display an horizontal separator between windows]
-** type: boolean
-** values: on, off
-** default value: `+on+`
-
-* [[option_weechat.look.window_separator_vertical]] *weechat.look.window_separator_vertical*
-** description: pass:none[display a vertical separator between windows]
-** type: boolean
-** values: on, off
-** default value: `+on+`
-
-* [[option_weechat.look.window_title]] *weechat.look.window_title*
-** description: pass:none[title for window (terminal for Curses GUI), set on startup; an empty string will keep title unchanged (note: content is evaluated, see /help eval); example: "WeeChat ${info:version}"]
-** type: string
-** values: any string
-** default value: `+""+`
-
-* [[option_weechat.look.word_chars_highlight]] *weechat.look.word_chars_highlight*
-** description: pass:none[comma-separated list of chars (or range of chars) that are considered part of words for highlights; each item can be a single char, a range of chars (format: a-z), a class of wide character (for example "alnum", see man wctype); a "!" before the item makes it negative (ie the char is NOT considered part of words); the value "*" matches any char; unicode chars are allowed with the format \u1234, for example \u00A0 for unbreakable space (see /help print for supported formats)]
-** type: string
-** values: any string
-** default value: `+"!\u00A0,-,_,|,alnum"+`
-
-* [[option_weechat.look.word_chars_input]] *weechat.look.word_chars_input*
-** description: pass:none[comma-separated list of chars (or range of chars) that are considered part of words for command line; each item can be a single char, a range of chars (format: a-z), a class of wide character (for example "alnum", see man wctype); a "!" before the item makes it negative (ie the char is NOT considered part of words); the value "*" matches any char; unicode chars are allowed with the format \u1234, for example \u00A0 for unbreakable space (see /help print for supported formats)]
-** type: string
-** values: any string
-** default value: `+"!\u00A0,-,_,|,alnum"+`
-
-* [[option_weechat.network.connection_timeout]] *weechat.network.connection_timeout*
-** description: pass:none[timeout (in seconds) for connection to a remote host (made in a child process)]
-** type: integer
-** values: 1 .. 2147483647
-** default value: `+60+`
-
-* [[option_weechat.network.gnutls_ca_system]] *weechat.network.gnutls_ca_system*
-** description: pass:none[load system's default trusted certificate authorities on startup; this can be turned off to save some memory only if you are not using SSL connections at all]
-** type: boolean
-** values: on, off
-** default value: `+on+`
-
-* [[option_weechat.network.gnutls_ca_user]] *weechat.network.gnutls_ca_user*
-** description: pass:none[extra file(s) with certificate authorities; multiple files must be separated by colons (each path is evaluated, see function string_eval_path_home in plugin API reference)]
-** type: string
-** values: any string
-** default value: `+""+`
-
-* [[option_weechat.network.gnutls_handshake_timeout]] *weechat.network.gnutls_handshake_timeout*
-** description: pass:none[timeout (in seconds) for gnutls handshake]
-** type: integer
-** values: 1 .. 2147483647
-** default value: `+30+`
-
-* [[option_weechat.network.proxy_curl]] *weechat.network.proxy_curl*
-** description: pass:none[name of proxy used for download of URLs with Curl (used to download list of scripts and in scripts calling function hook_process); the proxy must be defined with command /proxy]
-** type: string
-** values: any string
-** default value: `+""+`
-
-* [[option_weechat.plugin.autoload]] *weechat.plugin.autoload*
-** description: pass:none[comma separated list of plugins to load automatically at startup, "*" means all plugins found, a name beginning with "!" is a negative value to prevent a plugin from being loaded, wildcard "*" is allowed in names (examples: "*" or "*,!lua,!tcl")]
-** type: string
-** values: any string
-** default value: `+"*"+`
-
-* [[option_weechat.plugin.extension]] *weechat.plugin.extension*
-** description: pass:none[comma separated list of file name extensions for plugins]
-** type: string
-** values: any string
-** default value: `+".so,.dll"+`
-
-* [[option_weechat.plugin.path]] *weechat.plugin.path*
-** description: pass:none[path for searching plugins (path is evaluated, see function string_eval_path_home in plugin API reference)]
-** type: string
-** values: any string
-** default value: `+"${weechat_data_dir}/plugins"+`
-
-* [[option_weechat.plugin.save_config_on_unload]] *weechat.plugin.save_config_on_unload*
-** description: pass:none[save configuration files when unloading plugins]
-** type: boolean
-** values: on, off
-** default value: `+on+`
-
-* [[option_weechat.signal.sighup]] *weechat.signal.sighup*
-** description: pass:none[command to execute when the signal is received, multiple commands can be separated by semicolons (note: commands are evaluated, see /help eval)]
-** type: string
-** values: any string
-** default value: `+"${if:${info:weechat_headless}?/reload:/quit -yes}"+`
-
-* [[option_weechat.signal.sigquit]] *weechat.signal.sigquit*
-** description: pass:none[command to execute when the signal is received, multiple commands can be separated by semicolons (note: commands are evaluated, see /help eval)]
-** type: string
-** values: any string
-** default value: `+"/quit -yes"+`
-
-* [[option_weechat.signal.sigterm]] *weechat.signal.sigterm*
-** description: pass:none[command to execute when the signal is received, multiple commands can be separated by semicolons (note: commands are evaluated, see /help eval)]
-** type: string
-** values: any string
-** default value: `+"/quit -yes"+`
-
-* [[option_weechat.signal.sigusr1]] *weechat.signal.sigusr1*
-** description: pass:none[command to execute when the signal is received, multiple commands can be separated by semicolons (note: commands are evaluated, see /help eval)]
-** type: string
-** values: any string
-** default value: `+""+`
-
-* [[option_weechat.signal.sigusr2]] *weechat.signal.sigusr2*
-** description: pass:none[command to execute when the signal is received, multiple commands can be separated by semicolons (note: commands are evaluated, see /help eval)]
-** type: string
-** values: any string
-** default value: `+""+`
-
-* [[option_weechat.startup.command_after_plugins]] *weechat.startup.command_after_plugins*
-** description: pass:none[command executed when WeeChat starts, after loading plugins; multiple commands can be separated by semicolons (note: commands are evaluated, see /help eval)]
-** type: string
-** values: any string
-** default value: `+""+`
-
-* [[option_weechat.startup.command_before_plugins]] *weechat.startup.command_before_plugins*
-** description: pass:none[command executed when WeeChat starts, before loading plugins; multiple commands can be separated by semicolons (note: commands are evaluated, see /help eval)]
-** type: string
-** values: any string
-** default value: `+""+`
-
-* [[option_weechat.startup.display_logo]] *weechat.startup.display_logo*
-** description: pass:none[display WeeChat logo at startup]
-** type: boolean
-** values: on, off
-** default value: `+on+`
-
-* [[option_weechat.startup.display_version]] *weechat.startup.display_version*
-** description: pass:none[display WeeChat version at startup]
-** type: boolean
-** values: on, off
-** default value: `+on+`
-
-* [[option_weechat.startup.sys_rlimit]] *weechat.startup.sys_rlimit*
-** description: pass:none[set resource limits for WeeChat process, format is: "res1:limit1,res2:limit2"; resource name is the end of constant (RLIMIT_XXX) in lower case (see man setrlimit for values); limit -1 means "unlimited"; example: set unlimited size for core file and max 1GB of virtual memory: "core:-1,as:1000000000"]
-** type: string
-** values: any string
-** default value: `+""+`
-// end::weechat_options[]
-
-// tag::charset_options[]
-* [[option_charset.default.decode]] *charset.default.decode*
-** description: pass:none[global decoding charset: charset used to decode incoming messages when they are not UTF-8 valid]
-** type: string
-** values: any string
-** default value: `+"iso-8859-1"+`
-
-* [[option_charset.default.encode]] *charset.default.encode*
-** description: pass:none[global encoding charset: charset used to encode outgoing messages (if empty, default is UTF-8 because it is the WeeChat internal charset)]
-** type: string
-** values: any string
-** default value: `+""+`
-// end::charset_options[]
+** default value: `+yellow+`
-// tag::logger_options[]
-* [[option_logger.color.backlog_end]] *logger.color.backlog_end*
-** description: pass:none[color for line ending the backlog]
+* [[option_fset.color.section_selected]] *fset.color.section_selected*
+** description: pass:none[color for section on the selected line]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+default+`
+** default value: `+white+`
-* [[option_logger.color.backlog_line]] *logger.color.backlog_line*
-** description: pass:none[color for backlog lines, used only if the option logger.file.color_lines is off]
+* [[option_fset.color.string_values]] *fset.color.string_values*
+** description: pass:none[color for string values]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** default value: `+default+`
-* [[option_logger.file.auto_log]] *logger.file.auto_log*
-** description: pass:none[automatically save content of buffers to files (unless a buffer disables log); if disabled, logging is disabled on all buffers]
-** type: boolean
-** values: on, off
-** default value: `+on+`
-
-* [[option_logger.file.color_lines]] *logger.file.color_lines*
-** description: pass:none[use ANSI color codes in lines written in log files and display backlog lines with these colors]
-** type: boolean
-** values: on, off
-** default value: `+off+`
-
-* [[option_logger.file.flush_delay]] *logger.file.flush_delay*
-** description: pass:none[number of seconds between flush of log files (0 = write in log files immediately for each line printed)]
-** type: integer
-** values: 0 .. 3600
-** default value: `+120+`
-
-* [[option_logger.file.fsync]] *logger.file.fsync*
-** description: pass:none[use fsync to synchronize the log file with the storage device after the flush (see man fsync); this is slower but should prevent any data loss in case of power failure during the save of log file]
-** type: boolean
-** values: on, off
-** default value: `+off+`
-
-* [[option_logger.file.info_lines]] *logger.file.info_lines*
-** description: pass:none[write information line in log file when log starts or ends for a buffer]
-** type: boolean
-** values: on, off
-** default value: `+off+`
-
-* [[option_logger.file.mask]] *logger.file.mask*
-** description: pass:none[default file name mask for log files (format is "directory/to/file" or "file", without first "/" because "path" option is used to build complete path to file); local buffer variables are permitted (you should use only variables that are defined on all buffers, so for example you should NOT use $server nor $channel); date specifiers are permitted (see man strftime)]
-** type: string
-** values: any string
-** default value: `+"$plugin.$name.weechatlog"+`
-
-* [[option_logger.file.name_lower_case]] *logger.file.name_lower_case*
-** description: pass:none[use only lower case for log filenames]
-** type: boolean
-** values: on, off
-** default value: `+on+`
-
-* [[option_logger.file.nick_prefix]] *logger.file.nick_prefix*
-** description: pass:none[text to write before nick in prefix of message, example: "<"]
-** type: string
-** values: any string
-** default value: `+""+`
-
-* [[option_logger.file.nick_suffix]] *logger.file.nick_suffix*
-** description: pass:none[text to write after nick in prefix of message, example: ">"]
-** type: string
-** values: any string
-** default value: `+""+`
-
-* [[option_logger.file.path]] *logger.file.path*
-** description: pass:none[path for WeeChat log files; date specifiers are permitted (see man strftime) (path is evaluated, see function string_eval_path_home in plugin API reference)]
-** type: string
-** values: any string
-** default value: `+"${weechat_data_dir}/logs"+`
-
-* [[option_logger.file.replacement_char]] *logger.file.replacement_char*
-** description: pass:none[replacement char for special chars in filename built with mask (like directory delimiter)]
-** type: string
-** values: any string
-** default value: `+"_"+`
-
-* [[option_logger.file.rotation_compression_level]] *logger.file.rotation_compression_level*
-** description: pass:none[compression level for rotated log files (with extension ".1", ".2", etc.), if option logger.file.rotation_compression_type is enabled: 1 = low compression / fast ... 100 = best compression / slow; the value is a percentage converted to 1-9 for gzip and 1-19 for zstd; the default value is recommended, it offers a good compromise between compression and speed]
-** type: integer
-** values: 1 .. 100
-** default value: `+20+`
-
-* [[option_logger.file.rotation_compression_type]] *logger.file.rotation_compression_type*
-** description: pass:none[compression type for rotated log files; if set to "none", rotated log files are not compressed; WARNING: if rotation was enabled with another type of compression (or no compression), you must first unload the logger plugin, compress files with the new type (or decompress files), then change the option in logger.conf, then load the logger plugin]
-** type: integer
-** values: none, gzip, zstd
-** default value: `+none+`
-
-* [[option_logger.file.rotation_size_max]] *logger.file.rotation_size_max*
-** description: pass:none[when this size is reached, a rotation of log files is performed: the existing rotated log files are renamed (.1 becomes .2, .2 becomes .3, etc.) and the current file is renamed with extension .1; an integer number with a suffix is allowed: b = bytes (default if no unit given), k = kilobytes, m = megabytes, g = gigabytes, t = terabytes; example: "2g" causes a rotation if the file size is > 2,000,000,000 bytes; if set to "0", no rotation is performed (unlimited log size); WARNING: before changing this option, you should first set the compression type via option logger.file.rotation_compression_type]
-** type: string
-** values: any string
-** default value: `+"0"+`
-
-* [[option_logger.file.time_format]] *logger.file.time_format*
-** description: pass:none[timestamp used in log files (see man strftime for date/time specifiers)]
-** type: string
-** values: any string
-** default value: `+"%Y-%m-%d %H:%M:%S"+`
-
-* [[option_logger.look.backlog]] *logger.look.backlog*
-** description: pass:none[maximum number of lines to display from log file when creating new buffer (0 = no backlog)]
-** type: integer
-** values: 0 .. 2147483647
-** default value: `+20+`
-
-* [[option_logger.look.backlog_conditions]] *logger.look.backlog_conditions*
-** description: pass:none[conditions to display the backlog (note: content is evaluated, see /help eval); empty value displays the backlog on all buffers; for example to display backlog on private buffers only: "${type} == private"]
-** type: string
-** values: any string
-** default value: `+""+`
-// end::logger_options[]
-
-// tag::exec_options[]
-* [[option_exec.color.flag_finished]] *exec.color.flag_finished*
-** description: pass:none[text color for a finished command flag in list of commands]
+* [[option_fset.color.string_values_selected]] *fset.color.string_values_selected*
+** description: pass:none[color for string values on the selected line]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+lightred+`
+** default value: `+white+`
-* [[option_exec.color.flag_running]] *exec.color.flag_running*
-** description: pass:none[text color for a running command flag in list of commands]
+* [[option_fset.color.title_count_options]] *fset.color.title_count_options*
+** description: pass:none[color for the count of options found with the current filter in title of buffer]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+lightgreen+`
-
-* [[option_exec.command.default_options]] *exec.command.default_options*
-** description: pass:none[default options for command /exec (see /help exec); example: "-nosh -bg" to run all commands in background (no output), and without using the shell]
-** type: string
-** values: any string
-** default value: `+""+`
-
-* [[option_exec.command.purge_delay]] *exec.command.purge_delay*
-** description: pass:none[delay for purging finished commands (in seconds, 0 = purge commands immediately, -1 = never purge)]
-** type: integer
-** values: -1 .. 25920000
-** default value: `+0+`
-
-* [[option_exec.command.shell]] *exec.command.shell*
-** description: pass:none[shell to use with command "/exec -sh"; it can be just the name of shell if it is in PATH (for example "bash") or the absolute path to the shell (for example "/bin/bash"); if value is empty, "sh" is used (note: content is evaluated, see /help eval)]
-** type: string
-** values: any string
-** default value: `+"${env:SHELL}"+`
-// end::exec_options[]
+** default value: `+cyan+`
-// tag::trigger_options[]
-* [[option_trigger.color.flag_command]] *trigger.color.flag_command*
-** description: pass:none[text color for command flag (in /trigger list)]
+* [[option_fset.color.title_current_option]] *fset.color.title_current_option*
+** description: pass:none[color for current option number in title of buffer]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+lightgreen+`
+** default value: `+lightcyan+`
-* [[option_trigger.color.flag_conditions]] *trigger.color.flag_conditions*
-** description: pass:none[text color for conditions flag (in /trigger list)]
+* [[option_fset.color.title_filter]] *fset.color.title_filter*
+** description: pass:none[color for filter in title of buffer]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** default value: `+yellow+`
-* [[option_trigger.color.flag_post_action]] *trigger.color.flag_post_action*
-** description: pass:none[text color for post action flag (in /trigger list)]
+* [[option_fset.color.title_marked_options]] *fset.color.title_marked_options*
+** description: pass:none[color for number of marked options in title of buffer]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+lightblue+`
+** default value: `+lightgreen+`
-* [[option_trigger.color.flag_regex]] *trigger.color.flag_regex*
-** description: pass:none[text color for regex flag (in /trigger list)]
+* [[option_fset.color.title_sort]] *fset.color.title_sort*
+** description: pass:none[color for sort in title of buffer]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+lightcyan+`
+** default value: `+white+`
-* [[option_trigger.color.flag_return_code]] *trigger.color.flag_return_code*
-** description: pass:none[text color for return code flag (in /trigger list)]
+* [[option_fset.color.type]] *fset.color.type*
+** description: pass:none[color for type]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+lightmagenta+`
+** default value: `+green+`
-* [[option_trigger.color.identifier]] *trigger.color.identifier*
-** description: pass:none[text color for trigger context identifier in monitor buffer]
+* [[option_fset.color.type_selected]] *fset.color.type_selected*
+** description: pass:none[color for type on the selected line]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+cyan+`
+** default value: `+lightgreen+`
-* [[option_trigger.color.regex]] *trigger.color.regex*
-** description: pass:none[text color for regular expressions]
+* [[option_fset.color.unmarked]] *fset.color.unmarked*
+** description: pass:none[color for mark indicator when the option is not marked]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+white+`
+** default value: `+default+`
-* [[option_trigger.color.replace]] *trigger.color.replace*
-** description: pass:none[text color for replacement text (for regular expressions)]
+* [[option_fset.color.unmarked_selected]] *fset.color.unmarked_selected*
+** description: pass:none[color for mark indicator when the option is not marked on the selected line]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+cyan+`
+** default value: `+white+`
-* [[option_trigger.color.trigger]] *trigger.color.trigger*
-** description: pass:none[text color for trigger name]
+* [[option_fset.color.value]] *fset.color.value*
+** description: pass:none[color for value]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+green+`
+** default value: `+cyan+`
-* [[option_trigger.color.trigger_disabled]] *trigger.color.trigger_disabled*
-** description: pass:none[text color for disabled trigger name]
+* [[option_fset.color.value_changed]] *fset.color.value_changed*
+** description: pass:none[color for value changed (different from default)]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+red+`
-
-* [[option_trigger.look.enabled]] *trigger.look.enabled*
-** description: pass:none[enable trigger support]
-** type: boolean
-** values: on, off
-** default value: `+on+`
-
-* [[option_trigger.look.monitor_strip_colors]] *trigger.look.monitor_strip_colors*
-** description: pass:none[strip colors in hashtable values displayed on monitor buffer]
-** type: boolean
-** values: on, off
-** default value: `+off+`
-// end::trigger_options[]
-
-// tag::spell_options[]
-* [[option_spell.check.commands]] *spell.check.commands*
-** description: pass:none[comma separated list of commands for which spell checking is enabled (spell checking is disabled for all other commands)]
-** type: string
-** values: any string
-** default value: `+"away,command,cycle,kick,kickban,me,msg,notice,part,query,quit,topic"+`
-
-* [[option_spell.check.default_dict]] *spell.check.default_dict*
-** description: pass:none[default dictionary (or comma separated list of dictionaries) to use when buffer has no dictionary defined (leave blank to disable spell checker on buffers for which you didn't explicitly enabled it)]
-** type: string
-** values: any string
-** default value: `+""+`
-
-* [[option_spell.check.during_search]] *spell.check.during_search*
-** description: pass:none[check words during text search in buffer]
-** type: boolean
-** values: on, off
-** default value: `+off+`
-
-* [[option_spell.check.enabled]] *spell.check.enabled*
-** description: pass:none[enable spell checker for command line]
-** type: boolean
-** values: on, off
-** default value: `+off+`
-
-* [[option_spell.check.real_time]] *spell.check.real_time*
-** description: pass:none[real-time spell checking of words (slower, disabled by default: words are checked only if there's delimiter after)]
-** type: boolean
-** values: on, off
-** default value: `+off+`
-
-* [[option_spell.check.suggestions]] *spell.check.suggestions*
-** description: pass:none[number of suggestions to display in bar item "spell_suggest" for each dictionary set in buffer (-1 = disable suggestions, 0 = display all possible suggestions in all languages)]
-** type: integer
-** values: -1 .. 2147483647
-** default value: `+-1+`
-
-* [[option_spell.check.word_min_length]] *spell.check.word_min_length*
-** description: pass:none[minimum length for a word to be spell checked (use 0 to check all words)]
-** type: integer
-** values: 0 .. 2147483647
-** default value: `+2+`
+** default value: `+brown+`
-* [[option_spell.color.misspelled]] *spell.color.misspelled*
-** description: pass:none[text color for misspelled words (input bar)]
+* [[option_fset.color.value_changed_selected]] *fset.color.value_changed_selected*
+** description: pass:none[color for value changed (different from default) on the selected line]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+lightred+`
+** default value: `+yellow+`
-* [[option_spell.color.suggestion]] *spell.color.suggestion*
-** description: pass:none[text color for suggestion on a misspelled word in bar item "spell_suggest"]
+* [[option_fset.color.value_selected]] *fset.color.value_selected*
+** description: pass:none[color for value on the selected line]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+default+`
+** default value: `+lightcyan+`
-* [[option_spell.color.suggestion_delimiter_dict]] *spell.color.suggestion_delimiter_dict*
-** description: pass:none[text color for delimiters displayed between two dictionaries in bar item "spell_suggest"]
+* [[option_fset.color.value_undef]] *fset.color.value_undef*
+** description: pass:none[color for undefined value]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+cyan+`
+** default value: `+magenta+`
-* [[option_spell.color.suggestion_delimiter_word]] *spell.color.suggestion_delimiter_word*
-** description: pass:none[text color for delimiters displayed between two words in bar item "spell_suggest"]
+* [[option_fset.color.value_undef_selected]] *fset.color.value_undef_selected*
+** description: pass:none[color for undefined value on the selected line]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+cyan+`
-
-* [[option_spell.look.suggestion_delimiter_dict]] *spell.look.suggestion_delimiter_dict*
-** description: pass:none[delimiter displayed between two dictionaries in bar item "spell_suggest"]
-** type: string
-** values: any string
-** default value: `+" / "+`
-
-* [[option_spell.look.suggestion_delimiter_word]] *spell.look.suggestion_delimiter_word*
-** description: pass:none[delimiter displayed between two words in bar item "spell_suggest"]
-** type: string
-** values: any string
-** default value: `+","+`
-// end::spell_options[]
-
-// tag::buflist_options[]
-* [[option_buflist.format.buffer]] *buflist.format.buffer*
-** description: pass:none[format of each line with a buffer (note: content is evaluated, see /help buflist); example: standard format for bar item "buflist" and only the buffer number between square brackets for other bar items ("buflist2" and "buflist3"): "${if:${bar_item.name}==buflist?${format_number}${indent}${format_nick_prefix}${color_hotlist}${format_name}:[${number}\]}"]
-** type: string
-** values: any string
-** default value: `+"${format_number}${indent}${format_nick_prefix}${color_hotlist}${format_name}"+`
-
-* [[option_buflist.format.buffer_current]] *buflist.format.buffer_current*
-** description: pass:none[format for the line with current buffer (note: content is evaluated, see /help buflist)]
-** type: string
-** values: any string
-** default value: `+"${color:,blue}${format_buffer}"+`
-
-* [[option_buflist.format.hotlist]] *buflist.format.hotlist*
-** description: pass:none[format for hotlist (note: content is evaluated, see /help buflist)]
-** type: string
-** values: any string
-** default value: `+" ${color:green}(${hotlist}${color:green})"+`
-
-* [[option_buflist.format.hotlist_highlight]] *buflist.format.hotlist_highlight*
-** description: pass:none[format for a buffer with hotlist level "highlight" (note: content is evaluated, see /help buflist)]
-** type: string
-** values: any string
-** default value: `+"${color:magenta}"+`
-
-* [[option_buflist.format.hotlist_low]] *buflist.format.hotlist_low*
-** description: pass:none[format for a buffer with hotlist level "low" (note: content is evaluated, see /help buflist)]
-** type: string
-** values: any string
-** default value: `+"${color:white}"+`
-
-* [[option_buflist.format.hotlist_message]] *buflist.format.hotlist_message*
-** description: pass:none[format for a buffer with hotlist level "message" (note: content is evaluated, see /help buflist)]
-** type: string
-** values: any string
-** default value: `+"${color:brown}"+`
-
-* [[option_buflist.format.hotlist_none]] *buflist.format.hotlist_none*
-** description: pass:none[format for a buffer not in hotlist (note: content is evaluated, see /help buflist)]
-** type: string
-** values: any string
-** default value: `+"${color:default}"+`
-
-* [[option_buflist.format.hotlist_private]] *buflist.format.hotlist_private*
-** description: pass:none[format for a buffer with hotlist level "private" (note: content is evaluated, see /help buflist)]
-** type: string
-** values: any string
-** default value: `+"${color:green}"+`
-
-* [[option_buflist.format.hotlist_separator]] *buflist.format.hotlist_separator*
-** description: pass:none[separator for counts in hotlist (note: content is evaluated, see /help buflist)]
-** type: string
-** values: any string
-** default value: `+"${color:default},"+`
+** default value: `+lightmagenta+`
-* [[option_buflist.format.indent]] *buflist.format.indent*
-** description: pass:none[string displayed to indent channel and private buffers (note: content is evaluated, see /help buflist)]
+* [[option_fset.format.export_help]] *fset.format.export_help*
+** description: pass:none[format of help line written before each option exported in a file (note: content is evaluated, see /help fset)]
** type: string
** values: any string
-** default value: `+" "+`
+** default value: `+"# ${description2}"+`
-* [[option_buflist.format.lag]] *buflist.format.lag*
-** description: pass:none[format for lag on an IRC server buffer (note: content is evaluated, see /help buflist)]
+* [[option_fset.format.export_option]] *fset.format.export_option*
+** description: pass:none[format of each option exported in a file (note: content is evaluated, see /help fset)]
** type: string
** values: any string
-** default value: `+" ${color:green}[${color:brown}${lag}${color:green}]"+`
+** default value: `+"/set ${name} ${quoted_value}"+`
-* [[option_buflist.format.name]] *buflist.format.name*
-** description: pass:none[format for buffer name (note: content is evaluated, see /help buflist)]
+* [[option_fset.format.export_option_null]] *fset.format.export_option_null*
+** description: pass:none[format of each option with "null" value exported in a file (note: content is evaluated, see /help fset)]
** type: string
** values: any string
-** default value: `+"${name}"+`
+** default value: `+"/unset ${name}"+`
-* [[option_buflist.format.nick_prefix]] *buflist.format.nick_prefix*
-** description: pass:none[format for nick prefix on a channel (note: content is evaluated, see /help buflist)]
+* [[option_fset.format.option1]] *fset.format.option1*
+** description: pass:none[first format of each line, used when option fset.look.format_number is set to 1 (note: content is evaluated, see /help fset); an empty string uses the default format ("${marked} ${name} ${type} ${value2}"), which is without evaluation of string and then much faster; formats can be switched with key ctrl+X]
** type: string
** values: any string
-** default value: `+"${color_nick_prefix}${nick_prefix}"+`
+** default value: `+""+`
-* [[option_buflist.format.number]] *buflist.format.number*
-** description: pass:none[format for buffer number, ${number} is the indented number (note: content is evaluated, see /help buflist)]
+* [[option_fset.format.option2]] *fset.format.option2*
+** description: pass:none[second format of each line, used when option fset.look.format_number is set to 2 (note: content is evaluated, see /help fset); an empty string uses the default format ("${marked} ${name} ${type} ${value2}"), which is without evaluation of string and then much faster; formats can be switched with key ctrl+X]
** type: string
** values: any string
-** default value: `+"${color:green}${number}${if:${number_displayed}?.: }"+`
+** default value: `+"${marked} ${name} ${type} ${value2}${newline} ${empty_name} ${_default_value}${color:darkgray} -- ${min}..${max}${newline} ${empty_name} ${description}"+`
-* [[option_buflist.format.tls_version]] *buflist.format.tls_version*
-** description: pass:none[format for TLS version on an IRC server buffer (note: content is evaluated, see /help buflist)]
+* [[option_fset.look.auto_refresh]] *fset.look.auto_refresh*
+** description: pass:none[comma separated list of options to automatically refresh on the fset buffer (if opened); "*" means all options (recommended), a name beginning with "!" is a negative value to prevent an option to be refreshed, wildcard "*" is allowed in names (example: "*,!plugin.section.*")]
** type: string
** values: any string
-** default value: `+" ${color:default}(${if:${tls_version}==TLS1.3?${color:green}:${if:${tls_version}==TLS1.2?${color:yellow}:${color:red}}}${translate:${tls_version}}${color:default})"+`
+** default value: `+"*"+`
-* [[option_buflist.look.add_newline]] *buflist.look.add_newline*
-** description: pass:none[add newline between the buffers displayed, so each buffer is displayed on a separate line (recommended); if disabled, newlines must be manually added in the formats with "${\n}", and the mouse actions are not possible any more]
+* [[option_fset.look.auto_unmark]] *fset.look.auto_unmark*
+** description: pass:none[automatically unmark all options after an action on marked options or after a refresh]
** type: boolean
** values: on, off
-** default value: `+on+`
-
-* [[option_buflist.look.auto_scroll]] *buflist.look.auto_scroll*
-** description: pass:none[automatically scroll the buflist bar to always see the current buffer (this works only with a bar on the left/right position with a "vertical" filling); this value is the percent number of lines displayed before the current buffer when scrolling (-1 = disable scroll); for example 50 means that after a scroll, the current buffer is at the middle of bar, 0 means on top of bar, 100 means at bottom of bar]
-** type: integer
-** values: -1 .. 100
-** default value: `+50+`
+** default value: `+off+`
-* [[option_buflist.look.display_conditions]] *buflist.look.display_conditions*
-** description: pass:none[conditions to display a buffer (note: content is evaluated, see /help buflist); for example to hide server buffers if they are merged with core buffer: "${buffer.hidden}==0 && ((${type}!=server && ${buffer.full_name}!=core.weechat) || ${buffer.active}==1)"]
+* [[option_fset.look.condition_catch_set]] *fset.look.condition_catch_set*
+** description: 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]
** type: string
** values: any string
-** default value: `+"${buffer.hidden}==0"+`
-
-* [[option_buflist.look.enabled]] *buflist.look.enabled*
-** description: pass:none[enable buflist; it is recommended to use this option instead of just hiding the bar because it also removes some internal hooks that are not needed any more when the bar is hidden; you can also use the command "/buflist toggle" or use the default key alt+shift+b]
-** type: boolean
-** values: on, off
-** default value: `+on+`
-
-* [[option_buflist.look.mouse_jump_visited_buffer]] *buflist.look.mouse_jump_visited_buffer*
-** description: pass:none[if enabled, clicks with left/right buttons on the line with current buffer jump to previous/next visited buffer]
-** type: boolean
-** values: on, off
-** default value: `+off+`
-
-* [[option_buflist.look.mouse_move_buffer]] *buflist.look.mouse_move_buffer*
-** description: pass:none[if enabled, mouse gestures (drag & drop) move buffers in list]
-** type: boolean
-** values: on, off
-** default value: `+on+`
-
-* [[option_buflist.look.mouse_wheel]] *buflist.look.mouse_wheel*
-** description: pass:none[if enabled, mouse wheel up/down actions jump to previous/next buffer in list]
-** type: boolean
-** values: on, off
-** default value: `+on+`
-
-* [[option_buflist.look.nick_prefix]] *buflist.look.nick_prefix*
-** description: pass:none[get the nick prefix and its color from nicklist so that ${nick_prefix} can be used in format; this can be slow on buffers with lot of nicks in nicklist, so this option is disabled by default]
-** type: boolean
-** values: on, off
-** default value: `+off+`
+** default value: `+"${count} >= 1"+`
-* [[option_buflist.look.nick_prefix_empty]] *buflist.look.nick_prefix_empty*
-** description: pass:none[when the nick prefix is enabled, display a space instead if there is no nick prefix on the buffer]
+* [[option_fset.look.export_help_default]] *fset.look.export_help_default*
+** description: pass:none[write help for each option exported by default (this can be overridden with arguments "-help" and "-nohelp" for command /fset -export)]
** type: boolean
** values: on, off
** default value: `+on+`
-* [[option_buflist.look.signals_refresh]] *buflist.look.signals_refresh*
-** description: pass:none[comma-separated list of extra signals that are hooked and trigger the refresh of buffers list; this can be useful if some custom variables are used in formats and need specific refresh]
-** type: string
-** values: any string
-** default value: `+""+`
-
-* [[option_buflist.look.sort]] *buflist.look.sort*
-** description: pass:none[comma-separated list of fields to sort buffers; each field is a hdata variable of buffer ("var"), a hdata variable of IRC server ("irc_server.var") or a hdata variable of IRC channel ("irc_channel.var"); char "-" can be used before field to reverse order, char "~" can be used to do a case insensitive comparison; example: "-~short_name" for case insensitive and reverse sort on buffer short name (note: the content is evaluated, before being split into fields, but at that time "bar_item" is the only variable that can be used, to distinguish between different buflist items, for example "${bar_item.name}")]
-** type: string
-** values: any string
-** default value: `+"number,-active"+`
-
-* [[option_buflist.look.use_items]] *buflist.look.use_items*
-** description: pass:none[number of buflist bar items that can be used; the item names are: "buflist", "buflist2", "buflist3"; be careful, using more than one bar item slows down the display of buffers list]
+* [[option_fset.look.format_number]] *fset.look.format_number*
+** description: pass:none[number of format used to display options; this is dynamically changed by the key ctrl-X on the fset buffer]
** type: integer
-** values: 1 .. 3
+** values: 1 .. 2
** default value: `+1+`
-// end::buflist_options[]
-// tag::fifo_options[]
-* [[option_fifo.file.enabled]] *fifo.file.enabled*
-** description: pass:none[enable FIFO pipe]
-** type: boolean
-** values: on, off
-** default value: `+on+`
-
-* [[option_fifo.file.path]] *fifo.file.path*
-** description: pass:none[path for FIFO file; WeeChat PID can be used in path with ${info:pid} (path is evaluated, see function string_eval_path_home in plugin API reference)]
+* [[option_fset.look.marked_string]] *fset.look.marked_string*
+** description: pass:none[string displayed when an option is marked (to do an action on multiple options)]
** type: string
** values: any string
-** default value: `+"${weechat_runtime_dir}/weechat_fifo_${info:pid}"+`
-// end::fifo_options[]
-
-// tag::typing_options[]
-* [[option_typing.look.delay_purge_paused]] *typing.look.delay_purge_paused*
-** description: pass:none[number of seconds after paused status has been set: if reached, the typing status is removed]
-** type: integer
-** values: 1 .. 2147483647
-** default value: `+30+`
-
-* [[option_typing.look.delay_purge_typing]] *typing.look.delay_purge_typing*
-** description: pass:none[number of seconds after typing status has been set: if reached, the typing status is removed]
-** type: integer
-** values: 1 .. 2147483647
-** default value: `+6+`
+** default value: `+"*"+`
-* [[option_typing.look.delay_set_paused]] *typing.look.delay_set_paused*
-** description: pass:none[number of seconds after typing last char: if reached, the typing status becomes "paused" and no more typing signals are sent]
+* [[option_fset.look.scroll_horizontal]] *fset.look.scroll_horizontal*
+** description: pass:none[left/right scroll in fset buffer (percent of width)]
** type: integer
-** values: 1 .. 2147483647
+** values: 1 .. 100
** default value: `+10+`
-* [[option_typing.look.enabled_nicks]] *typing.look.enabled_nicks*
-** description: pass:none[typing enabled for other nicks (display typing info for nicks typing in the current buffer)]
-** type: boolean
-** values: on, off
-** default value: `+off+`
-
-* [[option_typing.look.enabled_self]] *typing.look.enabled_self*
-** description: pass:none[typing enabled for self messages (send typing info to other users)]
-** type: boolean
-** values: on, off
-** default value: `+off+`
-
-* [[option_typing.look.input_min_chars]] *typing.look.input_min_chars*
-** description: pass:none[min number of chars in message to trigger send of typing signals]
-** type: integer
-** values: 1 .. 2147483647
-** default value: `+4+`
-
-* [[option_typing.look.item_max_length]] *typing.look.item_max_length*
-** description: pass:none[max number of chars displayed in the bar item "typing" (0 = do not truncate content)]
-** type: integer
-** values: 0 .. 2147483647
-** default value: `+0+`
-// end::typing_options[]
-
-// tag::xfer_options[]
-* [[option_xfer.color.status_aborted]] *xfer.color.status_aborted*
-** description: pass:none[text color for "aborted" status]
-** type: color
-** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+lightred+`
-
-* [[option_xfer.color.status_active]] *xfer.color.status_active*
-** description: pass:none[text color for "active" status]
-** type: color
-** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+lightblue+`
-
-* [[option_xfer.color.status_connecting]] *xfer.color.status_connecting*
-** description: pass:none[text color for "connecting" status]
-** type: color
-** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+yellow+`
-
-* [[option_xfer.color.status_done]] *xfer.color.status_done*
-** description: pass:none[text color for "done" status]
-** type: color
-** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+lightgreen+`
-
-* [[option_xfer.color.status_failed]] *xfer.color.status_failed*
-** description: pass:none[text color for "failed" status]
-** type: color
-** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+lightred+`
-
-* [[option_xfer.color.status_waiting]] *xfer.color.status_waiting*
-** description: pass:none[text color for "waiting" status]
-** type: color
-** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+lightcyan+`
-
-* [[option_xfer.color.text]] *xfer.color.text*
-** description: pass:none[text color in xfer buffer]
-** type: color
-** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+default+`
-
-* [[option_xfer.color.text_bg]] *xfer.color.text_bg*
-** description: pass:none[background color in xfer buffer]
-** type: color
-** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+default+`
-
-* [[option_xfer.color.text_selected]] *xfer.color.text_selected*
-** description: pass:none[text color of selected line in xfer buffer]
-** type: color
-** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+white+`
-
-* [[option_xfer.file.auto_accept_chats]] *xfer.file.auto_accept_chats*
-** description: pass:none[automatically accept chat requests (use carefully!)]
+* [[option_fset.look.show_plugins_desc]] *fset.look.show_plugins_desc*
+** description: pass:none[show the plugin description options (plugins.desc.*)]
** type: boolean
** values: on, off
** default value: `+off+`
-* [[option_xfer.file.auto_accept_files]] *xfer.file.auto_accept_files*
-** description: pass:none[automatically accept incoming files (use carefully!)]
-** type: boolean
-** values: on, off
-** default value: `+off+`
+* [[option_fset.look.sort]] *fset.look.sort*
+** description: 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]
+** type: string
+** values: any string
+** default value: `+"~name"+`
-* [[option_xfer.file.auto_accept_nicks]] *xfer.file.auto_accept_nicks*
-** description: pass:none[comma-separated list of nicks for which the incoming files and chats are automatically accepted; format is "server.nick" (for a specific server) or "nick" (for all servers); example: "libera.FlashCode,andrew"]
+* [[option_fset.look.unmarked_string]] *fset.look.unmarked_string*
+** description: pass:none[string displayed when an option is not marked]
** type: string
** values: any string
-** default value: `+""+`
+** default value: `+" "+`
-* [[option_xfer.file.auto_check_crc32]] *xfer.file.auto_check_crc32*
-** description: pass:none[automatically check CRC32 file checksum if it is found in the filename (8 hexadecimal chars)]
+* [[option_fset.look.use_color_value]] *fset.look.use_color_value*
+** description: pass:none[use the color to display value of color options]
** type: boolean
** values: on, off
** default value: `+off+`
-* [[option_xfer.file.auto_rename]] *xfer.file.auto_rename*
-** description: pass:none[rename incoming files if already exists (add ".1", ".2", ...)]
-** type: boolean
-** values: on, off
-** default value: `+on+`
-
-* [[option_xfer.file.auto_resume]] *xfer.file.auto_resume*
-** description: pass:none[automatically resume file transfer if connection with remote host is lost]
-** type: boolean
-** values: on, off
-** default value: `+on+`
-
-* [[option_xfer.file.convert_spaces]] *xfer.file.convert_spaces*
-** description: pass:none[convert spaces to underscores when sending and receiving files]
-** type: boolean
-** values: on, off
-** default value: `+on+`
-
-* [[option_xfer.file.download_path]] *xfer.file.download_path*
-** description: pass:none[path for writing incoming files (path is evaluated, see function string_eval_path_home in plugin API reference)]
-** type: string
-** values: any string
-** default value: `+"${weechat_data_dir}/xfer"+`
-
-* [[option_xfer.file.download_temporary_suffix]] *xfer.file.download_temporary_suffix*
-** description: pass:none[temporary filename suffix used during the transfer for a file received, it is removed after successful transfer; if empty string, no filename suffix is used during the transfer]
-** type: string
-** values: any string
-** default value: `+".part"+`
-
-* [[option_xfer.file.upload_path]] *xfer.file.upload_path*
-** description: pass:none[path for reading files when sending (path is evaluated, see function string_eval_path_home in plugin API reference)]
-** type: string
-** values: any string
-** default value: `+"~"+`
-
-* [[option_xfer.file.use_nick_in_filename]] *xfer.file.use_nick_in_filename*
-** description: pass:none[use remote nick as prefix in local filename when receiving a file]
+* [[option_fset.look.use_keys]] *fset.look.use_keys*
+** description: pass:none[use keys alt+X in fset buffer to do actions on options; if disabled, only the input is allowed]
** type: boolean
** values: on, off
** default value: `+on+`
-* [[option_xfer.look.auto_open_buffer]] *xfer.look.auto_open_buffer*
-** description: pass:none[auto open xfer buffer when a new xfer is added to list]
+* [[option_fset.look.use_mute]] *fset.look.use_mute*
+** description: pass:none[use /mute command to set options]
** type: boolean
** values: on, off
-** default value: `+on+`
-
-* [[option_xfer.look.progress_bar_size]] *xfer.look.progress_bar_size*
-** description: pass:none[size of progress bar, in chars (if 0, progress bar is disabled)]
-** type: integer
-** values: 0 .. 256
-** default value: `+20+`
-
-* [[option_xfer.look.pv_tags]] *xfer.look.pv_tags*
-** description: pass:none[comma separated list of tags used in private messages, for example: "notify_message", "notify_private" or "notify_highlight"]
-** type: string
-** values: any string
-** default value: `+"notify_private"+`
-
-* [[option_xfer.network.blocksize]] *xfer.network.blocksize*
-** description: pass:none[block size for sending packets, in bytes]
-** type: integer
-** values: 1024 .. 102400
-** default value: `+65536+`
+** default value: `+off+`
+// end::fset_options[]
-* [[option_xfer.network.fast_send]] *xfer.network.fast_send*
-** description: pass:none[does not wait for ACK when sending file]
+// tag::guile_options[]
+* [[option_guile.look.check_license]] *guile.look.check_license*
+** description: pass:none[check the license of scripts when they are loaded: if the license is different from the plugin license, a warning is displayed]
** type: boolean
** values: on, off
-** default value: `+on+`
-
-* [[option_xfer.network.own_ip]] *xfer.network.own_ip*
-** description: pass:none[IP or DNS address used for sending files/chats (if empty, local interface IP is used)]
-** type: string
-** values: any string
-** default value: `+""+`
-
-* [[option_xfer.network.port_range]] *xfer.network.port_range*
-** description: pass:none[restricts outgoing files/chats to use only ports in the given range (useful for NAT) (syntax: a single port, ie. 5000 or a port range, ie. 5000-5015, empty value means any port, it's recommended to use ports greater than 1024, because only root can use ports below 1024)]
-** type: string
-** values: any string
-** default value: `+""+`
+** default value: `+off+`
-* [[option_xfer.network.send_ack]] *xfer.network.send_ack*
-** description: pass:none[send acks when receiving files; if disabled, the transfer may freeze if the sender is waiting for acks (for example a WeeChat sending a file with option xfer.network.fast_send set to off); on the other hand, disabling send of acks may prevent a freeze if the acks are not sent immediately to the sender]
+* [[option_guile.look.eval_keep_context]] *guile.look.eval_keep_context*
+** description: pass:none[keep context between two calls to the source code evaluation (option "eval" of script command or info "%s_eval"); a hidden script is used to eval script code; if this option is disabled, this hidden script is unloaded after each eval: this uses less memory, but is slower]
** type: boolean
** values: on, off
** default value: `+on+`
-
-* [[option_xfer.network.speed_limit_recv]] *xfer.network.speed_limit_recv*
-** description: pass:none[speed limit for receiving files, in kilo-bytes by second (0 means no limit)]
-** type: integer
-** values: 0 .. 2147483647
-** default value: `+0+`
-
-* [[option_xfer.network.speed_limit_send]] *xfer.network.speed_limit_send*
-** description: pass:none[speed limit for sending files, in kilo-bytes by second (0 means no limit)]
-** type: integer
-** values: 0 .. 2147483647
-** default value: `+0+`
-
-* [[option_xfer.network.timeout]] *xfer.network.timeout*
-** description: pass:none[timeout for xfer request (in seconds)]
-** type: integer
-** values: 5 .. 2147483647
-** default value: `+300+`
-// end::xfer_options[]
+// end::guile_options[]
// tag::irc_options[]
* [[option_irc.color.input_nick]] *irc.color.input_nick*
@@ -2985,6 +1601,192 @@
** default value: `+""+`
// end::irc_options[]
+// tag::javascript_options[]
+* [[option_javascript.look.check_license]] *javascript.look.check_license*
+** description: pass:none[check the license of scripts when they are loaded: if the license is different from the plugin license, a warning is displayed]
+** type: boolean
+** values: on, off
+** default value: `+off+`
+
+* [[option_javascript.look.eval_keep_context]] *javascript.look.eval_keep_context*
+** description: pass:none[keep context between two calls to the source code evaluation (option "eval" of script command or info "%s_eval"); a hidden script is used to eval script code; if this option is disabled, this hidden script is unloaded after each eval: this uses less memory, but is slower]
+** type: boolean
+** values: on, off
+** default value: `+on+`
+// end::javascript_options[]
+
+// tag::logger_options[]
+* [[option_logger.color.backlog_end]] *logger.color.backlog_end*
+** description: pass:none[color for line ending the backlog]
+** type: color
+** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** default value: `+default+`
+
+* [[option_logger.color.backlog_line]] *logger.color.backlog_line*
+** description: pass:none[color for backlog lines, used only if the option logger.file.color_lines is off]
+** type: color
+** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** default value: `+default+`
+
+* [[option_logger.file.auto_log]] *logger.file.auto_log*
+** description: pass:none[automatically save content of buffers to files (unless a buffer disables log); if disabled, logging is disabled on all buffers]
+** type: boolean
+** values: on, off
+** default value: `+on+`
+
+* [[option_logger.file.color_lines]] *logger.file.color_lines*
+** description: pass:none[use ANSI color codes in lines written in log files and display backlog lines with these colors]
+** type: boolean
+** values: on, off
+** default value: `+off+`
+
+* [[option_logger.file.flush_delay]] *logger.file.flush_delay*
+** description: pass:none[number of seconds between flush of log files (0 = write in log files immediately for each line printed)]
+** type: integer
+** values: 0 .. 3600
+** default value: `+120+`
+
+* [[option_logger.file.fsync]] *logger.file.fsync*
+** description: pass:none[use fsync to synchronize the log file with the storage device after the flush (see man fsync); this is slower but should prevent any data loss in case of power failure during the save of log file]
+** type: boolean
+** values: on, off
+** default value: `+off+`
+
+* [[option_logger.file.info_lines]] *logger.file.info_lines*
+** description: pass:none[write information line in log file when log starts or ends for a buffer]
+** type: boolean
+** values: on, off
+** default value: `+off+`
+
+* [[option_logger.file.mask]] *logger.file.mask*
+** description: pass:none[default file name mask for log files (format is "directory/to/file" or "file", without first "/" because "path" option is used to build complete path to file); local buffer variables are permitted (you should use only variables that are defined on all buffers, so for example you should NOT use $server nor $channel); date specifiers are permitted (see man strftime)]
+** type: string
+** values: any string
+** default value: `+"$plugin.$name.weechatlog"+`
+
+* [[option_logger.file.name_lower_case]] *logger.file.name_lower_case*
+** description: pass:none[use only lower case for log filenames]
+** type: boolean
+** values: on, off
+** default value: `+on+`
+
+* [[option_logger.file.nick_prefix]] *logger.file.nick_prefix*
+** description: pass:none[text to write before nick in prefix of message, example: "<"]
+** type: string
+** values: any string
+** default value: `+""+`
+
+* [[option_logger.file.nick_suffix]] *logger.file.nick_suffix*
+** description: pass:none[text to write after nick in prefix of message, example: ">"]
+** type: string
+** values: any string
+** default value: `+""+`
+
+* [[option_logger.file.path]] *logger.file.path*
+** description: pass:none[path for WeeChat log files; date specifiers are permitted (see man strftime) (path is evaluated, see function string_eval_path_home in plugin API reference)]
+** type: string
+** values: any string
+** default value: `+"${weechat_data_dir}/logs"+`
+
+* [[option_logger.file.replacement_char]] *logger.file.replacement_char*
+** description: pass:none[replacement char for special chars in filename built with mask (like directory delimiter)]
+** type: string
+** values: any string
+** default value: `+"_"+`
+
+* [[option_logger.file.rotation_compression_level]] *logger.file.rotation_compression_level*
+** description: pass:none[compression level for rotated log files (with extension ".1", ".2", etc.), if option logger.file.rotation_compression_type is enabled: 1 = low compression / fast ... 100 = best compression / slow; the value is a percentage converted to 1-9 for gzip and 1-19 for zstd; the default value is recommended, it offers a good compromise between compression and speed]
+** type: integer
+** values: 1 .. 100
+** default value: `+20+`
+
+* [[option_logger.file.rotation_compression_type]] *logger.file.rotation_compression_type*
+** description: pass:none[compression type for rotated log files; if set to "none", rotated log files are not compressed; WARNING: if rotation was enabled with another type of compression (or no compression), you must first unload the logger plugin, compress files with the new type (or decompress files), then change the option in logger.conf, then load the logger plugin]
+** type: integer
+** values: none, gzip, zstd
+** default value: `+none+`
+
+* [[option_logger.file.rotation_size_max]] *logger.file.rotation_size_max*
+** description: pass:none[when this size is reached, a rotation of log files is performed: the existing rotated log files are renamed (.1 becomes .2, .2 becomes .3, etc.) and the current file is renamed with extension .1; an integer number with a suffix is allowed: b = bytes (default if no unit given), k = kilobytes, m = megabytes, g = gigabytes, t = terabytes; example: "2g" causes a rotation if the file size is > 2,000,000,000 bytes; if set to "0", no rotation is performed (unlimited log size); WARNING: before changing this option, you should first set the compression type via option logger.file.rotation_compression_type]
+** type: string
+** values: any string
+** default value: `+"0"+`
+
+* [[option_logger.file.time_format]] *logger.file.time_format*
+** description: pass:none[timestamp used in log files (see man strftime for date/time specifiers)]
+** type: string
+** values: any string
+** default value: `+"%Y-%m-%d %H:%M:%S"+`
+
+* [[option_logger.look.backlog]] *logger.look.backlog*
+** description: pass:none[maximum number of lines to display from log file when creating new buffer (0 = no backlog)]
+** type: integer
+** values: 0 .. 2147483647
+** default value: `+20+`
+
+* [[option_logger.look.backlog_conditions]] *logger.look.backlog_conditions*
+** description: pass:none[conditions to display the backlog (note: content is evaluated, see /help eval); empty value displays the backlog on all buffers; for example to display backlog on private buffers only: "${type} == private"]
+** type: string
+** values: any string
+** default value: `+""+`
+// end::logger_options[]
+
+// tag::lua_options[]
+* [[option_lua.look.check_license]] *lua.look.check_license*
+** description: pass:none[check the license of scripts when they are loaded: if the license is different from the plugin license, a warning is displayed]
+** type: boolean
+** values: on, off
+** default value: `+off+`
+
+* [[option_lua.look.eval_keep_context]] *lua.look.eval_keep_context*
+** description: pass:none[keep context between two calls to the source code evaluation (option "eval" of script command or info "%s_eval"); a hidden script is used to eval script code; if this option is disabled, this hidden script is unloaded after each eval: this uses less memory, but is slower]
+** type: boolean
+** values: on, off
+** default value: `+on+`
+// end::lua_options[]
+
+// tag::perl_options[]
+* [[option_perl.look.check_license]] *perl.look.check_license*
+** description: pass:none[check the license of scripts when they are loaded: if the license is different from the plugin license, a warning is displayed]
+** type: boolean
+** values: on, off
+** default value: `+off+`
+
+* [[option_perl.look.eval_keep_context]] *perl.look.eval_keep_context*
+** description: pass:none[keep context between two calls to the source code evaluation (option "eval" of script command or info "%s_eval"); a hidden script is used to eval script code; if this option is disabled, this hidden script is unloaded after each eval: this uses less memory, but is slower]
+** type: boolean
+** values: on, off
+** default value: `+on+`
+// end::perl_options[]
+
+// tag::php_options[]
+* [[option_php.look.check_license]] *php.look.check_license*
+** description: pass:none[check the license of scripts when they are loaded: if the license is different from the plugin license, a warning is displayed]
+** type: boolean
+** values: on, off
+** default value: `+off+`
+
+* [[option_php.look.eval_keep_context]] *php.look.eval_keep_context*
+** description: pass:none[keep context between two calls to the source code evaluation (option "eval" of script command or info "%s_eval"); a hidden script is used to eval script code; if this option is disabled, this hidden script is unloaded after each eval: this uses less memory, but is slower]
+** type: boolean
+** values: on, off
+** default value: `+on+`
+// end::php_options[]
+
+// tag::python_options[]
+* [[option_python.look.check_license]] *python.look.check_license*
+** description: pass:none[check the license of scripts when they are loaded: if the license is different from the plugin license, a warning is displayed]
+** type: boolean
+** values: on, off
+** default value: `+off+`
+
+* [[option_python.look.eval_keep_context]] *python.look.eval_keep_context*
+** description: pass:none[keep context between two calls to the source code evaluation (option "eval" of script command or info "%s_eval"); a hidden script is used to eval script code; if this option is disabled, this hidden script is unloaded after each eval: this uses less memory, but is slower]
+** type: boolean
+** values: on, off
+** default value: `+on+`
+// end::python_options[]
+
// tag::relay_options[]
* [[option_relay.color.client]] *relay.color.client*
** description: pass:none[text color for client description]
@@ -3197,90 +1999,6 @@
** default value: `+""+`
// end::relay_options[]
-// tag::guile_options[]
-* [[option_guile.look.check_license]] *guile.look.check_license*
-** description: pass:none[check the license of scripts when they are loaded: if the license is different from the plugin license, a warning is displayed]
-** type: boolean
-** values: on, off
-** default value: `+off+`
-
-* [[option_guile.look.eval_keep_context]] *guile.look.eval_keep_context*
-** description: pass:none[keep context between two calls to the source code evaluation (option "eval" of script command or info "%s_eval"); a hidden script is used to eval script code; if this option is disabled, this hidden script is unloaded after each eval: this uses less memory, but is slower]
-** type: boolean
-** values: on, off
-** default value: `+on+`
-// end::guile_options[]
-
-// tag::javascript_options[]
-* [[option_javascript.look.check_license]] *javascript.look.check_license*
-** description: pass:none[check the license of scripts when they are loaded: if the license is different from the plugin license, a warning is displayed]
-** type: boolean
-** values: on, off
-** default value: `+off+`
-
-* [[option_javascript.look.eval_keep_context]] *javascript.look.eval_keep_context*
-** description: pass:none[keep context between two calls to the source code evaluation (option "eval" of script command or info "%s_eval"); a hidden script is used to eval script code; if this option is disabled, this hidden script is unloaded after each eval: this uses less memory, but is slower]
-** type: boolean
-** values: on, off
-** default value: `+on+`
-// end::javascript_options[]
-
-// tag::lua_options[]
-* [[option_lua.look.check_license]] *lua.look.check_license*
-** description: pass:none[check the license of scripts when they are loaded: if the license is different from the plugin license, a warning is displayed]
-** type: boolean
-** values: on, off
-** default value: `+off+`
-
-* [[option_lua.look.eval_keep_context]] *lua.look.eval_keep_context*
-** description: pass:none[keep context between two calls to the source code evaluation (option "eval" of script command or info "%s_eval"); a hidden script is used to eval script code; if this option is disabled, this hidden script is unloaded after each eval: this uses less memory, but is slower]
-** type: boolean
-** values: on, off
-** default value: `+on+`
-// end::lua_options[]
-
-// tag::perl_options[]
-* [[option_perl.look.check_license]] *perl.look.check_license*
-** description: pass:none[check the license of scripts when they are loaded: if the license is different from the plugin license, a warning is displayed]
-** type: boolean
-** values: on, off
-** default value: `+off+`
-
-* [[option_perl.look.eval_keep_context]] *perl.look.eval_keep_context*
-** description: pass:none[keep context between two calls to the source code evaluation (option "eval" of script command or info "%s_eval"); a hidden script is used to eval script code; if this option is disabled, this hidden script is unloaded after each eval: this uses less memory, but is slower]
-** type: boolean
-** values: on, off
-** default value: `+on+`
-// end::perl_options[]
-
-// tag::php_options[]
-* [[option_php.look.check_license]] *php.look.check_license*
-** description: pass:none[check the license of scripts when they are loaded: if the license is different from the plugin license, a warning is displayed]
-** type: boolean
-** values: on, off
-** default value: `+off+`
-
-* [[option_php.look.eval_keep_context]] *php.look.eval_keep_context*
-** description: pass:none[keep context between two calls to the source code evaluation (option "eval" of script command or info "%s_eval"); a hidden script is used to eval script code; if this option is disabled, this hidden script is unloaded after each eval: this uses less memory, but is slower]
-** type: boolean
-** values: on, off
-** default value: `+on+`
-// end::php_options[]
-
-// tag::python_options[]
-* [[option_python.look.check_license]] *python.look.check_license*
-** description: pass:none[check the license of scripts when they are loaded: if the license is different from the plugin license, a warning is displayed]
-** type: boolean
-** values: on, off
-** default value: `+off+`
-
-* [[option_python.look.eval_keep_context]] *python.look.eval_keep_context*
-** description: pass:none[keep context between two calls to the source code evaluation (option "eval" of script command or info "%s_eval"); a hidden script is used to eval script code; if this option is disabled, this hidden script is unloaded after each eval: this uses less memory, but is slower]
-** type: boolean
-** values: on, off
-** default value: `+on+`
-// end::python_options[]
-
// tag::ruby_options[]
* [[option_ruby.look.check_license]] *ruby.look.check_license*
** description: pass:none[check the license of scripts when they are loaded: if the license is different from the plugin license, a warning is displayed]
@@ -3295,20 +2013,6 @@
** default value: `+on+`
// end::ruby_options[]
-// tag::tcl_options[]
-* [[option_tcl.look.check_license]] *tcl.look.check_license*
-** description: pass:none[check the license of scripts when they are loaded: if the license is different from the plugin license, a warning is displayed]
-** type: boolean
-** values: on, off
-** default value: `+off+`
-
-* [[option_tcl.look.eval_keep_context]] *tcl.look.eval_keep_context*
-** description: pass:none[keep context between two calls to the source code evaluation (option "eval" of script command or info "%s_eval"); a hidden script is used to eval script code; if this option is disabled, this hidden script is unloaded after each eval: this uses less memory, but is slower]
-** type: boolean
-** values: on, off
-** default value: `+on+`
-// end::tcl_options[]
-
// tag::script_options[]
* [[option_script.color.status_autoloaded]] *script.color.status_autoloaded*
** description: pass:none[color for status "autoloaded" ("a")]
@@ -3557,484 +2261,1780 @@
** default value: `+"https://weechat.org/files/plugins.xml.gz"+`
// end::script_options[]
-// tag::fset_options[]
-* [[option_fset.color.default_value]] *fset.color.default_value*
-** description: pass:none[color for default value]
-** type: color
-** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+default+`
+// tag::sec_options[]
+* [[option_sec.crypt.cipher]] *sec.crypt.cipher*
+** description: pass:none[cipher used to crypt data (the number after algorithm is the size of the key in bits)]
+** type: integer
+** values: aes128, aes192, aes256
+** default value: `+aes256+`
-* [[option_fset.color.default_value_selected]] *fset.color.default_value_selected*
-** description: pass:none[color for default value on the selected line]
+* [[option_sec.crypt.hash_algo]] *sec.crypt.hash_algo*
+** description: pass:none[hash algorithm used to check the decrypted data]
+** type: integer
+** values: sha224, sha256, sha384, sha512
+** default value: `+sha256+`
+
+* [[option_sec.crypt.passphrase_command]] *sec.crypt.passphrase_command*
+** description: pass:none[read the passphrase from the output of this system command (only the first line is used and it must not contain any extra character); this option is used only when reading file sec.conf and if the environment variable "WEECHAT_PASSPHRASE" is not set (the environment variable has higher priority); example with password-store: "/usr/bin/pass show weechat/passphrase"]
+** type: string
+** values: any string
+** default value: `+""+`
+
+* [[option_sec.crypt.salt]] *sec.crypt.salt*
+** description: pass:none[use salt when generating key used in encryption (recommended for maximum security); when enabled, the content of crypted data in file sec.conf will be different on each write of the file; if you put the file sec.conf in a version control system, then you can turn off this option to have always same content in file]
+** type: boolean
+** values: on, off
+** default value: `+on+`
+// end::sec_options[]
+
+// tag::spell_options[]
+* [[option_spell.check.commands]] *spell.check.commands*
+** description: pass:none[comma separated list of commands for which spell checking is enabled (spell checking is disabled for all other commands)]
+** type: string
+** values: any string
+** default value: `+"away,command,cycle,kick,kickban,me,msg,notice,part,query,quit,topic"+`
+
+* [[option_spell.check.default_dict]] *spell.check.default_dict*
+** description: pass:none[default dictionary (or comma separated list of dictionaries) to use when buffer has no dictionary defined (leave blank to disable spell checker on buffers for which you didn't explicitly enabled it)]
+** type: string
+** values: any string
+** default value: `+""+`
+
+* [[option_spell.check.during_search]] *spell.check.during_search*
+** description: pass:none[check words during text search in buffer]
+** type: boolean
+** values: on, off
+** default value: `+off+`
+
+* [[option_spell.check.enabled]] *spell.check.enabled*
+** description: pass:none[enable spell checker for command line]
+** type: boolean
+** values: on, off
+** default value: `+off+`
+
+* [[option_spell.check.real_time]] *spell.check.real_time*
+** description: pass:none[real-time spell checking of words (slower, disabled by default: words are checked only if there's delimiter after)]
+** type: boolean
+** values: on, off
+** default value: `+off+`
+
+* [[option_spell.check.suggestions]] *spell.check.suggestions*
+** description: pass:none[number of suggestions to display in bar item "spell_suggest" for each dictionary set in buffer (-1 = disable suggestions, 0 = display all possible suggestions in all languages)]
+** type: integer
+** values: -1 .. 2147483647
+** default value: `+-1+`
+
+* [[option_spell.check.word_min_length]] *spell.check.word_min_length*
+** description: pass:none[minimum length for a word to be spell checked (use 0 to check all words)]
+** type: integer
+** values: 0 .. 2147483647
+** default value: `+2+`
+
+* [[option_spell.color.misspelled]] *spell.color.misspelled*
+** description: pass:none[text color for misspelled words (input bar)]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+white+`
+** default value: `+lightred+`
-* [[option_fset.color.description]] *fset.color.description*
-** description: pass:none[color for description]
+* [[option_spell.color.suggestion]] *spell.color.suggestion*
+** description: pass:none[text color for suggestion on a misspelled word in bar item "spell_suggest"]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** default value: `+default+`
-* [[option_fset.color.description_selected]] *fset.color.description_selected*
-** description: pass:none[color for description on the selected line]
+* [[option_spell.color.suggestion_delimiter_dict]] *spell.color.suggestion_delimiter_dict*
+** description: pass:none[text color for delimiters displayed between two dictionaries in bar item "spell_suggest"]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+white+`
+** default value: `+cyan+`
-* [[option_fset.color.file]] *fset.color.file*
-** description: pass:none[color for file]
+* [[option_spell.color.suggestion_delimiter_word]] *spell.color.suggestion_delimiter_word*
+** description: pass:none[text color for delimiters displayed between two words in bar item "spell_suggest"]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+default+`
+** default value: `+cyan+`
-* [[option_fset.color.file_changed]] *fset.color.file_changed*
-** description: pass:none[color for file if value is changed]
+* [[option_spell.look.suggestion_delimiter_dict]] *spell.look.suggestion_delimiter_dict*
+** description: pass:none[delimiter displayed between two dictionaries in bar item "spell_suggest"]
+** type: string
+** values: any string
+** default value: `+" / "+`
+
+* [[option_spell.look.suggestion_delimiter_word]] *spell.look.suggestion_delimiter_word*
+** description: pass:none[delimiter displayed between two words in bar item "spell_suggest"]
+** type: string
+** values: any string
+** default value: `+","+`
+// end::spell_options[]
+
+// tag::tcl_options[]
+* [[option_tcl.look.check_license]] *tcl.look.check_license*
+** description: pass:none[check the license of scripts when they are loaded: if the license is different from the plugin license, a warning is displayed]
+** type: boolean
+** values: on, off
+** default value: `+off+`
+
+* [[option_tcl.look.eval_keep_context]] *tcl.look.eval_keep_context*
+** description: pass:none[keep context between two calls to the source code evaluation (option "eval" of script command or info "%s_eval"); a hidden script is used to eval script code; if this option is disabled, this hidden script is unloaded after each eval: this uses less memory, but is slower]
+** type: boolean
+** values: on, off
+** default value: `+on+`
+// end::tcl_options[]
+
+// tag::trigger_options[]
+* [[option_trigger.color.flag_command]] *trigger.color.flag_command*
+** description: pass:none[text color for command flag (in /trigger list)]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+brown+`
+** default value: `+lightgreen+`
-* [[option_fset.color.file_changed_selected]] *fset.color.file_changed_selected*
-** description: pass:none[color for file if value is changed on the selected line]
+* [[option_trigger.color.flag_conditions]] *trigger.color.flag_conditions*
+** description: pass:none[text color for conditions flag (in /trigger list)]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** default value: `+yellow+`
-* [[option_fset.color.file_selected]] *fset.color.file_selected*
-** description: pass:none[color for file on the selected line]
+* [[option_trigger.color.flag_post_action]] *trigger.color.flag_post_action*
+** description: pass:none[text color for post action flag (in /trigger list)]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+white+`
+** default value: `+lightblue+`
-* [[option_fset.color.help_default_value]] *fset.color.help_default_value*
-** description: pass:none[color for default value in help bar]
+* [[option_trigger.color.flag_regex]] *trigger.color.flag_regex*
+** description: pass:none[text color for regex flag (in /trigger list)]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+white+`
+** default value: `+lightcyan+`
-* [[option_fset.color.help_description]] *fset.color.help_description*
-** description: pass:none[color for description in help bar]
+* [[option_trigger.color.flag_return_code]] *trigger.color.flag_return_code*
+** description: pass:none[text color for return code flag (in /trigger list)]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+default+`
+** default value: `+lightmagenta+`
-* [[option_fset.color.help_name]] *fset.color.help_name*
-** description: pass:none[color for name in help bar]
+* [[option_trigger.color.identifier]] *trigger.color.identifier*
+** description: pass:none[text color for trigger context identifier in monitor buffer]
+** type: color
+** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** default value: `+cyan+`
+
+* [[option_trigger.color.regex]] *trigger.color.regex*
+** description: pass:none[text color for regular expressions]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** default value: `+white+`
-* [[option_fset.color.help_quotes]] *fset.color.help_quotes*
-** description: pass:none[color for quotes around string values]
+* [[option_trigger.color.replace]] *trigger.color.replace*
+** description: pass:none[text color for replacement text (for regular expressions)]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+darkgray+`
+** default value: `+cyan+`
-* [[option_fset.color.help_values]] *fset.color.help_values*
-** description: pass:none[color for allowed values]
+* [[option_trigger.color.trigger]] *trigger.color.trigger*
+** description: pass:none[text color for trigger name]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+default+`
+** default value: `+green+`
-* [[option_fset.color.index]] *fset.color.index*
-** description: pass:none[color for index of option]
+* [[option_trigger.color.trigger_disabled]] *trigger.color.trigger_disabled*
+** description: pass:none[text color for disabled trigger name]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+cyan+`
+** default value: `+red+`
-* [[option_fset.color.index_selected]] *fset.color.index_selected*
-** description: pass:none[color for index of option on the selected line]
+* [[option_trigger.look.enabled]] *trigger.look.enabled*
+** description: pass:none[enable trigger support]
+** type: boolean
+** values: on, off
+** default value: `+on+`
+
+* [[option_trigger.look.monitor_strip_colors]] *trigger.look.monitor_strip_colors*
+** description: pass:none[strip colors in hashtable values displayed on monitor buffer]
+** type: boolean
+** values: on, off
+** default value: `+off+`
+// end::trigger_options[]
+
+// tag::typing_options[]
+* [[option_typing.look.delay_purge_paused]] *typing.look.delay_purge_paused*
+** description: pass:none[number of seconds after paused status has been set: if reached, the typing status is removed]
+** type: integer
+** values: 1 .. 2147483647
+** default value: `+30+`
+
+* [[option_typing.look.delay_purge_typing]] *typing.look.delay_purge_typing*
+** description: pass:none[number of seconds after typing status has been set: if reached, the typing status is removed]
+** type: integer
+** values: 1 .. 2147483647
+** default value: `+6+`
+
+* [[option_typing.look.delay_set_paused]] *typing.look.delay_set_paused*
+** description: pass:none[number of seconds after typing last char: if reached, the typing status becomes "paused" and no more typing signals are sent]
+** type: integer
+** values: 1 .. 2147483647
+** default value: `+10+`
+
+* [[option_typing.look.enabled_nicks]] *typing.look.enabled_nicks*
+** description: pass:none[typing enabled for other nicks (display typing info for nicks typing in the current buffer)]
+** type: boolean
+** values: on, off
+** default value: `+off+`
+
+* [[option_typing.look.enabled_self]] *typing.look.enabled_self*
+** description: pass:none[typing enabled for self messages (send typing info to other users)]
+** type: boolean
+** values: on, off
+** default value: `+off+`
+
+* [[option_typing.look.input_min_chars]] *typing.look.input_min_chars*
+** description: pass:none[min number of chars in message to trigger send of typing signals]
+** type: integer
+** values: 1 .. 2147483647
+** default value: `+4+`
+
+* [[option_typing.look.item_max_length]] *typing.look.item_max_length*
+** description: pass:none[max number of chars displayed in the bar item "typing" (0 = do not truncate content)]
+** type: integer
+** values: 0 .. 2147483647
+** default value: `+0+`
+// end::typing_options[]
+
+// tag::weechat_options[]
+* [[option_weechat.color.bar_more]] *weechat.color.bar_more*
+** description: pass:none[text color for "+" when scrolling bars]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+lightcyan+`
+** default value: `+lightmagenta+`
-* [[option_fset.color.line_marked_bg1]] *fset.color.line_marked_bg1*
-** description: pass:none[background color for a marked line (used with the first format, see option fset.format.option1)]
+* [[option_weechat.color.chat]] *weechat.color.chat*
+** description: pass:none[text color for chat]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** default value: `+default+`
-* [[option_fset.color.line_marked_bg2]] *fset.color.line_marked_bg2*
-** description: pass:none[background color for a marked line (used with the second format, see option fset.format.option2)]
+* [[option_weechat.color.chat_bg]] *weechat.color.chat_bg*
+** description: pass:none[background color for chat]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** default value: `+default+`
-* [[option_fset.color.line_selected_bg1]] *fset.color.line_selected_bg1*
-** description: pass:none[background color for the selected line (used with the first format, see option fset.format.option1)]
+* [[option_weechat.color.chat_buffer]] *weechat.color.chat_buffer*
+** description: pass:none[text color for buffer names]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+blue+`
+** default value: `+white+`
-* [[option_fset.color.line_selected_bg2]] *fset.color.line_selected_bg2*
-** description: pass:none[background color for the selected line (used with the second format, see option fset.format.option2)]
+* [[option_weechat.color.chat_channel]] *weechat.color.chat_channel*
+** description: pass:none[text color for channel names]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+red+`
+** default value: `+white+`
-* [[option_fset.color.marked]] *fset.color.marked*
-** description: pass:none[color for mark indicator]
+* [[option_weechat.color.chat_day_change]] *weechat.color.chat_day_change*
+** description: pass:none[text color for message displayed when the day has changed]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+brown+`
+** default value: `+cyan+`
-* [[option_fset.color.marked_selected]] *fset.color.marked_selected*
-** description: pass:none[color for mark indicator on the selected line]
+* [[option_weechat.color.chat_delimiters]] *weechat.color.chat_delimiters*
+** description: pass:none[text color for delimiters]
+** type: color
+** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** default value: `+green+`
+
+* [[option_weechat.color.chat_highlight]] *weechat.color.chat_highlight*
+** description: pass:none[text color for highlighted prefix]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** default value: `+yellow+`
-* [[option_fset.color.max]] *fset.color.max*
-** description: pass:none[color for max value]
+* [[option_weechat.color.chat_highlight_bg]] *weechat.color.chat_highlight_bg*
+** description: pass:none[background color for highlighted prefix]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+default+`
+** default value: `+magenta+`
-* [[option_fset.color.max_selected]] *fset.color.max_selected*
-** description: pass:none[color for max value on the selected line]
+* [[option_weechat.color.chat_host]] *weechat.color.chat_host*
+** description: pass:none[text color for hostnames]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+white+`
+** default value: `+cyan+`
-* [[option_fset.color.min]] *fset.color.min*
-** description: pass:none[color for min value]
+* [[option_weechat.color.chat_inactive_buffer]] *weechat.color.chat_inactive_buffer*
+** description: pass:none[text color for chat when line is inactive (buffer is merged with other buffers and is not selected)]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** default value: `+default+`
-* [[option_fset.color.min_selected]] *fset.color.min_selected*
-** description: pass:none[color for min value on the selected line]
+* [[option_weechat.color.chat_inactive_window]] *weechat.color.chat_inactive_window*
+** description: pass:none[text color for chat when window is inactive (not current selected window)]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+white+`
+** default value: `+default+`
-* [[option_fset.color.name]] *fset.color.name*
-** description: pass:none[color for name]
+* [[option_weechat.color.chat_nick]] *weechat.color.chat_nick*
+** description: pass:none[text color for nicks in chat window: used in some server messages and as fallback when a nick color is not found; most of times nick color comes from option weechat.color.chat_nick_colors]
+** type: color
+** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** default value: `+lightcyan+`
+
+* [[option_weechat.color.chat_nick_colors]] *weechat.color.chat_nick_colors*
+** description: pass:none[text color for nicks (comma separated list of colors, background is allowed with format: "fg:bg", for example: "lightred:blue")]
+** type: string
+** values: any string
+** default value: `+"cyan,magenta,green,brown,lightblue,default,lightcyan,lightmagenta,lightgreen,blue"+`
+
+* [[option_weechat.color.chat_nick_offline]] *weechat.color.chat_nick_offline*
+** description: pass:none[text color for offline nick (not in nicklist any more); this color is used only if option weechat.look.color_nick_offline is enabled]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** default value: `+default+`
-* [[option_fset.color.name_changed]] *fset.color.name_changed*
-** description: pass:none[color for name if value is changed]
+* [[option_weechat.color.chat_nick_offline_highlight]] *weechat.color.chat_nick_offline_highlight*
+** description: pass:none[text color for offline nick with highlight; this color is used only if option weechat.look.color_nick_offline is enabled]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+brown+`
+** default value: `+default+`
-* [[option_fset.color.name_changed_selected]] *fset.color.name_changed_selected*
-** description: pass:none[color for name if value is changed on the selected line]
+* [[option_weechat.color.chat_nick_offline_highlight_bg]] *weechat.color.chat_nick_offline_highlight_bg*
+** description: pass:none[background color for offline nick with highlight; this color is used only if option weechat.look.color_nick_offline is enabled]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+yellow+`
+** default value: `+blue+`
-* [[option_fset.color.name_selected]] *fset.color.name_selected*
-** description: pass:none[color for name on the selected line]
+* [[option_weechat.color.chat_nick_other]] *weechat.color.chat_nick_other*
+** description: pass:none[text color for other nick in private buffer]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+white+`
+** default value: `+cyan+`
-* [[option_fset.color.option]] *fset.color.option*
-** description: pass:none[color for option]
+* [[option_weechat.color.chat_nick_prefix]] *weechat.color.chat_nick_prefix*
+** description: pass:none[color for nick prefix (string displayed before nick in prefix)]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+default+`
+** default value: `+green+`
-* [[option_fset.color.option_changed]] *fset.color.option_changed*
-** description: pass:none[color for option if value is changed]
+* [[option_weechat.color.chat_nick_self]] *weechat.color.chat_nick_self*
+** description: pass:none[text color for local nick in chat window]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+brown+`
+** default value: `+white+`
-* [[option_fset.color.option_changed_selected]] *fset.color.option_changed_selected*
-** description: pass:none[color for option if value is changed on the selected line]
+* [[option_weechat.color.chat_nick_suffix]] *weechat.color.chat_nick_suffix*
+** description: pass:none[color for nick suffix (string displayed after nick in prefix)]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+yellow+`
+** default value: `+green+`
-* [[option_fset.color.option_selected]] *fset.color.option_selected*
-** description: pass:none[color for option on the selected line]
+* [[option_weechat.color.chat_prefix_action]] *weechat.color.chat_prefix_action*
+** description: pass:none[text color for action prefix]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** default value: `+white+`
-* [[option_fset.color.parent_name]] *fset.color.parent_name*
-** description: pass:none[color for name of parent option]
+* [[option_weechat.color.chat_prefix_buffer]] *weechat.color.chat_prefix_buffer*
+** description: pass:none[text color for buffer name (before prefix, when many buffers are merged with same number)]
+** type: color
+** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** default value: `+brown+`
+
+* [[option_weechat.color.chat_prefix_buffer_inactive_buffer]] *weechat.color.chat_prefix_buffer_inactive_buffer*
+** description: pass:none[text color for inactive buffer name (before prefix, when many buffers are merged with same number and if buffer is not selected)]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** default value: `+default+`
-* [[option_fset.color.parent_name_selected]] *fset.color.parent_name_selected*
-** description: pass:none[color for name of parent option on the selected line]
+* [[option_weechat.color.chat_prefix_error]] *weechat.color.chat_prefix_error*
+** description: pass:none[text color for error prefix]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+white+`
+** default value: `+yellow+`
-* [[option_fset.color.parent_value]] *fset.color.parent_value*
-** description: pass:none[color for value of parent option]
+* [[option_weechat.color.chat_prefix_join]] *weechat.color.chat_prefix_join*
+** description: pass:none[text color for join prefix]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+cyan+`
+** default value: `+lightgreen+`
-* [[option_fset.color.parent_value_selected]] *fset.color.parent_value_selected*
-** description: pass:none[color for value of parent option on the selected line]
+* [[option_weechat.color.chat_prefix_more]] *weechat.color.chat_prefix_more*
+** description: pass:none[text color for "+" when prefix is too long]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+lightcyan+`
+** default value: `+lightmagenta+`
-* [[option_fset.color.quotes]] *fset.color.quotes*
-** description: pass:none[color for quotes around string values]
+* [[option_weechat.color.chat_prefix_network]] *weechat.color.chat_prefix_network*
+** description: pass:none[text color for network prefix]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+darkgray+`
+** default value: `+magenta+`
-* [[option_fset.color.quotes_changed]] *fset.color.quotes_changed*
-** description: pass:none[color for quotes around string values which are changed]
+* [[option_weechat.color.chat_prefix_quit]] *weechat.color.chat_prefix_quit*
+** description: pass:none[text color for quit prefix]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+default+`
+** default value: `+lightred+`
-* [[option_fset.color.quotes_changed_selected]] *fset.color.quotes_changed_selected*
-** description: pass:none[color for quotes around string values which are changed on the selected line]
+* [[option_weechat.color.chat_prefix_suffix]] *weechat.color.chat_prefix_suffix*
+** description: pass:none[text color for suffix (after prefix)]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+white+`
+** default value: `+green+`
-* [[option_fset.color.quotes_selected]] *fset.color.quotes_selected*
-** description: pass:none[color for quotes around string values on the selected line]
+* [[option_weechat.color.chat_read_marker]] *weechat.color.chat_read_marker*
+** description: pass:none[text color for unread data marker]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+default+`
+** default value: `+magenta+`
-* [[option_fset.color.section]] *fset.color.section*
-** description: pass:none[color for section]
+* [[option_weechat.color.chat_read_marker_bg]] *weechat.color.chat_read_marker_bg*
+** description: pass:none[background color for unread data marker]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** default value: `+default+`
-* [[option_fset.color.section_changed]] *fset.color.section_changed*
-** description: pass:none[color for section if value is changed]
+* [[option_weechat.color.chat_server]] *weechat.color.chat_server*
+** description: pass:none[text color for server names]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** default value: `+brown+`
-* [[option_fset.color.section_changed_selected]] *fset.color.section_changed_selected*
-** description: pass:none[color for section if value is changed on the selected line]
+* [[option_weechat.color.chat_tags]] *weechat.color.chat_tags*
+** description: pass:none[text color for tags after messages (displayed with command /debug tags)]
+** type: color
+** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** default value: `+red+`
+
+* [[option_weechat.color.chat_text_found]] *weechat.color.chat_text_found*
+** description: pass:none[text color for marker on lines where text sought is found]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** default value: `+yellow+`
-* [[option_fset.color.section_selected]] *fset.color.section_selected*
-** description: pass:none[color for section on the selected line]
+* [[option_weechat.color.chat_text_found_bg]] *weechat.color.chat_text_found_bg*
+** description: pass:none[background color for marker on lines where text sought is found]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+white+`
+** default value: `+lightmagenta+`
-* [[option_fset.color.string_values]] *fset.color.string_values*
-** description: pass:none[color for string values]
+* [[option_weechat.color.chat_time]] *weechat.color.chat_time*
+** description: pass:none[text color for time in chat window]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** default value: `+default+`
-* [[option_fset.color.string_values_selected]] *fset.color.string_values_selected*
-** description: pass:none[color for string values on the selected line]
+* [[option_weechat.color.chat_time_delimiters]] *weechat.color.chat_time_delimiters*
+** description: pass:none[text color for time delimiters]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+white+`
+** default value: `+brown+`
-* [[option_fset.color.title_count_options]] *fset.color.title_count_options*
-** description: pass:none[color for the count of options found with the current filter in title of buffer]
+* [[option_weechat.color.chat_value]] *weechat.color.chat_value*
+** description: pass:none[text color for values]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** default value: `+cyan+`
-* [[option_fset.color.title_current_option]] *fset.color.title_current_option*
-** description: pass:none[color for current option number in title of buffer]
+* [[option_weechat.color.chat_value_null]] *weechat.color.chat_value_null*
+** description: pass:none[text color for null values (undefined)]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+lightcyan+`
+** default value: `+blue+`
-* [[option_fset.color.title_filter]] *fset.color.title_filter*
-** description: pass:none[color for filter in title of buffer]
+* [[option_weechat.color.emphasized]] *weechat.color.emphasized*
+** description: pass:none[text color for emphasized text (for example when searching text); this option is used only if option weechat.look.emphasized_attributes is an empty string (default value)]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** default value: `+yellow+`
-* [[option_fset.color.title_marked_options]] *fset.color.title_marked_options*
-** description: pass:none[color for number of marked options in title of buffer]
+* [[option_weechat.color.emphasized_bg]] *weechat.color.emphasized_bg*
+** description: pass:none[background color for emphasized text (for example when searching text); used only if option weechat.look.emphasized_attributes is an empty string (default value)]
+** type: color
+** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** default value: `+magenta+`
+
+* [[option_weechat.color.input_actions]] *weechat.color.input_actions*
+** description: pass:none[text color for actions in input line]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** default value: `+lightgreen+`
-* [[option_fset.color.title_sort]] *fset.color.title_sort*
-** description: pass:none[color for sort in title of buffer]
+* [[option_weechat.color.input_text_not_found]] *weechat.color.input_text_not_found*
+** description: pass:none[text color for unsuccessful text search in input line]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+white+`
+** default value: `+red+`
-* [[option_fset.color.type]] *fset.color.type*
-** description: pass:none[color for type]
+* [[option_weechat.color.item_away]] *weechat.color.item_away*
+** description: pass:none[text color for away item]
+** type: color
+** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** default value: `+yellow+`
+
+* [[option_weechat.color.nicklist_away]] *weechat.color.nicklist_away*
+** description: pass:none[text color for away nicknames]
+** type: color
+** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** default value: `+cyan+`
+
+* [[option_weechat.color.nicklist_group]] *weechat.color.nicklist_group*
+** description: pass:none[text color for groups in nicklist]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** default value: `+green+`
-* [[option_fset.color.type_selected]] *fset.color.type_selected*
-** description: pass:none[color for type on the selected line]
+* [[option_weechat.color.separator]] *weechat.color.separator*
+** description: pass:none[color for window separators (when split) and separators beside bars (like nicklist)]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+lightgreen+`
+** default value: `+blue+`
-* [[option_fset.color.unmarked]] *fset.color.unmarked*
-** description: pass:none[color for mark indicator when the option is not marked]
+* [[option_weechat.color.status_count_highlight]] *weechat.color.status_count_highlight*
+** description: pass:none[text color for count of highlight messages in hotlist (status bar)]
+** type: color
+** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** default value: `+magenta+`
+
+* [[option_weechat.color.status_count_msg]] *weechat.color.status_count_msg*
+** description: pass:none[text color for count of messages in hotlist (status bar)]
+** type: color
+** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** default value: `+brown+`
+
+* [[option_weechat.color.status_count_other]] *weechat.color.status_count_other*
+** description: pass:none[text color for count of other messages in hotlist (status bar)]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** default value: `+default+`
-* [[option_fset.color.unmarked_selected]] *fset.color.unmarked_selected*
-** description: pass:none[color for mark indicator when the option is not marked on the selected line]
+* [[option_weechat.color.status_count_private]] *weechat.color.status_count_private*
+** description: pass:none[text color for count of private messages in hotlist (status bar)]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+white+`
+** default value: `+green+`
-* [[option_fset.color.value]] *fset.color.value*
-** description: pass:none[color for value]
+* [[option_weechat.color.status_data_highlight]] *weechat.color.status_data_highlight*
+** description: pass:none[text color for buffer with highlight (status bar)]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+cyan+`
+** default value: `+lightmagenta+`
-* [[option_fset.color.value_changed]] *fset.color.value_changed*
-** description: pass:none[color for value changed (different from default)]
+* [[option_weechat.color.status_data_msg]] *weechat.color.status_data_msg*
+** description: pass:none[text color for buffer with new messages (status bar)]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+brown+`
+** default value: `+yellow+`
-* [[option_fset.color.value_changed_selected]] *fset.color.value_changed_selected*
-** description: pass:none[color for value changed (different from default) on the selected line]
+* [[option_weechat.color.status_data_other]] *weechat.color.status_data_other*
+** description: pass:none[text color for buffer with new data (not messages) (status bar)]
+** type: color
+** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** default value: `+default+`
+
+* [[option_weechat.color.status_data_private]] *weechat.color.status_data_private*
+** description: pass:none[text color for buffer with private message (status bar)]
+** type: color
+** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** default value: `+lightgreen+`
+
+* [[option_weechat.color.status_filter]] *weechat.color.status_filter*
+** description: pass:none[text color for filter indicator in status bar]
+** type: color
+** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** default value: `+green+`
+
+* [[option_weechat.color.status_more]] *weechat.color.status_more*
+** description: pass:none[text color for buffer with new data (status bar)]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** default value: `+yellow+`
-* [[option_fset.color.value_selected]] *fset.color.value_selected*
-** description: pass:none[color for value on the selected line]
+* [[option_weechat.color.status_mouse]] *weechat.color.status_mouse*
+** description: pass:none[text color for mouse indicator in status bar]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+lightcyan+`
+** default value: `+green+`
-* [[option_fset.color.value_undef]] *fset.color.value_undef*
-** description: pass:none[color for undefined value]
+* [[option_weechat.color.status_name]] *weechat.color.status_name*
+** description: pass:none[text color for current buffer name in status bar]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+magenta+`
+** default value: `+white+`
-* [[option_fset.color.value_undef_selected]] *fset.color.value_undef_selected*
-** description: pass:none[color for undefined value on the selected line]
+* [[option_weechat.color.status_name_ssl]] *weechat.color.status_name_ssl*
+** description: pass:none[text color for current buffer name in status bar, if data are secured with a protocol like SSL]
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** default value: `+lightmagenta+`
+** default value: `+lightgreen+`
-* [[option_fset.format.export_help]] *fset.format.export_help*
-** description: pass:none[format of help line written before each option exported in a file (note: content is evaluated, see /help fset)]
+* [[option_weechat.color.status_nicklist_count]] *weechat.color.status_nicklist_count*
+** description: pass:none[text color for number of nicks in nicklist (status bar)]
+** type: color
+** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** default value: `+default+`
+
+* [[option_weechat.color.status_number]] *weechat.color.status_number*
+** description: pass:none[text color for current buffer number in status bar]
+** type: color
+** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** default value: `+yellow+`
+
+* [[option_weechat.color.status_time]] *weechat.color.status_time*
+** description: pass:none[text color for time (status bar)]
+** type: color
+** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** default value: `+default+`
+
+* [[option_weechat.completion.base_word_until_cursor]] *weechat.completion.base_word_until_cursor*
+** description: pass:none[if enabled, the base word to complete ends at char before cursor; otherwise the base word ends at first space after cursor]
+** type: boolean
+** values: on, off
+** default value: `+on+`
+
+* [[option_weechat.completion.command_inline]] *weechat.completion.command_inline*
+** description: pass:none[if enabled, the commands inside command line are completed (the command at beginning of line has higher priority and is used first); note: when this option is enabled, there is no more automatic completion of paths beginning with "/" (outside commands arguments)]
+** type: boolean
+** values: on, off
+** default value: `+on+`
+
+* [[option_weechat.completion.default_template]] *weechat.completion.default_template*
+** description: pass:none[default completion template (please see documentation for template codes and values: plugin API reference, function "weechat_hook_command")]
** type: string
** values: any string
-** default value: `+"# ${description2}"+`
+** default value: `+"%(nicks)|%(irc_channels)"+`
-* [[option_fset.format.export_option]] *fset.format.export_option*
-** description: pass:none[format of each option exported in a file (note: content is evaluated, see /help fset)]
+* [[option_weechat.completion.nick_add_space]] *weechat.completion.nick_add_space*
+** description: pass:none[add space after nick completion (when nick is not first word on command line)]
+** type: boolean
+** values: on, off
+** default value: `+on+`
+
+* [[option_weechat.completion.nick_case_sensitive]] *weechat.completion.nick_case_sensitive*
+** description: pass:none[case sensitive completion for nicks]
+** type: boolean
+** values: on, off
+** default value: `+off+`
+
+* [[option_weechat.completion.nick_completer]] *weechat.completion.nick_completer*
+** description: pass:none[string inserted after nick completion (when nick is first word on command line)]
** type: string
** values: any string
-** default value: `+"/set ${name} ${quoted_value}"+`
+** default value: `+": "+`
-* [[option_fset.format.export_option_null]] *fset.format.export_option_null*
-** description: pass:none[format of each option with "null" value exported in a file (note: content is evaluated, see /help fset)]
+* [[option_weechat.completion.nick_first_only]] *weechat.completion.nick_first_only*
+** description: pass:none[complete only with first nick found]
+** type: boolean
+** values: on, off
+** default value: `+off+`
+
+* [[option_weechat.completion.nick_ignore_chars]] *weechat.completion.nick_ignore_chars*
+** description: pass:none[chars ignored for nick completion]
** type: string
** values: any string
-** default value: `+"/unset ${name}"+`
+** default value: `+"[]`_-^"+`
-* [[option_fset.format.option1]] *fset.format.option1*
-** description: pass:none[first format of each line, used when option fset.look.format_number is set to 1 (note: content is evaluated, see /help fset); an empty string uses the default format ("${marked} ${name} ${type} ${value2}"), which is without evaluation of string and then much faster; formats can be switched with key ctrl+X]
+* [[option_weechat.completion.partial_completion_alert]] *weechat.completion.partial_completion_alert*
+** description: pass:none[send alert (BEL) when a partial completion occurs]
+** type: boolean
+** values: on, off
+** default value: `+on+`
+
+* [[option_weechat.completion.partial_completion_command]] *weechat.completion.partial_completion_command*
+** description: pass:none[partially complete command names (stop when many commands found begin with same letters)]
+** type: boolean
+** values: on, off
+** default value: `+off+`
+
+* [[option_weechat.completion.partial_completion_command_arg]] *weechat.completion.partial_completion_command_arg*
+** description: pass:none[partially complete command arguments (stop when many arguments found begin with same prefix)]
+** type: boolean
+** values: on, off
+** default value: `+off+`
+
+* [[option_weechat.completion.partial_completion_count]] *weechat.completion.partial_completion_count*
+** description: pass:none[display count for each partial completion in bar item]
+** type: boolean
+** values: on, off
+** default value: `+on+`
+
+* [[option_weechat.completion.partial_completion_other]] *weechat.completion.partial_completion_other*
+** description: pass:none[partially complete outside commands (stop when many words found begin with same letters)]
+** type: boolean
+** values: on, off
+** default value: `+off+`
+
+* [[option_weechat.completion.partial_completion_templates]] *weechat.completion.partial_completion_templates*
+** description: pass:none[comma-separated list of templates for which partial completion is enabled by default (with Tab key instead of shift-Tab); the list of templates is in documentation: plugin API reference, function "weechat_hook_command"]
+** type: string
+** values: any string
+** default value: `+"config_options"+`
+
+* [[option_weechat.history.display_default]] *weechat.history.display_default*
+** description: pass:none[maximum number of commands to display by default in history listing (0 = unlimited)]
+** type: integer
+** values: 0 .. 2147483647
+** default value: `+5+`
+
+* [[option_weechat.history.max_buffer_lines_minutes]] *weechat.history.max_buffer_lines_minutes*
+** description: pass:none[maximum number of minutes in history per buffer (0 = unlimited); examples: 1440 = one day, 10080 = one week, 43200 = one month, 525600 = one year; use 0 ONLY if option weechat.history.max_buffer_lines_number is NOT set to 0]
+** type: integer
+** values: 0 .. 2147483647
+** default value: `+0+`
+
+* [[option_weechat.history.max_buffer_lines_number]] *weechat.history.max_buffer_lines_number*
+** description: pass:none[maximum number of lines in history per buffer (0 = unlimited); use 0 ONLY if option weechat.history.max_buffer_lines_minutes is NOT set to 0]
+** type: integer
+** values: 0 .. 2147483647
+** default value: `+4096+`
+
+* [[option_weechat.history.max_commands]] *weechat.history.max_commands*
+** description: pass:none[maximum number of user commands in history (0 = unlimited, NOT RECOMMENDED: no limit in memory usage)]
+** type: integer
+** values: 0 .. 2147483647
+** default value: `+100+`
+
+* [[option_weechat.history.max_visited_buffers]] *weechat.history.max_visited_buffers*
+** description: pass:none[maximum number of visited buffers to keep in memory]
+** type: integer
+** values: 0 .. 1000
+** default value: `+50+`
+
+* [[option_weechat.look.align_end_of_lines]] *weechat.look.align_end_of_lines*
+** description: pass:none[alignment for end of lines (all lines after the first): they are starting under this data (time, buffer, prefix, suffix, message (default))]
+** type: integer
+** values: time, buffer, prefix, suffix, message
+** default value: `+message+`
+
+* [[option_weechat.look.align_multiline_words]] *weechat.look.align_multiline_words*
+** description: pass:none[alignment for multiline words according to option weechat.look.align_end_of_lines; if disabled, the multiline words will not be aligned, which can be useful to not break long URLs]
+** type: boolean
+** values: on, off
+** default value: `+on+`
+
+* [[option_weechat.look.bar_more_down]] *weechat.look.bar_more_down*
+** description: pass:none[string displayed when bar can be scrolled down (for bars with filling different from "horizontal")]
+** type: string
+** values: any string
+** default value: `+"++"+`
+
+* [[option_weechat.look.bar_more_left]] *weechat.look.bar_more_left*
+** description: pass:none[string displayed when bar can be scrolled to the left (for bars with filling "horizontal")]
+** type: string
+** values: any string
+** default value: `+"<<"+`
+
+* [[option_weechat.look.bar_more_right]] *weechat.look.bar_more_right*
+** description: pass:none[string displayed when bar can be scrolled to the right (for bars with filling "horizontal")]
+** type: string
+** values: any string
+** default value: `+">>"+`
+
+* [[option_weechat.look.bar_more_up]] *weechat.look.bar_more_up*
+** description: pass:none[string displayed when bar can be scrolled up (for bars with filling different from "horizontal")]
+** type: string
+** values: any string
+** default value: `+"--"+`
+
+* [[option_weechat.look.bare_display_exit_on_input]] *weechat.look.bare_display_exit_on_input*
+** description: pass:none[exit the bare display mode on any changes in input]
+** type: boolean
+** values: on, off
+** default value: `+on+`
+
+* [[option_weechat.look.bare_display_time_format]] *weechat.look.bare_display_time_format*
+** description: pass:none[time format in bare display mode (see man strftime for date/time specifiers)]
+** type: string
+** values: any string
+** default value: `+"%H:%M"+`
+
+* [[option_weechat.look.buffer_auto_renumber]] *weechat.look.buffer_auto_renumber*
+** description: pass:none[automatically renumber buffers to have only consecutive numbers and start with number 1; if disabled, gaps between buffer numbers are allowed and the first buffer can have a number greater than 1]
+** type: boolean
+** values: on, off
+** default value: `+on+`
+
+* [[option_weechat.look.buffer_notify_default]] *weechat.look.buffer_notify_default*
+** description: pass:none[default notify level for buffers (used to tell WeeChat if buffer must be displayed in hotlist or not, according to importance of message): all=all messages (default), message=messages+highlights, highlight=highlights only, none=never display in hotlist]
+** type: integer
+** values: none, highlight, message, all
+** default value: `+all+`
+
+* [[option_weechat.look.buffer_position]] *weechat.look.buffer_position*
+** description: pass:none[position of a new buffer: end = after the end of list (number = last number + 1) (default), first_gap = at first available number in the list (after the end of list if no number is available); this option is used only if the buffer has no layout number]
+** type: integer
+** values: end, first_gap
+** default value: `+end+`
+
+* [[option_weechat.look.buffer_search_case_sensitive]] *weechat.look.buffer_search_case_sensitive*
+** description: pass:none[default text search in buffer: case sensitive or not]
+** type: boolean
+** values: on, off
+** default value: `+off+`
+
+* [[option_weechat.look.buffer_search_force_default]] *weechat.look.buffer_search_force_default*
+** description: pass:none[force default values for text search in buffer (instead of using values from last search in buffer)]
+** type: boolean
+** values: on, off
+** default value: `+off+`
+
+* [[option_weechat.look.buffer_search_regex]] *weechat.look.buffer_search_regex*
+** description: pass:none[default text search in buffer: if enabled, search POSIX extended regular expression, otherwise search simple string]
+** type: boolean
+** values: on, off
+** default value: `+off+`
+
+* [[option_weechat.look.buffer_search_where]] *weechat.look.buffer_search_where*
+** description: pass:none[default text search in buffer: in message, prefix, prefix and message]
+** type: integer
+** values: prefix, message, prefix_message
+** default value: `+prefix_message+`
+
+* [[option_weechat.look.buffer_time_format]] *weechat.look.buffer_time_format*
+** description: pass:none[time format for each line displayed in buffers (see man strftime for date/time specifiers) (note: content is evaluated, so you can use colors with format "${color:xxx}", see /help eval); for example time using grayscale (requires support of 256 colors): "${color:252}%H${color:245}%M${color:240}%S"]
+** type: string
+** values: any string
+** default value: `+"%H:%M:%S"+`
+
+* [[option_weechat.look.buffer_time_same]] *weechat.look.buffer_time_same*
+** description: pass:none[time displayed for a message with same time as previous message: use a space " " to hide time, another string to display this string instead of time, or an empty string to disable feature (display time) (note: content is evaluated, so you can use colors with format "${color:xxx}", see /help eval)]
** type: string
** values: any string
** default value: `+""+`
-* [[option_fset.format.option2]] *fset.format.option2*
-** description: pass:none[second format of each line, used when option fset.look.format_number is set to 2 (note: content is evaluated, see /help fset); an empty string uses the default format ("${marked} ${name} ${type} ${value2}"), which is without evaluation of string and then much faster; formats can be switched with key ctrl+X]
+* [[option_weechat.look.chat_space_right]] *weechat.look.chat_space_right*
+** description: pass:none[keep a space on the right side of chat area if there is a bar displayed on the right (for both text and read marker)]
+** type: boolean
+** values: on, off
+** default value: `+off+`
+
+* [[option_weechat.look.color_basic_force_bold]] *weechat.look.color_basic_force_bold*
+** description: pass:none[force "bold" attribute for light colors and "darkgray" in basic colors (this option is disabled by default: bold is used only if terminal has less than 16 colors)]
+** type: boolean
+** values: on, off
+** default value: `+off+`
+
+* [[option_weechat.look.color_inactive_buffer]] *weechat.look.color_inactive_buffer*
+** description: pass:none[use a different color for lines in inactive buffer (when line is from a merged buffer not selected)]
+** type: boolean
+** values: on, off
+** default value: `+on+`
+
+* [[option_weechat.look.color_inactive_message]] *weechat.look.color_inactive_message*
+** description: pass:none[use a different color for inactive message (when window is not current window, or if line is from a merged buffer not selected)]
+** type: boolean
+** values: on, off
+** default value: `+on+`
+
+* [[option_weechat.look.color_inactive_prefix]] *weechat.look.color_inactive_prefix*
+** description: pass:none[use a different color for inactive prefix (when window is not current window, or if line is from a merged buffer not selected)]
+** type: boolean
+** values: on, off
+** default value: `+on+`
+
+* [[option_weechat.look.color_inactive_prefix_buffer]] *weechat.look.color_inactive_prefix_buffer*
+** description: pass:none[use a different color for inactive buffer name in prefix (when window is not current window, or if line is from a merged buffer not selected)]
+** type: boolean
+** values: on, off
+** default value: `+on+`
+
+* [[option_weechat.look.color_inactive_time]] *weechat.look.color_inactive_time*
+** description: pass:none[use a different color for inactive time (when window is not current window, or if line is from a merged buffer not selected)]
+** type: boolean
+** values: on, off
+** default value: `+off+`
+
+* [[option_weechat.look.color_inactive_window]] *weechat.look.color_inactive_window*
+** description: pass:none[use a different color for lines in inactive window (when window is not current window)]
+** type: boolean
+** values: on, off
+** default value: `+on+`
+
+* [[option_weechat.look.color_nick_offline]] *weechat.look.color_nick_offline*
+** description: pass:none[use a different color for offline nicks (not in nicklist any more)]
+** type: boolean
+** values: on, off
+** default value: `+off+`
+
+* [[option_weechat.look.color_pairs_auto_reset]] *weechat.look.color_pairs_auto_reset*
+** description: pass:none[automatically reset table of color pairs when number of available pairs is lower or equal to this number (-1 = disable automatic reset, and then a manual "/color reset" is needed when table is full)]
+** type: integer
+** values: -1 .. 256
+** default value: `+5+`
+
+* [[option_weechat.look.color_real_white]] *weechat.look.color_real_white*
+** description: pass:none[if set, uses real white color, disabled by default for terms with white background (if you never use white background, you should turn on this option to see real white instead of default term foreground color)]
+** type: boolean
+** values: on, off
+** default value: `+off+`
+
+* [[option_weechat.look.command_chars]] *weechat.look.command_chars*
+** description: pass:none[chars used to determine if input string is a command or not: input must start with one of these chars; the slash ("/") is always considered as command prefix (example: ".$")]
** type: string
** values: any string
-** default value: `+"${marked} ${name} ${type} ${value2}${newline} ${empty_name} ${_default_value}${color:darkgray} -- ${min}..${max}${newline} ${empty_name} ${description}"+`
+** default value: `+""+`
-* [[option_fset.look.auto_refresh]] *fset.look.auto_refresh*
-** description: pass:none[comma separated list of options to automatically refresh on the fset buffer (if opened); "*" means all options (recommended), a name beginning with "!" is a negative value to prevent an option to be refreshed, wildcard "*" is allowed in names (example: "*,!plugin.section.*")]
+* [[option_weechat.look.command_incomplete]] *weechat.look.command_incomplete*
+** description: pass:none[if set, incomplete and unambiguous commands are allowed, for example /he for /help]
+** type: boolean
+** values: on, off
+** default value: `+off+`
+
+* [[option_weechat.look.confirm_quit]] *weechat.look.confirm_quit*
+** description: pass:none[if set, /quit command must be confirmed with extra argument "-yes" (see /help quit)]
+** type: boolean
+** values: on, off
+** default value: `+off+`
+
+* [[option_weechat.look.confirm_upgrade]] *weechat.look.confirm_upgrade*
+** description: pass:none[if set, /upgrade command must be confirmed with extra argument "-yes" (see /help upgrade)]
+** type: boolean
+** values: on, off
+** default value: `+off+`
+
+* [[option_weechat.look.day_change]] *weechat.look.day_change*
+** description: pass:none[display special message when day changes]
+** type: boolean
+** values: on, off
+** default value: `+on+`
+
+* [[option_weechat.look.day_change_message_1date]] *weechat.look.day_change_message_1date*
+** description: pass:none[message displayed when the day has changed, with one date displayed (for example at beginning of buffer) (see man strftime for date/time specifiers) (note: content is evaluated, so you can use colors with format "${color:xxx}", see /help eval)]
** type: string
** values: any string
-** default value: `+"*"+`
+** default value: `+"-- %a, %d %b %Y --"+`
-* [[option_fset.look.auto_unmark]] *fset.look.auto_unmark*
-** description: pass:none[automatically unmark all options after an action on marked options or after a refresh]
+* [[option_weechat.look.day_change_message_2dates]] *weechat.look.day_change_message_2dates*
+** description: pass:none[message displayed when the day has changed, with two dates displayed (between two messages); the second date specifiers must start with two "%" because strftime is called two times on this string (see man strftime for date/time specifiers) (note: content is evaluated, so you can use colors with format "${color:xxx}", see /help eval)]
+** type: string
+** values: any string
+** default value: `+"-- %%a, %%d %%b %%Y (%a, %d %b %Y) --"+`
+
+* [[option_weechat.look.eat_newline_glitch]] *weechat.look.eat_newline_glitch*
+** description: pass:none[if set, the eat_newline_glitch will be set to 0; this is used to not add new line char at end of each line, and then not break text when you copy/paste text from WeeChat to another application (this option is disabled by default because it can cause serious display bugs)]
** type: boolean
** values: on, off
** default value: `+off+`
-* [[option_fset.look.condition_catch_set]] *fset.look.condition_catch_set*
-** description: 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]
+* [[option_weechat.look.emphasized_attributes]] *weechat.look.emphasized_attributes*
+** description: pass:none[attributes for emphasized text: one or more attribute chars ("%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline); if the string is empty, the colors weechat.color.emphasized* are used]
** type: string
** values: any string
-** default value: `+"${count} >= 1"+`
+** default value: `+""+`
-* [[option_fset.look.export_help_default]] *fset.look.export_help_default*
-** description: pass:none[write help for each option exported by default (this can be overridden with arguments "-help" and "-nohelp" for command /fset -export)]
+* [[option_weechat.look.highlight]] *weechat.look.highlight*
+** description: pass:none[comma separated list of words to highlight; case insensitive comparison (use "(?-i)" at beginning of words to make them case sensitive), words may begin or end with "*" for partial match; example: "test,(?-i)*toto*,flash*"]
+** type: string
+** values: any string
+** default value: `+""+`
+
+* [[option_weechat.look.highlight_disable_regex]] *weechat.look.highlight_disable_regex*
+** description: pass:none[POSIX extended regular expression used to prevent any highlight from a message: this option has higher priority over other highlight options (if the string is found in the message, the highlight is disabled and the other options are ignored), regular expression is case insensitive (use "(?-i)" at beginning to make it case sensitive), examples: "<flash.*>", "(?-i)<Flash.*>"]
+** type: string
+** values: any string
+** default value: `+""+`
+
+* [[option_weechat.look.highlight_regex]] *weechat.look.highlight_regex*
+** description: pass:none[POSIX extended regular expression used to check if a message has highlight or not, at least one match in string must be surrounded by delimiters (chars different from: alphanumeric, "-", "_" and "|"), regular expression is case insensitive (use "(?-i)" at beginning to make it case sensitive), examples: "flashcode|flashy", "(?-i)FlashCode|flashy"]
+** type: string
+** values: any string
+** default value: `+""+`
+
+* [[option_weechat.look.highlight_tags]] *weechat.look.highlight_tags*
+** description: pass:none[comma separated list of tags to highlight; case insensitive comparison; wildcard "*" is allowed in each tag; many tags can be separated by "+" to make a logical "and" between tags; examples: "nick_flashcode" for messages from nick "FlashCode", "irc_notice+nick_toto*" for notices from a nick starting with "toto"]
+** type: string
+** values: any string
+** default value: `+""+`
+
+* [[option_weechat.look.hotlist_add_conditions]] *weechat.look.hotlist_add_conditions*
+** description: pass:none[conditions to add a buffer in hotlist (if notify level is OK for the buffer); you can use in these conditions: "window" (current window pointer), "buffer" (buffer pointer to add in hotlist), "priority" (0 = low, 1 = message, 2 = private, 3 = highlight); by default a buffer is added to hotlist if you are away, or if the buffer is not visible on screen (not displayed in any window), or if at least one relay client is connected via the weechat protocol]
+** type: string
+** values: any string
+** default value: `+"${away} || ${buffer.num_displayed} == 0 || ${info:relay_client_count,weechat,connected} > 0"+`
+
+* [[option_weechat.look.hotlist_buffer_separator]] *weechat.look.hotlist_buffer_separator*
+** description: pass:none[string displayed between buffers in hotlist]
+** type: string
+** values: any string
+** default value: `+", "+`
+
+* [[option_weechat.look.hotlist_count_max]] *weechat.look.hotlist_count_max*
+** description: pass:none[max number of messages count to display in hotlist for a buffer: 0 = never display messages count, other number = display max N messages count (from the highest to lowest priority)]
+** type: integer
+** values: 0 .. 4
+** default value: `+2+`
+
+* [[option_weechat.look.hotlist_count_min_msg]] *weechat.look.hotlist_count_min_msg*
+** description: pass:none[display messages count if number of messages is greater or equal to this value]
+** type: integer
+** values: 1 .. 100
+** default value: `+2+`
+
+* [[option_weechat.look.hotlist_names_count]] *weechat.look.hotlist_names_count*
+** description: pass:none[max number of names in hotlist (0 = no name displayed, only buffer numbers)]
+** type: integer
+** values: 0 .. 10000
+** default value: `+3+`
+
+* [[option_weechat.look.hotlist_names_length]] *weechat.look.hotlist_names_length*
+** description: pass:none[max length of names in hotlist (0 = no limit)]
+** type: integer
+** values: 0 .. 32
+** default value: `+0+`
+
+* [[option_weechat.look.hotlist_names_level]] *weechat.look.hotlist_names_level*
+** description: pass:none[level for displaying names in hotlist (combination of: 1=join/part, 2=message, 4=private, 8=highlight, for example: 12=private+highlight)]
+** type: integer
+** values: 1 .. 15
+** default value: `+12+`
+
+* [[option_weechat.look.hotlist_names_merged_buffers]] *weechat.look.hotlist_names_merged_buffers*
+** description: pass:none[if set, force display of names in hotlist for merged buffers]
+** type: boolean
+** values: on, off
+** default value: `+off+`
+
+* [[option_weechat.look.hotlist_prefix]] *weechat.look.hotlist_prefix*
+** description: pass:none[text displayed at the beginning of the hotlist]
+** type: string
+** values: any string
+** default value: `+"H: "+`
+
+* [[option_weechat.look.hotlist_remove]] *weechat.look.hotlist_remove*
+** description: pass:none[remove buffers in hotlist: buffer = remove buffer by buffer, merged = remove all visible merged buffers at once]
+** type: integer
+** values: buffer, merged
+** default value: `+merged+`
+
+* [[option_weechat.look.hotlist_short_names]] *weechat.look.hotlist_short_names*
+** description: pass:none[if set, uses short names to display buffer names in hotlist (start after first "." in name)]
** type: boolean
** values: on, off
** default value: `+on+`
-* [[option_fset.look.format_number]] *fset.look.format_number*
-** description: pass:none[number of format used to display options; this is dynamically changed by the key ctrl-X on the fset buffer]
+* [[option_weechat.look.hotlist_sort]] *weechat.look.hotlist_sort*
+** description: pass:none[sort of hotlist: group_time_*: group by notify level (highlights first) then sort by time, group_number_*: group by notify level (highlights first) then sort by number, number_*: sort by number; asc = ascending sort, desc = descending sort]
** type: integer
-** values: 1 .. 2
-** default value: `+1+`
+** values: group_time_asc, group_time_desc, group_number_asc, group_number_desc, number_asc, number_desc
+** default value: `+group_time_asc+`
-* [[option_fset.look.marked_string]] *fset.look.marked_string*
-** description: pass:none[string displayed when an option is marked (to do an action on multiple options)]
+* [[option_weechat.look.hotlist_suffix]] *weechat.look.hotlist_suffix*
+** description: pass:none[text displayed at the end of the hotlist]
+** type: string
+** values: any string
+** default value: `+""+`
+
+* [[option_weechat.look.hotlist_unique_numbers]] *weechat.look.hotlist_unique_numbers*
+** description: pass:none[keep only unique numbers in hotlist (this applies only on hotlist items where name is NOT displayed after number)]
+** type: boolean
+** values: on, off
+** default value: `+on+`
+
+* [[option_weechat.look.hotlist_update_on_buffer_switch]] *weechat.look.hotlist_update_on_buffer_switch*
+** description: pass:none[update the hotlist when switching buffers]
+** type: boolean
+** values: on, off
+** default value: `+on+`
+
+* [[option_weechat.look.input_cursor_scroll]] *weechat.look.input_cursor_scroll*
+** description: pass:none[number of chars displayed after end of input line when scrolling to display end of line]
+** type: integer
+** values: 0 .. 100
+** default value: `+20+`
+
+* [[option_weechat.look.input_share]] *weechat.look.input_share*
+** description: pass:none[share commands, text, or both in input for all buffers (there is still local history for each buffer)]
+** type: integer
+** values: none, commands, text, all
+** default value: `+none+`
+
+* [[option_weechat.look.input_share_overwrite]] *weechat.look.input_share_overwrite*
+** description: pass:none[if set and input is shared, always overwrite input in target buffer]
+** type: boolean
+** values: on, off
+** default value: `+off+`
+
+* [[option_weechat.look.input_undo_max]] *weechat.look.input_undo_max*
+** description: pass:none[max number of "undo" for command line, by buffer (0 = undo disabled)]
+** type: integer
+** values: 0 .. 65535
+** default value: `+32+`
+
+* [[option_weechat.look.item_away_message]] *weechat.look.item_away_message*
+** description: pass:none[display server away message in away bar item]
+** type: boolean
+** values: on, off
+** default value: `+on+`
+
+* [[option_weechat.look.item_buffer_filter]] *weechat.look.item_buffer_filter*
+** description: pass:none[string used to show that some lines are filtered in current buffer (bar item "buffer_filter")]
** type: string
** values: any string
** default value: `+"*"+`
-* [[option_fset.look.scroll_horizontal]] *fset.look.scroll_horizontal*
-** description: pass:none[left/right scroll in fset buffer (percent of width)]
+* [[option_weechat.look.item_buffer_zoom]] *weechat.look.item_buffer_zoom*
+** description: pass:none[string used to show zoom on merged buffer (bar item "buffer_zoom")]
+** type: string
+** values: any string
+** default value: `+"!"+`
+
+* [[option_weechat.look.item_mouse_status]] *weechat.look.item_mouse_status*
+** description: pass:none[string used to show if mouse is enabled (bar item "mouse_status")]
+** type: string
+** values: any string
+** default value: `+"M"+`
+
+* [[option_weechat.look.item_time_format]] *weechat.look.item_time_format*
+** description: pass:none[time format for "time" bar item (see man strftime for date/time specifiers) (note: content is evaluated, so you can use colors with format "${color:xxx}", see /help eval)]
+** type: string
+** values: any string
+** default value: `+"%H:%M"+`
+
+* [[option_weechat.look.jump_current_to_previous_buffer]] *weechat.look.jump_current_to_previous_buffer*
+** description: pass:none[jump to previous buffer displayed when jumping to current buffer number with /buffer *N (where N is a buffer number), to easily switch to another buffer, then come back to current buffer]
+** type: boolean
+** values: on, off
+** default value: `+on+`
+
+* [[option_weechat.look.jump_previous_buffer_when_closing]] *weechat.look.jump_previous_buffer_when_closing*
+** description: pass:none[jump to previously visited buffer when closing a buffer (if disabled, then jump to buffer number - 1)]
+** type: boolean
+** values: on, off
+** default value: `+on+`
+
+* [[option_weechat.look.jump_smart_back_to_buffer]] *weechat.look.jump_smart_back_to_buffer*
+** description: pass:none[jump back to initial buffer after reaching end of hotlist]
+** type: boolean
+** values: on, off
+** default value: `+on+`
+
+* [[option_weechat.look.key_bind_safe]] *weechat.look.key_bind_safe*
+** description: pass:none[allow only binding of "safe" keys (beginning with a ctrl or meta code)]
+** type: boolean
+** values: on, off
+** default value: `+on+`
+
+* [[option_weechat.look.key_grab_delay]] *weechat.look.key_grab_delay*
+** description: pass:none[default delay (in milliseconds) to grab a key (using default key alt-k); this delay can be overridden in the /input command (see /help input)]
** type: integer
-** values: 1 .. 100
+** values: 1 .. 10000
+** default value: `+800+`
+
+* [[option_weechat.look.mouse]] *weechat.look.mouse*
+** description: pass:none[enable mouse support]
+** type: boolean
+** values: on, off
+** default value: `+off+`
+
+* [[option_weechat.look.mouse_timer_delay]] *weechat.look.mouse_timer_delay*
+** description: pass:none[delay (in milliseconds) to grab a mouse event: WeeChat will wait this delay before processing event]
+** type: integer
+** values: 1 .. 10000
+** default value: `+100+`
+
+* [[option_weechat.look.nick_color_force]] *weechat.look.nick_color_force*
+** description: pass:none[force color for some nicks: hash computed with nickname to find color will not be used for these nicks (format is: "nick1:color1;nick2:color2"); look up for nicks is with exact case then lower case, so it's possible to use only lower case for nicks in this option; color can include background with the format "text,background", for example "yellow,red"]
+** type: string
+** values: any string
+** default value: `+""+`
+
+* [[option_weechat.look.nick_color_hash]] *weechat.look.nick_color_hash*
+** description: pass:none[hash algorithm used to find the color for a nick: djb2 = variant of djb2 (position of letters matters: anagrams of a nick have different color), djb2_32 = variant of djb2 using 32-bit instead of 64-bit integer, sum = sum of letters, sum_32 = sum of letters using 32-bit instead of 64-bit integer]
+** type: integer
+** values: djb2, sum, djb2_32, sum_32
+** default value: `+djb2+`
+
+* [[option_weechat.look.nick_color_hash_salt]] *weechat.look.nick_color_hash_salt*
+** description: pass:none[salt for the hash algorithm used to find nick colors (the nickname is appended to this salt and the hash algorithm operates on this string); modifying this shuffles nick colors]
+** type: string
+** values: any string
+** default value: `+""+`
+
+* [[option_weechat.look.nick_color_stop_chars]] *weechat.look.nick_color_stop_chars*
+** description: pass:none[chars used to stop in nick when computing color with letters of nick (at least one char outside this list must be in string before stopping) (example: nick "|nick|away" with "|" in chars will return color of nick "|nick"); this option has an impact on option weechat.look.nick_color_force, so the nick for the forced color must not contain the chars ignored by this option]
+** type: string
+** values: any string
+** default value: `+"_|["+`
+
+* [[option_weechat.look.nick_prefix]] *weechat.look.nick_prefix*
+** description: pass:none[text to display before nick in prefix of message, example: "<"]
+** type: string
+** values: any string
+** default value: `+""+`
+
+* [[option_weechat.look.nick_suffix]] *weechat.look.nick_suffix*
+** description: pass:none[text to display after nick in prefix of message, example: ">"]
+** type: string
+** values: any string
+** default value: `+""+`
+
+* [[option_weechat.look.paste_auto_add_newline]] *weechat.look.paste_auto_add_newline*
+** description: pass:none[automatically add a newline at the end of pasted text if there are at least two lines and if a confirmation is asked]
+** type: boolean
+** values: on, off
+** default value: `+on+`
+
+* [[option_weechat.look.paste_bracketed]] *weechat.look.paste_bracketed*
+** description: pass:none[enable terminal "bracketed paste mode" (not supported in all terminals/multiplexers): in this mode, pasted text is bracketed with control sequences so that WeeChat can differentiate pasted text from typed-in text ("ESC[200~", followed by the pasted text, followed by "ESC[201~")]
+** type: boolean
+** values: on, off
+** default value: `+on+`
+
+* [[option_weechat.look.paste_bracketed_timer_delay]] *weechat.look.paste_bracketed_timer_delay*
+** description: pass:none[force end of bracketed paste after this delay (in seconds) if the control sequence for end of bracketed paste ("ESC[201~") was not received in time]
+** type: integer
+** values: 1 .. 60
** default value: `+10+`
-* [[option_fset.look.show_plugins_desc]] *fset.look.show_plugins_desc*
-** description: pass:none[show the plugin description options (plugins.desc.*)]
+* [[option_weechat.look.paste_max_lines]] *weechat.look.paste_max_lines*
+** description: pass:none[max number of lines for paste without asking user (-1 = disable this feature); this option is used only if the bar item "input_paste" is used in at least one bar (by default it is used in "input" bar)]
+** type: integer
+** values: -1 .. 2147483647
+** default value: `+1+`
+
+* [[option_weechat.look.prefix_action]] *weechat.look.prefix_action*
+** description: pass:none[prefix for action messages (note: content is evaluated, so you can use colors with format "${color:xxx}", see /help eval)]
+** type: string
+** values: any string
+** default value: `+" *"+`
+
+* [[option_weechat.look.prefix_align]] *weechat.look.prefix_align*
+** description: pass:none[prefix alignment (none, left, right (default))]
+** type: integer
+** values: none, left, right
+** default value: `+right+`
+
+* [[option_weechat.look.prefix_align_max]] *weechat.look.prefix_align_max*
+** description: pass:none[max size for prefix (0 = no max size)]
+** type: integer
+** values: 0 .. 128
+** default value: `+0+`
+
+* [[option_weechat.look.prefix_align_min]] *weechat.look.prefix_align_min*
+** description: pass:none[min size for prefix]
+** type: integer
+** values: 0 .. 128
+** default value: `+0+`
+
+* [[option_weechat.look.prefix_align_more]] *weechat.look.prefix_align_more*
+** description: pass:none[char to display if prefix is truncated (must be exactly one char on screen)]
+** type: string
+** values: any string
+** default value: `+"+"+`
+
+* [[option_weechat.look.prefix_align_more_after]] *weechat.look.prefix_align_more_after*
+** description: pass:none[display the truncature char (by default "+") after the text (by replacing the space that should be displayed here); if disabled, the truncature char replaces last char of text]
+** type: boolean
+** values: on, off
+** default value: `+on+`
+
+* [[option_weechat.look.prefix_buffer_align]] *weechat.look.prefix_buffer_align*
+** description: pass:none[prefix alignment for buffer name, when many buffers are merged with same number (none, left, right (default))]
+** type: integer
+** values: none, left, right
+** default value: `+right+`
+
+* [[option_weechat.look.prefix_buffer_align_max]] *weechat.look.prefix_buffer_align_max*
+** description: pass:none[max size for buffer name, when many buffers are merged with same number (0 = no max size)]
+** type: integer
+** values: 0 .. 128
+** default value: `+0+`
+
+* [[option_weechat.look.prefix_buffer_align_more]] *weechat.look.prefix_buffer_align_more*
+** description: pass:none[char to display if buffer name is truncated (when many buffers are merged with same number) (must be exactly one char on screen)]
+** type: string
+** values: any string
+** default value: `+"+"+`
+
+* [[option_weechat.look.prefix_buffer_align_more_after]] *weechat.look.prefix_buffer_align_more_after*
+** description: pass:none[display the truncature char (by default "+") after the text (by replacing the space that should be displayed here); if disabled, the truncature char replaces last char of text]
+** type: boolean
+** values: on, off
+** default value: `+on+`
+
+* [[option_weechat.look.prefix_error]] *weechat.look.prefix_error*
+** description: pass:none[prefix for error messages (note: content is evaluated, so you can use colors with format "${color:xxx}", see /help eval)]
+** type: string
+** values: any string
+** default value: `+"=!="+`
+
+* [[option_weechat.look.prefix_join]] *weechat.look.prefix_join*
+** description: pass:none[prefix for join messages (note: content is evaluated, so you can use colors with format "${color:xxx}", see /help eval)]
+** type: string
+** values: any string
+** default value: `+"-->"+`
+
+* [[option_weechat.look.prefix_network]] *weechat.look.prefix_network*
+** description: pass:none[prefix for network messages (note: content is evaluated, so you can use colors with format "${color:xxx}", see /help eval)]
+** type: string
+** values: any string
+** default value: `+"--"+`
+
+* [[option_weechat.look.prefix_quit]] *weechat.look.prefix_quit*
+** description: pass:none[prefix for quit messages (note: content is evaluated, so you can use colors with format "${color:xxx}", see /help eval)]
+** type: string
+** values: any string
+** default value: `+"<--"+`
+
+* [[option_weechat.look.prefix_same_nick]] *weechat.look.prefix_same_nick*
+** description: pass:none[prefix displayed for a message with same nick as previous but not next message: use a space " " to hide prefix, another string to display this string instead of prefix, or an empty string to disable feature (display prefix)]
+** type: string
+** values: any string
+** default value: `+""+`
+
+* [[option_weechat.look.prefix_same_nick_middle]] *weechat.look.prefix_same_nick_middle*
+** description: pass:none[prefix displayed for a message with same nick as previous and next message: use a space " " to hide prefix, another string to display this string instead of prefix, or an empty string to disable feature (display prefix)]
+** type: string
+** values: any string
+** default value: `+""+`
+
+* [[option_weechat.look.prefix_suffix]] *weechat.look.prefix_suffix*
+** description: pass:none[string displayed after prefix]
+** type: string
+** values: any string
+** default value: `+"|"+`
+
+* [[option_weechat.look.quote_nick_prefix]] *weechat.look.quote_nick_prefix*
+** description: pass:none[text to display before nick when quoting a message (see /help cursor)]
+** type: string
+** values: any string
+** default value: `+"<"+`
+
+* [[option_weechat.look.quote_nick_suffix]] *weechat.look.quote_nick_suffix*
+** description: pass:none[text to display after nick when quoting a message (see /help cursor)]
+** type: string
+** values: any string
+** default value: `+">"+`
+
+* [[option_weechat.look.quote_time_format]] *weechat.look.quote_time_format*
+** description: pass:none[time format when quoting a message (see /help cursor)]
+** type: string
+** values: any string
+** default value: `+"%H:%M:%S"+`
+
+* [[option_weechat.look.read_marker]] *weechat.look.read_marker*
+** description: pass:none[use a marker (line or char) on buffers to show first unread line]
+** type: integer
+** values: none, line, char
+** default value: `+line+`
+
+* [[option_weechat.look.read_marker_always_show]] *weechat.look.read_marker_always_show*
+** description: pass:none[always show read marker, even if it is after last buffer line]
** type: boolean
** values: on, off
** default value: `+off+`
-* [[option_fset.look.sort]] *fset.look.sort*
-** description: 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]
+* [[option_weechat.look.read_marker_string]] *weechat.look.read_marker_string*
+** description: pass:none[string used to draw read marker line (string is repeated until end of line)]
** type: string
** values: any string
-** default value: `+"~name"+`
+** default value: `+"- "+`
-* [[option_fset.look.unmarked_string]] *fset.look.unmarked_string*
-** description: pass:none[string displayed when an option is not marked]
+* [[option_weechat.look.read_marker_update_on_buffer_switch]] *weechat.look.read_marker_update_on_buffer_switch*
+** description: pass:none[update the read marker when switching buffers]
+** type: boolean
+** values: on, off
+** default value: `+on+`
+
+* [[option_weechat.look.save_config_on_exit]] *weechat.look.save_config_on_exit*
+** description: pass:none[save configuration file on exit]
+** type: boolean
+** values: on, off
+** default value: `+on+`
+
+* [[option_weechat.look.save_config_with_fsync]] *weechat.look.save_config_with_fsync*
+** description: pass:none[use fsync to synchronize the configuration file with the storage device (see man fsync); this is slower but should prevent any data loss in case of power failure during the save of configuration file]
+** type: boolean
+** values: on, off
+** default value: `+off+`
+
+* [[option_weechat.look.save_layout_on_exit]] *weechat.look.save_layout_on_exit*
+** description: pass:none[save layout on exit (buffers, windows, or both)]
+** type: integer
+** values: none, buffers, windows, all
+** default value: `+none+`
+
+* [[option_weechat.look.scroll_amount]] *weechat.look.scroll_amount*
+** description: pass:none[how many lines to scroll by with scroll_up and scroll_down]
+** type: integer
+** values: 1 .. 2147483647
+** default value: `+3+`
+
+* [[option_weechat.look.scroll_bottom_after_switch]] *weechat.look.scroll_bottom_after_switch*
+** description: pass:none[scroll to bottom of window after switch to another buffer (do not remember scroll position in windows); the scroll is done only for buffers with formatted content (not free content)]
+** type: boolean
+** values: on, off
+** default value: `+off+`
+
+* [[option_weechat.look.scroll_page_percent]] *weechat.look.scroll_page_percent*
+** description: pass:none[percent of screen to scroll when scrolling one page up or down (for example 100 means one page, 50 half-page)]
+** type: integer
+** values: 1 .. 100
+** default value: `+100+`
+
+* [[option_weechat.look.search_text_not_found_alert]] *weechat.look.search_text_not_found_alert*
+** description: pass:none[alert user when text sought is not found in buffer]
+** type: boolean
+** values: on, off
+** default value: `+on+`
+
+* [[option_weechat.look.separator_horizontal]] *weechat.look.separator_horizontal*
+** description: pass:none[char used to draw horizontal separators around bars and windows (empty value will draw a real line with ncurses, but may cause bugs with URL selection under some terminals); width on screen must be exactly one char]
** type: string
** values: any string
-** default value: `+" "+`
+** default value: `+"-"+`
-* [[option_fset.look.use_color_value]] *fset.look.use_color_value*
-** description: pass:none[use the color to display value of color options]
+* [[option_weechat.look.separator_vertical]] *weechat.look.separator_vertical*
+** description: pass:none[char used to draw vertical separators around bars and windows (empty value will draw a real line with ncurses); width on screen must be exactly one char]
+** type: string
+** values: any string
+** default value: `+""+`
+
+* [[option_weechat.look.tab_width]] *weechat.look.tab_width*
+** description: pass:none[number of spaces used to display tabs in messages]
+** type: integer
+** values: 1 .. 64
+** default value: `+1+`
+
+* [[option_weechat.look.time_format]] *weechat.look.time_format*
+** description: pass:none[time format for dates converted to strings and displayed in messages (see man strftime for date/time specifiers)]
+** type: string
+** values: any string
+** default value: `+"%a, %d %b %Y %T"+`
+
+* [[option_weechat.look.window_auto_zoom]] *weechat.look.window_auto_zoom*
+** description: pass:none[automatically zoom on current window if the terminal becomes too small to display all windows (use alt-z to unzoom windows when the terminal is big enough)]
** type: boolean
** values: on, off
** default value: `+off+`
-* [[option_fset.look.use_keys]] *fset.look.use_keys*
-** description: pass:none[use keys alt+X in fset buffer to do actions on options; if disabled, only the input is allowed]
+* [[option_weechat.look.window_separator_horizontal]] *weechat.look.window_separator_horizontal*
+** description: pass:none[display an horizontal separator between windows]
** type: boolean
** values: on, off
** default value: `+on+`
-* [[option_fset.look.use_mute]] *fset.look.use_mute*
-** description: pass:none[use /mute command to set options]
+* [[option_weechat.look.window_separator_vertical]] *weechat.look.window_separator_vertical*
+** description: pass:none[display a vertical separator between windows]
+** type: boolean
+** values: on, off
+** default value: `+on+`
+
+* [[option_weechat.look.window_title]] *weechat.look.window_title*
+** description: pass:none[title for window (terminal for Curses GUI), set on startup; an empty string will keep title unchanged (note: content is evaluated, see /help eval); example: "WeeChat ${info:version}"]
+** type: string
+** values: any string
+** default value: `+""+`
+
+* [[option_weechat.look.word_chars_highlight]] *weechat.look.word_chars_highlight*
+** description: pass:none[comma-separated list of chars (or range of chars) that are considered part of words for highlights; each item can be a single char, a range of chars (format: a-z), a class of wide character (for example "alnum", see man wctype); a "!" before the item makes it negative (ie the char is NOT considered part of words); the value "*" matches any char; unicode chars are allowed with the format \u1234, for example \u00A0 for unbreakable space (see /help print for supported formats)]
+** type: string
+** values: any string
+** default value: `+"!\u00A0,-,_,|,alnum"+`
+
+* [[option_weechat.look.word_chars_input]] *weechat.look.word_chars_input*
+** description: pass:none[comma-separated list of chars (or range of chars) that are considered part of words for command line; each item can be a single char, a range of chars (format: a-z), a class of wide character (for example "alnum", see man wctype); a "!" before the item makes it negative (ie the char is NOT considered part of words); the value "*" matches any char; unicode chars are allowed with the format \u1234, for example \u00A0 for unbreakable space (see /help print for supported formats)]
+** type: string
+** values: any string
+** default value: `+"!\u00A0,-,_,|,alnum"+`
+
+* [[option_weechat.network.connection_timeout]] *weechat.network.connection_timeout*
+** description: pass:none[timeout (in seconds) for connection to a remote host (made in a child process)]
+** type: integer
+** values: 1 .. 2147483647
+** default value: `+60+`
+
+* [[option_weechat.network.gnutls_ca_system]] *weechat.network.gnutls_ca_system*
+** description: pass:none[load system's default trusted certificate authorities on startup; this can be turned off to save some memory only if you are not using SSL connections at all]
+** type: boolean
+** values: on, off
+** default value: `+on+`
+
+* [[option_weechat.network.gnutls_ca_user]] *weechat.network.gnutls_ca_user*
+** description: pass:none[extra file(s) with certificate authorities; multiple files must be separated by colons (each path is evaluated, see function string_eval_path_home in plugin API reference)]
+** type: string
+** values: any string
+** default value: `+""+`
+
+* [[option_weechat.network.gnutls_handshake_timeout]] *weechat.network.gnutls_handshake_timeout*
+** description: pass:none[timeout (in seconds) for gnutls handshake]
+** type: integer
+** values: 1 .. 2147483647
+** default value: `+30+`
+
+* [[option_weechat.network.proxy_curl]] *weechat.network.proxy_curl*
+** description: pass:none[name of proxy used for download of URLs with Curl (used to download list of scripts and in scripts calling function hook_process); the proxy must be defined with command /proxy]
+** type: string
+** values: any string
+** default value: `+""+`
+
+* [[option_weechat.plugin.autoload]] *weechat.plugin.autoload*
+** description: pass:none[comma separated list of plugins to load automatically at startup, "*" means all plugins found, a name beginning with "!" is a negative value to prevent a plugin from being loaded, wildcard "*" is allowed in names (examples: "*" or "*,!lua,!tcl")]
+** type: string
+** values: any string
+** default value: `+"*"+`
+
+* [[option_weechat.plugin.extension]] *weechat.plugin.extension*
+** description: pass:none[comma separated list of file name extensions for plugins]
+** type: string
+** values: any string
+** default value: `+".so,.dll"+`
+
+* [[option_weechat.plugin.path]] *weechat.plugin.path*
+** description: pass:none[path for searching plugins (path is evaluated, see function string_eval_path_home in plugin API reference)]
+** type: string
+** values: any string
+** default value: `+"${weechat_data_dir}/plugins"+`
+
+* [[option_weechat.plugin.save_config_on_unload]] *weechat.plugin.save_config_on_unload*
+** description: pass:none[save configuration files when unloading plugins]
+** type: boolean
+** values: on, off
+** default value: `+on+`
+
+* [[option_weechat.signal.sighup]] *weechat.signal.sighup*
+** description: pass:none[command to execute when the signal is received, multiple commands can be separated by semicolons (note: commands are evaluated, see /help eval)]
+** type: string
+** values: any string
+** default value: `+"${if:${info:weechat_headless}?/reload:/quit -yes}"+`
+
+* [[option_weechat.signal.sigquit]] *weechat.signal.sigquit*
+** description: pass:none[command to execute when the signal is received, multiple commands can be separated by semicolons (note: commands are evaluated, see /help eval)]
+** type: string
+** values: any string
+** default value: `+"/quit -yes"+`
+
+* [[option_weechat.signal.sigterm]] *weechat.signal.sigterm*
+** description: pass:none[command to execute when the signal is received, multiple commands can be separated by semicolons (note: commands are evaluated, see /help eval)]
+** type: string
+** values: any string
+** default value: `+"/quit -yes"+`
+
+* [[option_weechat.signal.sigusr1]] *weechat.signal.sigusr1*
+** description: pass:none[command to execute when the signal is received, multiple commands can be separated by semicolons (note: commands are evaluated, see /help eval)]
+** type: string
+** values: any string
+** default value: `+""+`
+
+* [[option_weechat.signal.sigusr2]] *weechat.signal.sigusr2*
+** description: pass:none[command to execute when the signal is received, multiple commands can be separated by semicolons (note: commands are evaluated, see /help eval)]
+** type: string
+** values: any string
+** default value: `+""+`
+
+* [[option_weechat.startup.command_after_plugins]] *weechat.startup.command_after_plugins*
+** description: pass:none[command executed when WeeChat starts, after loading plugins; multiple commands can be separated by semicolons (note: commands are evaluated, see /help eval)]
+** type: string
+** values: any string
+** default value: `+""+`
+
+* [[option_weechat.startup.command_before_plugins]] *weechat.startup.command_before_plugins*
+** description: pass:none[command executed when WeeChat starts, before loading plugins; multiple commands can be separated by semicolons (note: commands are evaluated, see /help eval)]
+** type: string
+** values: any string
+** default value: `+""+`
+
+* [[option_weechat.startup.display_logo]] *weechat.startup.display_logo*
+** description: pass:none[display WeeChat logo at startup]
+** type: boolean
+** values: on, off
+** default value: `+on+`
+
+* [[option_weechat.startup.display_version]] *weechat.startup.display_version*
+** description: pass:none[display WeeChat version at startup]
+** type: boolean
+** values: on, off
+** default value: `+on+`
+
+* [[option_weechat.startup.sys_rlimit]] *weechat.startup.sys_rlimit*
+** description: pass:none[set resource limits for WeeChat process, format is: "res1:limit1,res2:limit2"; resource name is the end of constant (RLIMIT_XXX) in lower case (see man setrlimit for values); limit -1 means "unlimited"; example: set unlimited size for core file and max 1GB of virtual memory: "core:-1,as:1000000000"]
+** type: string
+** values: any string
+** default value: `+""+`
+// end::weechat_options[]
+
+// tag::xfer_options[]
+* [[option_xfer.color.status_aborted]] *xfer.color.status_aborted*
+** description: pass:none[text color for "aborted" status]
+** type: color
+** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** default value: `+lightred+`
+
+* [[option_xfer.color.status_active]] *xfer.color.status_active*
+** description: pass:none[text color for "active" status]
+** type: color
+** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** default value: `+lightblue+`
+
+* [[option_xfer.color.status_connecting]] *xfer.color.status_connecting*
+** description: pass:none[text color for "connecting" status]
+** type: color
+** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** default value: `+yellow+`
+
+* [[option_xfer.color.status_done]] *xfer.color.status_done*
+** description: pass:none[text color for "done" status]
+** type: color
+** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** default value: `+lightgreen+`
+
+* [[option_xfer.color.status_failed]] *xfer.color.status_failed*
+** description: pass:none[text color for "failed" status]
+** type: color
+** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** default value: `+lightred+`
+
+* [[option_xfer.color.status_waiting]] *xfer.color.status_waiting*
+** description: pass:none[text color for "waiting" status]
+** type: color
+** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** default value: `+lightcyan+`
+
+* [[option_xfer.color.text]] *xfer.color.text*
+** description: pass:none[text color in xfer buffer]
+** type: color
+** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** default value: `+default+`
+
+* [[option_xfer.color.text_bg]] *xfer.color.text_bg*
+** description: pass:none[background color in xfer buffer]
+** type: color
+** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** default value: `+default+`
+
+* [[option_xfer.color.text_selected]] *xfer.color.text_selected*
+** description: pass:none[text color of selected line in xfer buffer]
+** type: color
+** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** default value: `+white+`
+
+* [[option_xfer.file.auto_accept_chats]] *xfer.file.auto_accept_chats*
+** description: pass:none[automatically accept chat requests (use carefully!)]
** type: boolean
** values: on, off
** default value: `+off+`
-// end::fset_options[]
+
+* [[option_xfer.file.auto_accept_files]] *xfer.file.auto_accept_files*
+** description: pass:none[automatically accept incoming files (use carefully!)]
+** type: boolean
+** values: on, off
+** default value: `+off+`
+
+* [[option_xfer.file.auto_accept_nicks]] *xfer.file.auto_accept_nicks*
+** description: pass:none[comma-separated list of nicks for which the incoming files and chats are automatically accepted; format is "server.nick" (for a specific server) or "nick" (for all servers); example: "libera.FlashCode,andrew"]
+** type: string
+** values: any string
+** default value: `+""+`
+
+* [[option_xfer.file.auto_check_crc32]] *xfer.file.auto_check_crc32*
+** description: pass:none[automatically check CRC32 file checksum if it is found in the filename (8 hexadecimal chars)]
+** type: boolean
+** values: on, off
+** default value: `+off+`
+
+* [[option_xfer.file.auto_rename]] *xfer.file.auto_rename*
+** description: pass:none[rename incoming files if already exists (add ".1", ".2", ...)]
+** type: boolean
+** values: on, off
+** default value: `+on+`
+
+* [[option_xfer.file.auto_resume]] *xfer.file.auto_resume*
+** description: pass:none[automatically resume file transfer if connection with remote host is lost]
+** type: boolean
+** values: on, off
+** default value: `+on+`
+
+* [[option_xfer.file.convert_spaces]] *xfer.file.convert_spaces*
+** description: pass:none[convert spaces to underscores when sending and receiving files]
+** type: boolean
+** values: on, off
+** default value: `+on+`
+
+* [[option_xfer.file.download_path]] *xfer.file.download_path*
+** description: pass:none[path for writing incoming files (path is evaluated, see function string_eval_path_home in plugin API reference)]
+** type: string
+** values: any string
+** default value: `+"${weechat_data_dir}/xfer"+`
+
+* [[option_xfer.file.download_temporary_suffix]] *xfer.file.download_temporary_suffix*
+** description: pass:none[temporary filename suffix used during the transfer for a file received, it is removed after successful transfer; if empty string, no filename suffix is used during the transfer]
+** type: string
+** values: any string
+** default value: `+".part"+`
+
+* [[option_xfer.file.upload_path]] *xfer.file.upload_path*
+** description: pass:none[path for reading files when sending (path is evaluated, see function string_eval_path_home in plugin API reference)]
+** type: string
+** values: any string
+** default value: `+"~"+`
+
+* [[option_xfer.file.use_nick_in_filename]] *xfer.file.use_nick_in_filename*
+** description: pass:none[use remote nick as prefix in local filename when receiving a file]
+** type: boolean
+** values: on, off
+** default value: `+on+`
+
+* [[option_xfer.look.auto_open_buffer]] *xfer.look.auto_open_buffer*
+** description: pass:none[auto open xfer buffer when a new xfer is added to list]
+** type: boolean
+** values: on, off
+** default value: `+on+`
+
+* [[option_xfer.look.progress_bar_size]] *xfer.look.progress_bar_size*
+** description: pass:none[size of progress bar, in chars (if 0, progress bar is disabled)]
+** type: integer
+** values: 0 .. 256
+** default value: `+20+`
+
+* [[option_xfer.look.pv_tags]] *xfer.look.pv_tags*
+** description: pass:none[comma separated list of tags used in private messages, for example: "notify_message", "notify_private" or "notify_highlight"]
+** type: string
+** values: any string
+** default value: `+"notify_private"+`
+
+* [[option_xfer.network.blocksize]] *xfer.network.blocksize*
+** description: pass:none[block size for sending packets, in bytes]
+** type: integer
+** values: 1024 .. 102400
+** default value: `+65536+`
+
+* [[option_xfer.network.fast_send]] *xfer.network.fast_send*
+** description: pass:none[does not wait for ACK when sending file]
+** type: boolean
+** values: on, off
+** default value: `+on+`
+
+* [[option_xfer.network.own_ip]] *xfer.network.own_ip*
+** description: pass:none[IP or DNS address used for sending files/chats (if empty, local interface IP is used)]
+** type: string
+** values: any string
+** default value: `+""+`
+
+* [[option_xfer.network.port_range]] *xfer.network.port_range*
+** description: pass:none[restricts outgoing files/chats to use only ports in the given range (useful for NAT) (syntax: a single port, ie. 5000 or a port range, ie. 5000-5015, empty value means any port, it's recommended to use ports greater than 1024, because only root can use ports below 1024)]
+** type: string
+** values: any string
+** default value: `+""+`
+
+* [[option_xfer.network.send_ack]] *xfer.network.send_ack*
+** description: pass:none[send acks when receiving files; if disabled, the transfer may freeze if the sender is waiting for acks (for example a WeeChat sending a file with option xfer.network.fast_send set to off); on the other hand, disabling send of acks may prevent a freeze if the acks are not sent immediately to the sender]
+** type: boolean
+** values: on, off
+** default value: `+on+`
+
+* [[option_xfer.network.speed_limit_recv]] *xfer.network.speed_limit_recv*
+** description: pass:none[speed limit for receiving files, in kilo-bytes by second (0 means no limit)]
+** type: integer
+** values: 0 .. 2147483647
+** default value: `+0+`
+
+* [[option_xfer.network.speed_limit_send]] *xfer.network.speed_limit_send*
+** description: pass:none[speed limit for sending files, in kilo-bytes by second (0 means no limit)]
+** type: integer
+** values: 0 .. 2147483647
+** default value: `+0+`
+
+* [[option_xfer.network.timeout]] *xfer.network.timeout*
+** description: pass:none[timeout for xfer request (in seconds)]
+** type: integer
+** values: 5 .. 2147483647
+** default value: `+300+`
+// end::xfer_options[]
diff --git a/doc/fr/includes/autogen_api_config_priority.fr.adoc b/doc/fr/includes/autogen_api_config_priority.fr.adoc
index e46bb99f5..b9166f697 100644
--- a/doc/fr/includes/autogen_api_config_priority.fr.adoc
+++ b/doc/fr/includes/autogen_api_config_priority.fr.adoc
@@ -6,7 +6,7 @@
// tag::config_priority[]
[width="30%",cols="1,3,2",options="header"]
|===
-| Rank | File | Priority
+| Rang | Fichier | Priorité
| 1 | sec.conf | 120000
| 2 | weechat.conf | 110000
| 3 | plugins.conf | 100000
diff --git a/doc/fr/includes/autogen_api_plugins_priority.fr.adoc b/doc/fr/includes/autogen_api_plugins_priority.fr.adoc
index d9f7a7de8..70500843d 100644
--- a/doc/fr/includes/autogen_api_plugins_priority.fr.adoc
+++ b/doc/fr/includes/autogen_api_plugins_priority.fr.adoc
@@ -6,7 +6,7 @@
// tag::plugins_priority[]
[width="30%",cols="1,3,2",options="header"]
|===
-| Rank | Extension | Priority
+| Rang | Extension | Priorité
| 1 | charset | 16000
| 2 | logger | 15000
| 3 | exec | 14000
diff --git a/doc/fr/includes/autogen_user_commands.fr.adoc b/doc/fr/includes/autogen_user_commands.fr.adoc
index 10b33e9a8..8a86d4ed5 100644
--- a/doc/fr/includes/autogen_user_commands.fr.adoc
+++ b/doc/fr/includes/autogen_user_commands.fr.adoc
@@ -1076,11 +1076,13 @@ nombre : nombre de réponses à retourner (recherche complète si nombre négat
add <alias> [<commande>[;<commande>...]]
addcompletion <complétion> <alias> [<commande>[;<commande>...]]
del <alias> [<alias>...]
+ rename <alias> <nouvel_alias>
list : afficher les alias (sans paramètre, cette liste est affichée)
add : ajouter un alias
addcompletion : ajouter un alias avec une complétion personnalisée
del : supprimer un alias
+ rename : renommer un alias
complétion : complétion pour l'alias : par défaut la complétion se fait avec la commande cible
note : vous pouvez utiliser %%commande pour utiliser la complétion d'une commande existante
alias : nom de l'alias
@@ -1101,6 +1103,8 @@ Exemples :
/alias add split /window splith
alias /hello pour dire "hello" sur tous les canaux mais pas sur #weechat :
/alias add hello /allchan -exclude=#weechat hello
+ renommer l'alias "hello" en "Hello" :
+ /alias rename hello Hello
alias /forcejoin pour envoyer la commande IRC "forcejoin" avec la complétion de /sajoin :
/alias addcompletion %%sajoin forcejoin /quote forcejoin
----
diff --git a/doc/fr/includes/autogen_user_default_aliases.fr.adoc b/doc/fr/includes/autogen_user_default_aliases.fr.adoc
index 37a4f64b3..7f61b4a06 100644
--- a/doc/fr/includes/autogen_user_default_aliases.fr.adoc
+++ b/doc/fr/includes/autogen_user_default_aliases.fr.adoc
@@ -8,37 +8,37 @@
|===
| Alias | Commande | Complétion
-| /AAWAY | /allserv /away | -
-| /ANICK | /allserv /nick | -
-| /BEEP | /print -beep | -
-| /BYE | /quit | -
-| /C | /buffer clear | -
-| /CL | /buffer clear | -
-| /CLOSE | /buffer close | -
-| /CHAT | /dcc chat | -
-| /EXIT | /quit | -
-| /IG | /ignore | -
-| /J | /join | -
-| /K | /kick | -
-| /KB | /kickban | -
-| /LEAVE | /part | -
-| /M | /msg | -
-| /MUB | /unban * | -
-| /MSGBUF | /command -buffer $1 * /input send $2- | %(buffers_plugins_names)
-| /N | /names | -
-| /Q | /query | -
-| /REDRAW | /window refresh | -
-| /SAY | /msg * | -
-| /SIGNOFF | /quit | -
-| /T | /topic | -
-| /UB | /unban | -
-| /UMODE | /mode $nick | -
-| /V | /command core version | -
-| /W | /who | -
-| /WC | /window close | -
-| /WI | /whois | -
-| /WII | /whois $1 $1 | -
-| /WM | /window merge | -
-| /WW | /whowas | -
+| /aaway | /allserv /away | -
+| /anick | /allserv /nick | -
+| /beep | /print -beep | -
+| /bye | /quit | -
+| /c | /buffer clear | -
+| /cl | /buffer clear | -
+| /close | /buffer close | -
+| /chat | /dcc chat | -
+| /exit | /quit | -
+| /ig | /ignore | -
+| /j | /join | -
+| /k | /kick | -
+| /kb | /kickban | -
+| /leave | /part | -
+| /m | /msg | -
+| /mub | /unban * | -
+| /msgbuf | /command -buffer $1 * /input send $2- | %(buffers_plugins_names)
+| /n | /names | -
+| /q | /query | -
+| /redraw | /window refresh | -
+| /say | /msg * | -
+| /signoff | /quit | -
+| /t | /topic | -
+| /ub | /unban | -
+| /umode | /mode $nick | -
+| /v | /command core version | -
+| /w | /who | -
+| /wc | /window close | -
+| /wi | /whois | -
+| /wii | /whois $1 $1 | -
+| /wm | /window merge | -
+| /ww | /whowas | -
|===
// end::default_aliases[]
diff --git a/doc/fr/includes/autogen_user_options.fr.adoc b/doc/fr/includes/autogen_user_options.fr.adoc
index c438405d8..3c11a4510 100644
--- a/doc/fr/includes/autogen_user_options.fr.adoc
+++ b/doc/fr/includes/autogen_user_options.fr.adoc
@@ -3,2109 +3,725 @@
// DO NOT EDIT BY HAND!
//
-// tag::sec_options[]
-* [[option_sec.crypt.cipher]] *sec.crypt.cipher*
-** description: pass:none[chiffrement ("cipher") utilisé pour chiffrer les données (le nombre après l'algorithme est la taille de la clé en bits)]
-** type: entier
-** valeurs: aes128, aes192, aes256
-** valeur par défaut: `+aes256+`
+// tag::buflist_options[]
+* [[option_buflist.format.buffer]] *buflist.format.buffer*
+** description: pass:none[format pour chaque ligne avec un tampon (note : le contenu est évalué, voir /help buflist) ; exemple : format standard pour l'objet de barre "buflist" et seulement le numéro du tampon entre crochets pour les autres objets de barre ("buflist2" et "buflist3") : "${if:${bar_item.name}==buflist?${format_number}${indent}${format_nick_prefix}${color_hotlist}${format_name}:[${number}\]}"]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+"${format_number}${indent}${format_nick_prefix}${color_hotlist}${format_name}"+`
-* [[option_sec.crypt.hash_algo]] *sec.crypt.hash_algo*
-** description: pass:none[algorithme de hash pour vérifier les données déchiffrées]
-** type: entier
-** valeurs: sha224, sha256, sha384, sha512
-** valeur par défaut: `+sha256+`
+* [[option_buflist.format.buffer_current]] *buflist.format.buffer_current*
+** description: pass:none[format pour la ligne avec le tampon courant (note : le contenu est évalué, voir /help buflist)]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+"${color:,blue}${format_buffer}"+`
-* [[option_sec.crypt.passphrase_command]] *sec.crypt.passphrase_command*
-** description: pass:none[lire la phrase de chiffrement depuis la sortie de cette commande système (seule la première ligne est utilisée et elle ne doit contenir aucun autre caractère) ; cette option est utilisée seulement pour lire le fichier sec.conf et si la variable d'environnement "WEECHAT_PASSPHRASE" n'est pas définie (la variable d'environnement a une priorité plus haute) ; exemple avec password-store : "/usr/bin/pass show weechat/passphrase"]
+* [[option_buflist.format.hotlist]] *buflist.format.hotlist*
+** description: pass:none[format pour la hotlist (note : le contenu est évalué, voir /help buflist)]
** type: chaîne
** valeurs: toute chaîne
-** valeur par défaut: `+""+`
+** valeur par défaut: `+" ${color:green}(${hotlist}${color:green})"+`
-* [[option_sec.crypt.salt]] *sec.crypt.salt*
-** description: pass:none[utiliser du sel lors de la génération de la clé utilisée dans le chiffrement (recommandé pour un maximum de sécurité) ; lorsque cette option est activée, le contenu des données chiffrées dans le fichier sec.conf sera différent à chaque écriture du fichier ; si vous utilisez le fichier sec.conf dans un système de contrôle de version, alors vous pouvez désactiver cette option pour avoir toujours le même contenu de fichier]
+* [[option_buflist.format.hotlist_highlight]] *buflist.format.hotlist_highlight*
+** description: pass:none[format pour un tampon avec la hotlist de niveau "highlight" (note : le contenu est évalué, voir /help buflist)]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+"${color:magenta}"+`
+
+* [[option_buflist.format.hotlist_low]] *buflist.format.hotlist_low*
+** description: pass:none[format pour un tampon avec la hotlist de niveau "low" (note : le contenu est évalué, voir /help buflist)]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+"${color:white}"+`
+
+* [[option_buflist.format.hotlist_message]] *buflist.format.hotlist_message*
+** description: pass:none[format pour un tampon avec la hotlist de niveau "message" (note : le contenu est évalué, voir /help buflist)]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+"${color:brown}"+`
+
+* [[option_buflist.format.hotlist_none]] *buflist.format.hotlist_none*
+** description: pass:none[format pour un tampon qui n'est pas dans la hotlist (note : le contenu est évalué, voir /help buflist)]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+"${color:default}"+`
+
+* [[option_buflist.format.hotlist_private]] *buflist.format.hotlist_private*
+** description: pass:none[format pour un tampon avec la hotlist de niveau "private" (note : le contenu est évalué, voir /help buflist)]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+"${color:green}"+`
+
+* [[option_buflist.format.hotlist_separator]] *buflist.format.hotlist_separator*
+** description: pass:none[séparateur pour les compteurs dans la hotlist (note : le contenu est évalué, voir /help buflist)]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+"${color:default},"+`
+
+* [[option_buflist.format.indent]] *buflist.format.indent*
+** description: pass:none[chaîne affichée pour indenter un tampon de canal ou privé (note : le contenu est évalué, voir /help buflist)]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+" "+`
+
+* [[option_buflist.format.lag]] *buflist.format.lag*
+** description: pass:none[format pour le lag sur un tampon de serveur IRC (note : le contenu est évalué, voir /help buflist)]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+" ${color:green}[${color:brown}${lag}${color:green}]"+`
+
+* [[option_buflist.format.name]] *buflist.format.name*
+** description: pass:none[format pour le nom du tampon (note : le contenu est évalué, voir /help buflist)]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+"${name}"+`
+
+* [[option_buflist.format.nick_prefix]] *buflist.format.nick_prefix*
+** description: pass:none[format pour un préfixe de pseudo sur un canal (note : le contenu est évalué, voir /help buflist)]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+"${color_nick_prefix}${nick_prefix}"+`
+
+* [[option_buflist.format.number]] *buflist.format.number*
+** description: pass:none[format pour un numéro de tampon, ${number} est le numéro indenté (note : le contenu est évalué, voir /help buflist)]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+"${color:green}${number}${if:${number_displayed}?.: }"+`
+
+* [[option_buflist.format.tls_version]] *buflist.format.tls_version*
+** description: pass:none[format pour la version de TLS sur un serveur IRC (note : le contenu est évalué, voir /help buflist)]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+" ${color:default}(${if:${tls_version}==TLS1.3?${color:green}:${if:${tls_version}==TLS1.2?${color:yellow}:${color:red}}}${translate:${tls_version}}${color:default})"+`
+
+* [[option_buflist.look.add_newline]] *buflist.look.add_newline*
+** description: pass:none[ajouter une nouvelle ligne entre les tampons affichés, de sorte que chaque tampon est affiché sur une ligne séparée (recommandé) ; si désactivé, les nouvelles lignes doivent être ajoutées dans les formats avec "${\n}", et les actions de souris ne sont plus possibles]
** type: booléen
** valeurs: on, off
** valeur par défaut: `+on+`
-// end::sec_options[]
-// tag::weechat_options[]
-* [[option_weechat.color.bar_more]] *weechat.color.bar_more*
-** description: pass:none[couleur du texte pour les "+" lors du défilement des barres]
-** type: couleur
-** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+lightmagenta+`
+* [[option_buflist.look.auto_scroll]] *buflist.look.auto_scroll*
+** description: pass:none[faire défiler automatiquement la barre buflist pour toujours voir le tampon courant (cela fonctionne seulement avec une barre en position gauche/droite avec un remplissage "vertical") ; cette valeur est un pourcentage de lignes affichées avant le tampon courant lors du défilement (-1 = désactiver le défilement) ; par exemple 50 signifie qu'après un défilement, le tampon courant est au milieu de la barre, 0 signifie en haut de la barre et 100 signifie en bas de la barre]
+** type: entier
+** valeurs: -1 .. 100
+** valeur par défaut: `+50+`
-* [[option_weechat.color.chat]] *weechat.color.chat*
-** description: pass:none[couleur du texte pour la discussion]
-** type: couleur
-** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+default+`
+* [[option_buflist.look.display_conditions]] *buflist.look.display_conditions*
+** description: pass:none[conditions pour afficher un tampon (note : le contenu est évalué, voir /help buflist) ; par exemple pour cacher les tampons de serveurs s'ils sont fusionnés avec le tampon "core" : "${buffer.hidden}==0 && ((${type}!=server && ${buffer.full_name}!=core.weechat) || ${buffer.active}==1)"]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+"${buffer.hidden}==0"+`
-* [[option_weechat.color.chat_bg]] *weechat.color.chat_bg*
-** description: pass:none[couleur du fond pour la discussion]
-** type: couleur
-** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+default+`
+* [[option_buflist.look.enabled]] *buflist.look.enabled*
+** description: pass:none[activer buflist ; il est recommandé d'utiliser cette option plutôt que de juste cacher la barre car cela supprime également des hooks internes qui ne sont plus nécessaires lorsque la barre est cachée ; vous pouvez aussi utiliser la commande "/buflist toggle" ou la touche par défaut key alt+shift+b]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+on+`
-* [[option_weechat.color.chat_buffer]] *weechat.color.chat_buffer*
-** description: pass:none[couleur du texte pour le nom des tampons]
-** type: couleur
-** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+white+`
+* [[option_buflist.look.mouse_jump_visited_buffer]] *buflist.look.mouse_jump_visited_buffer*
+** description: pass:none[si activé, les clics avec les boutons gauche/droit sur la ligne avec le tampon courant sautent au tampon visité avant/après]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+off+`
-* [[option_weechat.color.chat_channel]] *weechat.color.chat_channel*
-** description: pass:none[couleur du texte pour le nom des canaux]
-** type: couleur
-** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+white+`
+* [[option_buflist.look.mouse_move_buffer]] *buflist.look.mouse_move_buffer*
+** description: pass:none[si activé, les gestes de souris (glisser/déposer) déplacent les tampons dans la liste]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+on+`
-* [[option_weechat.color.chat_day_change]] *weechat.color.chat_day_change*
-** description: pass:none[couleur du texte pour le message affiché lorsque le jour a changé]
-** type: couleur
-** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+cyan+`
+* [[option_buflist.look.mouse_wheel]] *buflist.look.mouse_wheel*
+** description: pass:none[si activé, les actions de roulette de souris haut/bas sautent au tampon précédent/suivant dans la liste]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+on+`
-* [[option_weechat.color.chat_delimiters]] *weechat.color.chat_delimiters*
-** description: pass:none[couleur du texte pour les délimiteurs]
-** type: couleur
-** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+green+`
+* [[option_buflist.look.nick_prefix]] *buflist.look.nick_prefix*
+** description: pass:none[obtenir le préfixe du pseudo et sa couleur depuis la liste de pseudos de telle sorte que ${nick_prefix} puisse être utilisé dans le format ; cela peut être lent sur les tampons avec beaucoup de pseudos dans la liste, donc cette option est désactivée par défaut]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+off+`
-* [[option_weechat.color.chat_highlight]] *weechat.color.chat_highlight*
-** description: pass:none[couleur du texte pour le préfixe surligné (highlight)]
-** type: couleur
-** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+yellow+`
+* [[option_buflist.look.nick_prefix_empty]] *buflist.look.nick_prefix_empty*
+** description: pass:none[lorsque le préfixe de pseudo est activé, afficher un espace à la place s'il n'y a pas de préfixe de pseudo sur le tampon]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+on+`
-* [[option_weechat.color.chat_highlight_bg]] *weechat.color.chat_highlight_bg*
-** description: pass:none[couleur du fond pour le préfixe surligné (highlight)]
-** type: couleur
-** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+magenta+`
+* [[option_buflist.look.signals_refresh]] *buflist.look.signals_refresh*
+** description: pass:none[liste de signaux séparés par des virgules qui sont accrochés et déclenchent l'affichage de la liste des tampons ; cela peut être utile si certaines variables personnalisées sont utilisées dans les formats et nécessitent un rafraîchissement particulier]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+""+`
-* [[option_weechat.color.chat_host]] *weechat.color.chat_host*
-** description: pass:none[couleur du texte pour les noms d'hôtes]
-** type: couleur
-** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+cyan+`
+* [[option_buflist.look.sort]] *buflist.look.sort*
+** description: pass:none[liste de champs séparés par des virgules pour trier les tampons ; chaque champ est une variable hdata du tampon ("var"), une variable hdata du serveur IRC ("irc_server.var") ou une variable hdata du canal IRC ("irc_channel.var") ; le caractère "-" peut être utilisé pour inverser l'ordre, le caractère "~" peut être utilisé pour effectuer une comparaison insensible à la casse ; exemple : "-~short_name" pour un tri inverse insensible à la casse sur le nom court du tampon (note : le contenu est évalué, avant d'être découpé en champs, mais à cet instant "bar_item" est la seule variable qui peut être utilisée, pour distinguer les différents objets de barre buflist, par exemple "${bar_item.name}")]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+"number,-active"+`
-* [[option_weechat.color.chat_inactive_buffer]] *weechat.color.chat_inactive_buffer*
-** description: pass:none[couleur du texte pour la discussion lorsque la ligne est inactive (tampon mélangé avec d'autres tampons et non sélectionné)]
-** type: couleur
-** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+default+`
+* [[option_buflist.look.use_items]] *buflist.look.use_items*
+** description: pass:none[nombre d'objets de barre buflist qui peuvent être utilisés ; les objets de barre sont : "buflist", "buflist2", "buflist3" ; attention, utiliser plus d'un objet de barre ralentit l'affichage de la liste des tampons]
+** type: entier
+** valeurs: 1 .. 3
+** valeur par défaut: `+1+`
+// end::buflist_options[]
-* [[option_weechat.color.chat_inactive_window]] *weechat.color.chat_inactive_window*
-** description: pass:none[couleur du texte pour la discussion lorsque la fenêtre n'est pas active (pas la fenêtre sélectionnée)]
+// tag::charset_options[]
+* [[option_charset.default.decode]] *charset.default.decode*
+** description: pass:none[charset de décodage global : charset utilisé pour décoder les messages entrants lorsqu'ils ne sont pas valides UTF-8]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+"iso-8859-1"+`
+
+* [[option_charset.default.encode]] *charset.default.encode*
+** description: pass:none[charset d'encodage global : charset utilisé pour encoder les messages sortants (si vide, le défaut est UTF-8 car c'est le charset interne de WeeChat)]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+""+`
+// end::charset_options[]
+
+// tag::exec_options[]
+* [[option_exec.color.flag_finished]] *exec.color.flag_finished*
+** description: pass:none[couleur du texte pour le drapeau d'une commande terminée dans la liste des commandes]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+default+`
+** valeur par défaut: `+lightred+`
-* [[option_weechat.color.chat_nick]] *weechat.color.chat_nick*
-** description: pass:none[couleur du texte pour les pseudos dans la fenêtre de discussion ; utilisée dans quelques messages du serveur et comme couleur par défaut quand la couleur du pseudo n'est pas trouvée ; la plupart du temps la couleur du pseudo vient de l'option weechat.color.chat_nick_colors]
+* [[option_exec.color.flag_running]] *exec.color.flag_running*
+** description: pass:none[couleur du texte pour le drapeau d'une commande qui tourne dans la liste des commandes]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+lightcyan+`
+** valeur par défaut: `+lightgreen+`
-* [[option_weechat.color.chat_nick_colors]] *weechat.color.chat_nick_colors*
-** description: pass:none[couleur du texte pour les pseudos (liste de couleurs séparées par une virgule, un fond est autorisé avec le format : "couleur:fond", par exemple : "lightred:blue")]
+* [[option_exec.command.default_options]] *exec.command.default_options*
+** description: pass:none[options par défaut pour la commande /exec (voir /help exec) ; exemple : "-nosh -bg" pour lancer toutes les commandes en tâche de fond (sans sortie) et sans utiliser le shell]
** type: chaîne
** valeurs: toute chaîne
-** valeur par défaut: `+"cyan,magenta,green,brown,lightblue,default,lightcyan,lightmagenta,lightgreen,blue"+`
+** valeur par défaut: `+""+`
-* [[option_weechat.color.chat_nick_offline]] *weechat.color.chat_nick_offline*
-** description: pass:none[couleur du texte pour un pseudo déconnecté (qui n'est plus dans la liste de pseudos) ; cette couleur est utilisée seulement si l'option weechat.look.color_nick_offline est activée]
-** type: couleur
-** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+default+`
+* [[option_exec.command.purge_delay]] *exec.command.purge_delay*
+** description: pass:none[délai pour purger les commandes terminées (en secondes, 0 = purger les commandes immédiatement, -1 = ne jamais purger)]
+** type: entier
+** valeurs: -1 .. 25920000
+** valeur par défaut: `+0+`
-* [[option_weechat.color.chat_nick_offline_highlight]] *weechat.color.chat_nick_offline_highlight*
-** description: pass:none[couleur du texte pour un pseudo déconnecté avec highlight ; cette couleur est utilisée seulement si l'option weechat.look.color_nick_offline est activée]
-** type: couleur
-** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+default+`
+* [[option_exec.command.shell]] *exec.command.shell*
+** description: pass:none[shell à utiliser avec la commande "/exec -sh" ; cela peut être seulement le nom du shell s'il est dans le PATH (par exemple "bash") ou le chemin absolu vers le shell (par exemple "/bin/bash"); si la valeur est vide, "sh" est utilisé (note : le contenu est évalué, voir /help eval)]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+"${env:SHELL}"+`
+// end::exec_options[]
-* [[option_weechat.color.chat_nick_offline_highlight_bg]] *weechat.color.chat_nick_offline_highlight_bg*
-** description: pass:none[couleur du fond pour un pseudo déconnecté avec highlight ; cette couleur est utilisée seulement si l'option weechat.look.color_nick_offline est activée]
-** type: couleur
-** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+blue+`
+// tag::fifo_options[]
+* [[option_fifo.file.enabled]] *fifo.file.enabled*
+** description: pass:none[activer le tube FIFO]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+on+`
-* [[option_weechat.color.chat_nick_other]] *weechat.color.chat_nick_other*
-** description: pass:none[couleur du texte pour l'autre pseudo dans le tampon privée]
-** type: couleur
-** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+cyan+`
+* [[option_fifo.file.path]] *fifo.file.path*
+** description: pass:none[chemin pour le tube FIFO ; le PID de WeeChat peut être utilisé dans le chemin avec ${info:pid} (le chemin est évalué, voir la fonction string_eval_path_home dans la référence API extension)]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+"${weechat_runtime_dir}/weechat_fifo_${info:pid}"+`
+// end::fifo_options[]
-* [[option_weechat.color.chat_nick_prefix]] *weechat.color.chat_nick_prefix*
-** description: pass:none[couleur pour le préfixe du pseudo (chaîne affichée avant le pseudo dans le préfixe)]
+// tag::fset_options[]
+* [[option_fset.color.default_value]] *fset.color.default_value*
+** description: pass:none[couleur pour la valeur par défaut]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+green+`
+** valeur par défaut: `+default+`
-* [[option_weechat.color.chat_nick_self]] *weechat.color.chat_nick_self*
-** description: pass:none[couleur du texte pour le pseudo local dans la fenêtre de discussion]
+* [[option_fset.color.default_value_selected]] *fset.color.default_value_selected*
+** description: pass:none[couleur pour la valeur par défaut sur la ligne sélectionnée]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
** valeur par défaut: `+white+`
-* [[option_weechat.color.chat_nick_suffix]] *weechat.color.chat_nick_suffix*
-** description: pass:none[couleur pour le suffixe du pseudo (chaîne affichée après le pseudo dans le préfixe)]
+* [[option_fset.color.description]] *fset.color.description*
+** description: pass:none[couleur pour la description]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+green+`
+** valeur par défaut: `+default+`
-* [[option_weechat.color.chat_prefix_action]] *weechat.color.chat_prefix_action*
-** description: pass:none[couleur du texte pour le préfixe d'action]
+* [[option_fset.color.description_selected]] *fset.color.description_selected*
+** description: pass:none[couleur pour la description sur la ligne sélectionnée]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
** valeur par défaut: `+white+`
-* [[option_weechat.color.chat_prefix_buffer]] *weechat.color.chat_prefix_buffer*
-** description: pass:none[couleur du texte pour le nom du tampon (avant le préfixe, quand plusieurs tampons sont mélangés avec le même numéro)]
-** type: couleur
-** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+brown+`
-
-* [[option_weechat.color.chat_prefix_buffer_inactive_buffer]] *weechat.color.chat_prefix_buffer_inactive_buffer*
-** description: pass:none[couleur du texte pour le nom du tampon inactif (avant le préfixe, quand plusieurs tampons sont mélangés avec le même numéro et si le tampon n'est pas sélectionné)]
+* [[option_fset.color.file]] *fset.color.file*
+** description: pass:none[couleur pour le fichier]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
** valeur par défaut: `+default+`
-* [[option_weechat.color.chat_prefix_error]] *weechat.color.chat_prefix_error*
-** description: pass:none[couleur du texte pour le préfixe d'erreur]
+* [[option_fset.color.file_changed]] *fset.color.file_changed*
+** description: pass:none[couleur pour le fichier si la valeur est changée]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+yellow+`
+** valeur par défaut: `+brown+`
-* [[option_weechat.color.chat_prefix_join]] *weechat.color.chat_prefix_join*
-** description: pass:none[couleur du texte pour le préfixe d'arrivée]
+* [[option_fset.color.file_changed_selected]] *fset.color.file_changed_selected*
+** description: pass:none[couleur pour le fichier si la valeur est changée sur la ligne sélectionnée]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+lightgreen+`
+** valeur par défaut: `+yellow+`
-* [[option_weechat.color.chat_prefix_more]] *weechat.color.chat_prefix_more*
-** description: pass:none[couleur du texte pour les "+" lorsque le préfixe est trop long]
+* [[option_fset.color.file_selected]] *fset.color.file_selected*
+** description: pass:none[couleur pour le fichier sur la ligne sélectionnée]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+lightmagenta+`
+** valeur par défaut: `+white+`
-* [[option_weechat.color.chat_prefix_network]] *weechat.color.chat_prefix_network*
-** description: pass:none[couleur du texte pour le préfixe réseau]
+* [[option_fset.color.help_default_value]] *fset.color.help_default_value*
+** description: pass:none[couleur pour la valeur par défaut dans la barre d'aide]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+magenta+`
+** valeur par défaut: `+white+`
-* [[option_weechat.color.chat_prefix_quit]] *weechat.color.chat_prefix_quit*
-** description: pass:none[couleur du texte pour le préfixe de départ]
+* [[option_fset.color.help_description]] *fset.color.help_description*
+** description: pass:none[couleur pour la description dans la barre d'aide]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+lightred+`
+** valeur par défaut: `+default+`
-* [[option_weechat.color.chat_prefix_suffix]] *weechat.color.chat_prefix_suffix*
-** description: pass:none[couleur du texte pour le suffixe (après le préfixe)]
+* [[option_fset.color.help_name]] *fset.color.help_name*
+** description: pass:none[couleur pour le nom dans la barre d'aide]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+green+`
+** valeur par défaut: `+white+`
-* [[option_weechat.color.chat_read_marker]] *weechat.color.chat_read_marker*
-** description: pass:none[couleur du texte pour le marqueur de lecture]
+* [[option_fset.color.help_quotes]] *fset.color.help_quotes*
+** description: pass:none[couleur pour les guillemets autour des valeurs de type chaîne]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+magenta+`
+** valeur par défaut: `+darkgray+`
-* [[option_weechat.color.chat_read_marker_bg]] *weechat.color.chat_read_marker_bg*
-** description: pass:none[couleur du fond pour le marqueur de lecture]
+* [[option_fset.color.help_values]] *fset.color.help_values*
+** description: pass:none[couleur pour les valeurs autorisées]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
** valeur par défaut: `+default+`
-* [[option_weechat.color.chat_server]] *weechat.color.chat_server*
-** description: pass:none[couleur du texte pour le nom des serveurs]
-** type: couleur
-** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+brown+`
-
-* [[option_weechat.color.chat_tags]] *weechat.color.chat_tags*
-** description: pass:none[couleur du texte pour les étiquettes après les messages (affichées avec la commande /debug tags)]
+* [[option_fset.color.index]] *fset.color.index*
+** description: pass:none[couleur pour l'index de l'option]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+red+`
+** valeur par défaut: `+cyan+`
-* [[option_weechat.color.chat_text_found]] *weechat.color.chat_text_found*
-** description: pass:none[couleur du texte pour le marqueur sur les lignes où le texte demandé est trouvé]
+* [[option_fset.color.index_selected]] *fset.color.index_selected*
+** description: pass:none[couleur pour l'index de l'option sur la ligne sélectionnée]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+yellow+`
+** valeur par défaut: `+lightcyan+`
-* [[option_weechat.color.chat_text_found_bg]] *weechat.color.chat_text_found_bg*
-** description: pass:none[couleur du fond pour le marqueur sur les lignes où le texte demandé est trouvé]
+* [[option_fset.color.line_marked_bg1]] *fset.color.line_marked_bg1*
+** description: pass:none[couleur du fond pour une ligne marquée (utilisé avec le premier format, voir l'option fset.format.option1)]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+lightmagenta+`
+** valeur par défaut: `+default+`
-* [[option_weechat.color.chat_time]] *weechat.color.chat_time*
-** description: pass:none[couleur du texte pour l'heure dans la fenêtre de discussion]
+* [[option_fset.color.line_marked_bg2]] *fset.color.line_marked_bg2*
+** description: pass:none[couleur du fond pour une ligne marquée (utilisé avec le second format, voir l'option fset.format.option2)]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
** valeur par défaut: `+default+`
-* [[option_weechat.color.chat_time_delimiters]] *weechat.color.chat_time_delimiters*
-** description: pass:none[couleur du texte pour les délimiteurs de l'heure]
+* [[option_fset.color.line_selected_bg1]] *fset.color.line_selected_bg1*
+** description: pass:none[couleur du fond pour la ligne sélectionnée (utilisé avec le premier format, voir l'option fset.format.option1)]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+brown+`
+** valeur par défaut: `+blue+`
-* [[option_weechat.color.chat_value]] *weechat.color.chat_value*
-** description: pass:none[couleur du texte pour les valeurs]
+* [[option_fset.color.line_selected_bg2]] *fset.color.line_selected_bg2*
+** description: pass:none[couleur du fond pour la ligne sélectionnée (utilisé avec le second format, voir l'option fset.format.option2)]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+cyan+`
+** valeur par défaut: `+red+`
-* [[option_weechat.color.chat_value_null]] *weechat.color.chat_value_null*
-** description: pass:none[couleur du texte pour les valeurs "null" (non définies)]
+* [[option_fset.color.marked]] *fset.color.marked*
+** description: pass:none[couleur pour l'indicateur de marquage]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+blue+`
+** valeur par défaut: `+brown+`
-* [[option_weechat.color.emphasized]] *weechat.color.emphasized*
-** description: pass:none[couleur du texte pour le texte mis en valeur (par exemple lors de la recherche de texte) ; cette option est utilisée seulement si l'option weechat.look.emphasized_attributes est une chaîne vide (valeur par défaut)]
+* [[option_fset.color.marked_selected]] *fset.color.marked_selected*
+** description: pass:none[couleur pour l'indicateur de marquage sur la ligne sélectionnée]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
** valeur par défaut: `+yellow+`
-* [[option_weechat.color.emphasized_bg]] *weechat.color.emphasized_bg*
-** description: pass:none[couleur du fond pour le texte mis en valeur (par exemple lors de la recherche de texte) ; cette option est utilisée seulement si l'option weechat.look.emphasized_attributes est une chaîne vide (valeur par défaut)]
+* [[option_fset.color.max]] *fset.color.max*
+** description: pass:none[couleur pour la valeur maximale]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+magenta+`
+** valeur par défaut: `+default+`
-* [[option_weechat.color.input_actions]] *weechat.color.input_actions*
-** description: pass:none[couleur du texte pour les actions dans la ligne de saisie]
+* [[option_fset.color.max_selected]] *fset.color.max_selected*
+** description: pass:none[couleur pour la valeur maximale sur la ligne sélectionnée]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+lightgreen+`
+** valeur par défaut: `+white+`
-* [[option_weechat.color.input_text_not_found]] *weechat.color.input_text_not_found*
-** description: pass:none[couleur du texte pour la recherche infructueuse de texte dans la ligne de saisie]
+* [[option_fset.color.min]] *fset.color.min*
+** description: pass:none[couleur pour la valeur minimale]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+red+`
+** valeur par défaut: `+default+`
-* [[option_weechat.color.item_away]] *weechat.color.item_away*
-** description: pass:none[couleur du texte pour l'objet away]
+* [[option_fset.color.min_selected]] *fset.color.min_selected*
+** description: pass:none[couleur pour la valeur minimale sur la ligne sélectionnée]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+yellow+`
+** valeur par défaut: `+white+`
-* [[option_weechat.color.nicklist_away]] *weechat.color.nicklist_away*
-** description: pass:none[couleur du texte pour les pseudos absents]
+* [[option_fset.color.name]] *fset.color.name*
+** description: pass:none[couleur pour le nom]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+cyan+`
+** valeur par défaut: `+default+`
-* [[option_weechat.color.nicklist_group]] *weechat.color.nicklist_group*
-** description: pass:none[couleur du texte pour les groupes dans la liste des pseudos]
+* [[option_fset.color.name_changed]] *fset.color.name_changed*
+** description: pass:none[couleur pour le nom si la valeur est changée]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+green+`
+** valeur par défaut: `+brown+`
-* [[option_weechat.color.separator]] *weechat.color.separator*
-** description: pass:none[couleur pour les séparateurs de fenêtres (quand divisé) et les séparateurs à côté des barres (comme la liste de pseudos)]
+* [[option_fset.color.name_changed_selected]] *fset.color.name_changed_selected*
+** description: pass:none[couleur pour le nom si la valeur est changée sur la ligne sélectionnée]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+blue+`
+** valeur par défaut: `+yellow+`
-* [[option_weechat.color.status_count_highlight]] *weechat.color.status_count_highlight*
-** description: pass:none[couleur du texte pour le nombre de highlights dans la hotlist (barre de statut)]
+* [[option_fset.color.name_selected]] *fset.color.name_selected*
+** description: pass:none[couleur pour le nom sur la ligne sélectionnée]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+magenta+`
+** valeur par défaut: `+white+`
-* [[option_weechat.color.status_count_msg]] *weechat.color.status_count_msg*
-** description: pass:none[couleur du texte pour le nombre de messages dans la hotlist (barre de statut)]
+* [[option_fset.color.option]] *fset.color.option*
+** description: pass:none[couleur pour l'option]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+brown+`
+** valeur par défaut: `+default+`
-* [[option_weechat.color.status_count_other]] *weechat.color.status_count_other*
-** description: pass:none[couleur du texte pour le nombre d'autres messages dans la hotlist (barre de statut)]
+* [[option_fset.color.option_changed]] *fset.color.option_changed*
+** description: pass:none[couleur pour l'option si la valeur est changée]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+default+`
+** valeur par défaut: `+brown+`
-* [[option_weechat.color.status_count_private]] *weechat.color.status_count_private*
-** description: pass:none[couleur du texte pour le nombre de messages privés dans la hotlist (barre de statut)]
+* [[option_fset.color.option_changed_selected]] *fset.color.option_changed_selected*
+** description: pass:none[couleur de l'option si la valeur est changée sur la ligne sélectionnée]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+green+`
+** valeur par défaut: `+yellow+`
-* [[option_weechat.color.status_data_highlight]] *weechat.color.status_data_highlight*
-** description: pass:none[couleur du texte pour un tampon avec un highlight (barre de statut)]
+* [[option_fset.color.option_selected]] *fset.color.option_selected*
+** description: pass:none[couleur pour l'option sur la ligne sélectionnée]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+lightmagenta+`
+** valeur par défaut: `+white+`
-* [[option_weechat.color.status_data_msg]] *weechat.color.status_data_msg*
-** description: pass:none[couleur du texte pour un tampon avec de nouveaux messages (barre de statut)]
+* [[option_fset.color.parent_name]] *fset.color.parent_name*
+** description: pass:none[couleur pour le nom de l'option parente]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+yellow+`
+** valeur par défaut: `+default+`
-* [[option_weechat.color.status_data_other]] *weechat.color.status_data_other*
-** description: pass:none[couleur du texte pour un tampon avec des nouvelles données (pas des messages) (barre de statut)]
+* [[option_fset.color.parent_name_selected]] *fset.color.parent_name_selected*
+** description: pass:none[couleur pour le nom de l'option parente sur la ligne sélectionnée]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+default+`
+** valeur par défaut: `+white+`
-* [[option_weechat.color.status_data_private]] *weechat.color.status_data_private*
-** description: pass:none[couleur du texte pour un tampon avec un message privé (barre de statut)]
+* [[option_fset.color.parent_value]] *fset.color.parent_value*
+** description: pass:none[couleur pour la valeur de l'option parente]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+lightgreen+`
+** valeur par défaut: `+cyan+`
-* [[option_weechat.color.status_filter]] *weechat.color.status_filter*
-** description: pass:none[couleur du texte pour l'indicateur de filtrage dans la barre de statut]
+* [[option_fset.color.parent_value_selected]] *fset.color.parent_value_selected*
+** description: pass:none[couleur pour la valeur de l'option parente sur la ligne sélectionnée]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+green+`
+** valeur par défaut: `+lightcyan+`
-* [[option_weechat.color.status_more]] *weechat.color.status_more*
-** description: pass:none[couleur du texte pour un tampon avec des nouvelles données (barre de statut)]
+* [[option_fset.color.quotes]] *fset.color.quotes*
+** description: pass:none[couleur pour les guillemets autour des valeurs de type chaîne]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+yellow+`
+** valeur par défaut: `+darkgray+`
-* [[option_weechat.color.status_mouse]] *weechat.color.status_mouse*
-** description: pass:none[couleur du texte pour l'indicateur de la souris dans la barre de statut]
+* [[option_fset.color.quotes_changed]] *fset.color.quotes_changed*
+** description: pass:none[couleur pour les guillemets autour des valeurs de chaîne qui sont changées]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+green+`
+** valeur par défaut: `+default+`
-* [[option_weechat.color.status_name]] *weechat.color.status_name*
-** description: pass:none[couleur du texte pour le nom du tampon courant dans la barre de statut]
+* [[option_fset.color.quotes_changed_selected]] *fset.color.quotes_changed_selected*
+** description: pass:none[couleur des guillemets autour des valeurs de chaîne qui sont changées sur la ligne sélectionnée]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
** valeur par défaut: `+white+`
-* [[option_weechat.color.status_name_ssl]] *weechat.color.status_name_ssl*
-** description: pass:none[couleur du texte pour le nom du tampon courant dans la barre de statut, si les données sont sécurisées avec un protocole tel que SSL]
+* [[option_fset.color.quotes_selected]] *fset.color.quotes_selected*
+** description: pass:none[couleur pour les guillemets autour des valeurs de chaîne sur la ligne sélectionnée]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+lightgreen+`
+** valeur par défaut: `+default+`
-* [[option_weechat.color.status_nicklist_count]] *weechat.color.status_nicklist_count*
-** description: pass:none[couleur du texte pour le nombre de pseudos dans la liste de pseudos (barre de statut)]
+* [[option_fset.color.section]] *fset.color.section*
+** description: pass:none[couleur pour la section]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
** valeur par défaut: `+default+`
-* [[option_weechat.color.status_number]] *weechat.color.status_number*
-** description: pass:none[couleur du texte pour le numéro du tampon courant dans la barre de statut]
+* [[option_fset.color.section_changed]] *fset.color.section_changed*
+** description: pass:none[couleur pour la section si la valeur est changée]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+yellow+`
+** valeur par défaut: `+brown+`
-* [[option_weechat.color.status_time]] *weechat.color.status_time*
-** description: pass:none[couleur du texte pour l'heure (barre de statut)]
+* [[option_fset.color.section_changed_selected]] *fset.color.section_changed_selected*
+** description: pass:none[couleur pour la section si la valeur est changée sur la ligne sélectionnée]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+default+`
-
-* [[option_weechat.completion.base_word_until_cursor]] *weechat.completion.base_word_until_cursor*
-** description: pass:none[si activé, le mot de base pour la complétion s'arrête au caractère avant le curseur ; sinon le mot de base s'arrête au premier espace après le curseur]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+on+`
-
-* [[option_weechat.completion.command_inline]] *weechat.completion.command_inline*
-** description: pass:none[si activé, les commandes à l'intérieur de la ligne de commande sont complétées (la commande en début de ligne a une priorité plus élevée et est utilisée en premier) ; note : lorsque cette option est activée, il n'y a plus de complétion automatique des chemins commençant par "/" (en dehors des paramètres de commandes)]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+on+`
-
-* [[option_weechat.completion.default_template]] *weechat.completion.default_template*
-** description: pass:none[modèle de complétion par défaut (merci de consulter la documentation pour les codes et valeurs du modèle : Référence API extension, fonction "weechat_hook_command")]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+"%(nicks)|%(irc_channels)"+`
-
-* [[option_weechat.completion.nick_add_space]] *weechat.completion.nick_add_space*
-** description: pass:none[ajouter un espace après la complétion du pseudo (quand le pseudo n'est pas le premier mot sur la ligne de commande)]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+on+`
-
-* [[option_weechat.completion.nick_case_sensitive]] *weechat.completion.nick_case_sensitive*
-** description: pass:none[complétion sensible à la casse pour les pseudos]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+off+`
-
-* [[option_weechat.completion.nick_completer]] *weechat.completion.nick_completer*
-** description: pass:none[chaîne insérée après la complétion du pseudo (quand le pseudo est le premier mot sur la ligne de commande)]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+": "+`
-
-* [[option_weechat.completion.nick_first_only]] *weechat.completion.nick_first_only*
-** description: pass:none[compléter seulement avec le premier pseudo trouvé]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+off+`
-
-* [[option_weechat.completion.nick_ignore_chars]] *weechat.completion.nick_ignore_chars*
-** description: pass:none[caractères à ignorer pour la complétion des pseudos]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+"[]`_-^"+`
-
-* [[option_weechat.completion.partial_completion_alert]] *weechat.completion.partial_completion_alert*
-** description: pass:none[envoyer une alerte (BEL) lorsqu'une complétion partielle survient]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+on+`
-
-* [[option_weechat.completion.partial_completion_command]] *weechat.completion.partial_completion_command*
-** description: pass:none[complète partiellement les noms de commandes (stoppe quand plusieurs commandes trouvées commencent par les mêmes lettres)]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+off+`
-
-* [[option_weechat.completion.partial_completion_command_arg]] *weechat.completion.partial_completion_command_arg*
-** description: pass:none[complète partiellement les paramètres de commande (stoppe quand plusieurs paramètres trouvés commencent par les mêmes lettres)]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+off+`
-
-* [[option_weechat.completion.partial_completion_count]] *weechat.completion.partial_completion_count*
-** description: pass:none[afficher le compteur pour chaque complétion partielle dans l'objet de barre]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+on+`
-
-* [[option_weechat.completion.partial_completion_other]] *weechat.completion.partial_completion_other*
-** description: pass:none[complète partiellement en dehors des commandes (stoppe quand plusieurs mots trouvés commencent par les mêmes lettres)]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+off+`
-
-* [[option_weechat.completion.partial_completion_templates]] *weechat.completion.partial_completion_templates*
-** description: pass:none[liste de modèles de complétion séparés par des virgules pour lesquels la complétion partielle est activée par défaut (avec la touche Tab au lieu de shift-Tab) ; la liste des modèles est dans la documentation : Référence API extension, fonction "weechat_hook_command"]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+"config_options"+`
-
-* [[option_weechat.history.display_default]] *weechat.history.display_default*
-** description: pass:none[nombre maximum de commandes à afficher par défaut dans le listing d'historique (0 = sans limite)]
-** type: entier
-** valeurs: 0 .. 2147483647
-** valeur par défaut: `+5+`
-
-* [[option_weechat.history.max_buffer_lines_minutes]] *weechat.history.max_buffer_lines_minutes*
-** description: pass:none[nombre maximum de minutes dans l'historique par tampon (0 = sans limite) ; exemples : 1440 = une journée, 10080 = une semaine, 43200 = un mois, 525600 = une année ; utilisez 0 SEULEMENT si l'option weechat.history.max_buffer_lines_number n'est pas égale à 0]
-** type: entier
-** valeurs: 0 .. 2147483647
-** valeur par défaut: `+0+`
-
-* [[option_weechat.history.max_buffer_lines_number]] *weechat.history.max_buffer_lines_number*
-** description: pass:none[nombre maximum de lignes dans l'historique par tampon (0 = sans limite) ; utilisez 0 SEULEMENT si l'option weechat.history.max_buffer_lines_minutes n'est PAS égale à 0]
-** type: entier
-** valeurs: 0 .. 2147483647
-** valeur par défaut: `+4096+`
-
-* [[option_weechat.history.max_commands]] *weechat.history.max_commands*
-** description: pass:none[nombre maximum de commandes utilisateur dans l'historique (0 = sans limite, NON RECOMMANDÉ : pas de limite dans l'utilisation mémoire)]
-** type: entier
-** valeurs: 0 .. 2147483647
-** valeur par défaut: `+100+`
-
-* [[option_weechat.history.max_visited_buffers]] *weechat.history.max_visited_buffers*
-** description: pass:none[nombre maximum de tampons visités à garder en mémoire]
-** type: entier
-** valeurs: 0 .. 1000
-** valeur par défaut: `+50+`
-
-* [[option_weechat.look.align_end_of_lines]] *weechat.look.align_end_of_lines*
-** description: pass:none[alignement pour la fin des lignes (toutes les lignes après la première) : elles démarrent sous cette donnée (time, buffer, prefix, suffix, message (par défaut))]
-** type: entier
-** valeurs: time, buffer, prefix, suffix, message
-** valeur par défaut: `+message+`
-
-* [[option_weechat.look.align_multiline_words]] *weechat.look.align_multiline_words*
-** description: pass:none[alignement pour les mots sur plusieurs lignes selon l'option weechat.look.align_end_of_lines ; si désactivé, les mots sur plusieurs lignes ne seront pas alignés, ce qui peut être pratique pour ne pas casser les longs URLs]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+on+`
-
-* [[option_weechat.look.bar_more_down]] *weechat.look.bar_more_down*
-** description: pass:none[chaîne affichée quand la barre peut être défilée vers le bas (pour les barres avec un remplissage différent de "horizontal")]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+"++"+`
-
-* [[option_weechat.look.bar_more_left]] *weechat.look.bar_more_left*
-** description: pass:none[chaîne affichée quand la barre peut être défilée vers la gauche (pour les barres avec un remplissage "horizontal")]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+"<<"+`
-
-* [[option_weechat.look.bar_more_right]] *weechat.look.bar_more_right*
-** description: pass:none[chaîne affichée quand la barre peut être défilée vers la droite (pour les barres avec un remplissage "horizontal")]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+">>"+`
-
-* [[option_weechat.look.bar_more_up]] *weechat.look.bar_more_up*
-** description: pass:none[chaîne affichée quand la barre peut être défilée vers le haut (pour les barres avec un remplissage différent de "horizontal")]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+"--"+`
-
-* [[option_weechat.look.bare_display_exit_on_input]] *weechat.look.bare_display_exit_on_input*
-** description: pass:none[sortir du mode d'affichage dépouillé ("bare") sur tout changement dans la ligne de commande]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+on+`
-
-* [[option_weechat.look.bare_display_time_format]] *weechat.look.bare_display_time_format*
-** description: pass:none[format de date/heure dans l'affichage dépouillé ("bare") (voir man strftime pour le format de date/heure)]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+"%H:%M"+`
-
-* [[option_weechat.look.buffer_auto_renumber]] *weechat.look.buffer_auto_renumber*
-** description: pass:none[renuméroter automatiquement les tampons pour qu'ils aient des numéros consécutifs et démarrent au numéro 1 ; si désactivé, des trous entre les numéros de tampons sont autorisés et le premier tampon peut avoir un numéro supérieur à 1]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+on+`
-
-* [[option_weechat.look.buffer_notify_default]] *weechat.look.buffer_notify_default*
-** description: pass:none[niveau de notification par défaut pour les tampons (utilisé pour dire à WeeChat si le tampon doit être affiché dans la hotlist ou non, selon l'importance du message) : all=tous les messages (par défaut), message=messages+highlights, highlight=highlights seulement, none=ne jamais afficher dans la hotlist]
-** type: entier
-** valeurs: none, highlight, message, all
-** valeur par défaut: `+all+`
-
-* [[option_weechat.look.buffer_position]] *weechat.look.buffer_position*
-** description: pass:none[position d'un nouveau tampon : end = après la fin de la liste (numéro = dernier numéro + 1), first_gap = au premier numéro disponible dans la liste (après la fin de la liste si aucun numéro n'est disponible) ; cette option est utilisée seulement si le tampon n'a pas de numéro dans le "layout"]
-** type: entier
-** valeurs: end, first_gap
-** valeur par défaut: `+end+`
-
-* [[option_weechat.look.buffer_search_case_sensitive]] *weechat.look.buffer_search_case_sensitive*
-** description: pass:none[recherche par défaut dans le tampon : sensible à la casse ou non]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+off+`
-
-* [[option_weechat.look.buffer_search_force_default]] *weechat.look.buffer_search_force_default*
-** description: pass:none[forcer les valeurs par défaut pour la recherche de texte dans le tampon (au lieu d'utiliser les valeurs de la dernière recherche dans le tampon)]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+off+`
-
-* [[option_weechat.look.buffer_search_regex]] *weechat.look.buffer_search_regex*
-** description: pass:none[recherche par défaut dans le tampon : si activé, rechercher une expression régulière POSIX étendue, sinon rechercher du texte simple]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+off+`
-
-* [[option_weechat.look.buffer_search_where]] *weechat.look.buffer_search_where*
-** description: pass:none[recherche par défaut dans le tampon : dans le message, le préfixe, le préfixe et le message]
-** type: entier
-** valeurs: prefix, message, prefix_message
-** valeur par défaut: `+prefix_message+`
-
-* [[option_weechat.look.buffer_time_format]] *weechat.look.buffer_time_format*
-** description: pass:none[format de date/heure pour chaque ligne affichée dans les tampons (voir man strftime pour le format de date/heure) (note : le contenu est évalué, donc vous pouvez utiliser des couleurs avec le format "${color:xxx}", voir /help eval) ; par exemple l'heure avec des niveaux de gris (requiert le support de 256 couleurs) : "${color:252}%H${color:245}%M${color:240}%S"]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+"%H:%M:%S"+`
-
-* [[option_weechat.look.buffer_time_same]] *weechat.look.buffer_time_same*
-** description: pass:none[heure affichée pour un message avec la même heure que le message précédent ; utilisez un espace " " pour cacher l'heure, une autre chaîne pour l'afficher à la place de l'heure, ou une chaîne vide pour désactiver cette fonctionnalité (afficher l'heure) (note : le contenu est évalué, donc vous pouvez utiliser des couleurs avec le format "${color:xxx}", voir /help eval)]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+""+`
-
-* [[option_weechat.look.chat_space_right]] *weechat.look.chat_space_right*
-** description: pass:none[garder un espace sur la droite de la zone de discussion s'il y a une barre affichée sur la droite (pour le texte et le marqueur de lecture)]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+off+`
-
-* [[option_weechat.look.color_basic_force_bold]] *weechat.look.color_basic_force_bold*
-** description: pass:none[forcer l'attribut "bold" (gras) pour les couleurs claires et "darkgray" dans les couleurs de base (cette option est désactivée par défaut : le gras est utilisé seulement si le terminal a moins de 16 couleurs)]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+off+`
-
-* [[option_weechat.look.color_inactive_buffer]] *weechat.look.color_inactive_buffer*
-** description: pass:none[utiliser une couleur différente pour les lignes dans un tampon inactif (si la ligne est d'un tampon mélangé et le tampon n'est pas sélectionné)]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+on+`
-
-* [[option_weechat.look.color_inactive_message]] *weechat.look.color_inactive_message*
-** description: pass:none[utiliser une couleur différente pour un message inactif (quand la fenêtre n'est pas la fenêtre courante, ou si la ligne est d'un tampon mélangé et le tampon n'est pas sélectionné)]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+on+`
-
-* [[option_weechat.look.color_inactive_prefix]] *weechat.look.color_inactive_prefix*
-** description: pass:none[utiliser une couleur différente pour le préfixe inactif (quand la fenêtre n'est pas la fenêtre courante, ou si la ligne est d'un tampon mélangé et le tampon n'est pas sélectionné)]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+on+`
-
-* [[option_weechat.look.color_inactive_prefix_buffer]] *weechat.look.color_inactive_prefix_buffer*
-** description: pass:none[utiliser une couleur différente pour le nom de tampon inactif dans le préfixe (quand la fenêtre n'est pas la fenêtre courante, ou si la ligne est d'un tampon mélangé et le tampon n'est pas sélectionné)]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+on+`
-
-* [[option_weechat.look.color_inactive_time]] *weechat.look.color_inactive_time*
-** description: pass:none[utiliser une couleur différente pour l'heure inactive (quand la fenêtre n'est pas la fenêtre courante, ou si la ligne est d'un tampon mélangé et le tampon n'est pas sélectionné)]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+off+`
-
-* [[option_weechat.look.color_inactive_window]] *weechat.look.color_inactive_window*
-** description: pass:none[utiliser une couleur différente pour les lignes dans une fenêtre inactive (quand la fenêtre n'est pas la fenêtre courante)]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+on+`
-
-* [[option_weechat.look.color_nick_offline]] *weechat.look.color_nick_offline*
-** description: pass:none[utiliser une couleur différente pour les pseudos déconnectés (qui ne sont plus dans la liste de pseudos)]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+off+`
-
-* [[option_weechat.look.color_pairs_auto_reset]] *weechat.look.color_pairs_auto_reset*
-** description: pass:none[réinitialisation automatique de la table des paires de couleurs quand le nombre de paires disponibles est inférieur ou égal à ce nombre (-1 = désactiver la réinitialisation automatique, et donc un "/color reset" manuel est nécessaire quand la table est pleine)]
-** type: entier
-** valeurs: -1 .. 256
-** valeur par défaut: `+5+`
-
-* [[option_weechat.look.color_real_white]] *weechat.look.color_real_white*
-** description: pass:none[si activé, utilise la vraie couleur blanche, désactivé par défaut pour les terminaux avec un fond blanc (si vous n'utilisez jamais de fond blanc, vous devriez activer cette option pour voir du vrai blanc au lieu de la couleur d'avant plan par défaut du terminal)]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+off+`
-
-* [[option_weechat.look.command_chars]] *weechat.look.command_chars*
-** description: pass:none[caractères utilisés pour déterminer si la chaîne entrée est une commande ou non : l'entrée doit démarrer avec un de ces caractères ; la barre oblique ("/") est toujours considérée comme un préfixe de commande (exemple : ".$")]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+""+`
-
-* [[option_weechat.look.command_incomplete]] *weechat.look.command_incomplete*
-** description: pass:none[si activé, les commandes incomplètes et non ambiguës sont autorisées, par exemple /he pour /help]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+off+`
-
-* [[option_weechat.look.confirm_quit]] *weechat.look.confirm_quit*
-** description: pass:none[si activé, la commande /quit doit être confirmée par le paramètre supplémentaire "-yes" (voir /help quit)]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+off+`
-
-* [[option_weechat.look.confirm_upgrade]] *weechat.look.confirm_upgrade*
-** description: pass:none[si activé, la commande /upgrade doit être confirmée par le paramètre supplémentaire "-yes" (voir /help upgrade)]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+off+`
-
-* [[option_weechat.look.day_change]] *weechat.look.day_change*
-** description: pass:none[affiche un message quand le jour change]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+on+`
-
-* [[option_weechat.look.day_change_message_1date]] *weechat.look.day_change_message_1date*
-** description: pass:none[message affiché lorsque le jour a changé, avec une date affichée (par exemple au début d'un tampon) (voir man strftime pour le format de date/heure) (note : le contenu est évalué, donc vous pouvez utiliser des couleurs avec le format "${color:xxx}", voir /help eval)]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+"-- %a, %d %b %Y --"+`
-
-* [[option_weechat.look.day_change_message_2dates]] *weechat.look.day_change_message_2dates*
-** description: pass:none[message affiché lorsque le jour a changé, avec deux dates affichées (entre deux messages) ; les formats pour la seconde date doivent démarrer par deux "%" car strftime est appelé deux fois sur cette chaîne (voir man strftime pour le format de date/heure) (note : le contenu est évalué, donc vous pouvez utiliser des couleurs avec le format "${color:xxx}", voir /help eval)]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+"-- %%a, %%d %%b %%Y (%a, %d %b %Y) --"+`
-
-* [[option_weechat.look.eat_newline_glitch]] *weechat.look.eat_newline_glitch*
-** description: pass:none[si activé, le eat_newline_glitch sera positionné à 0 ; cela est utilisé pour ne pas ajouter de nouvelle ligne à la fin de chaque ligne, et donc ne pas couper le texte quand vous copiez/collez du texte depuis WeeChat vers une autre application (cette option est désactivée par défaut car elle peut causer de sérieux problèmes d'affichages)]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+off+`
-
-* [[option_weechat.look.emphasized_attributes]] *weechat.look.emphasized_attributes*
-** description: pass:none[attributs pour le texte mis en valeur : un ou plusieurs caractères d'attributs ("%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné) ; si la chaîne est vide, les couleurs weechat.color.emphasized* sont utilisées]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+""+`
-
-* [[option_weechat.look.highlight]] *weechat.look.highlight*
-** description: pass:none[liste des mots pour la notification séparés par des virgules ; la comparaison est insensible à la casse (utilisez "(?-i)" au début des mots pour les rendre sensibles à la casse), les mots peuvent commencer ou se terminer par "*" pour une comparaison partielle ; exemple : "test,(?-i)*toto*,flash*"]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+""+`
-
-* [[option_weechat.look.highlight_disable_regex]] *weechat.look.highlight_disable_regex*
-** description: pass:none[expression régulière POSIX étendue utilisée pour empêcher un highlight sur un message : cette option a une priorité plus élevée sur les autres options de highlight (si la chaîne est trouvée dans le message, le highlight est désactivé et les autres options sont ignorées), l'expression régulière est insensible à la casse (utilisez "(?-i)" au début pour la rendre sensible à la casse), exemples : "<flash.*>", "(?-i)<Flash.*>"]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+""+`
-
-* [[option_weechat.look.highlight_regex]] *weechat.look.highlight_regex*
-** description: pass:none[expression régulière POSIX étendue utilisée pour vérifier si un message a un "highlight" ou non, au moins une correspondance dans la chaîne doit être entourée de délimiteurs (caractères différents de : alphanumérique, "-", "_" et "|"), l'expression régulière est insensible à la casse (utilisez "(?-i)" au début pour la rendre sensible à la casse), exemples : "flashcode|flashy", "(?-i)FlashCode|flashy"]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+""+`
-
-* [[option_weechat.look.highlight_tags]] *weechat.look.highlight_tags*
-** description: pass:none[liste des étiquettes pour le highlight (séparées par des virgules) ; la comparaison ne tient pas compte de la casse ; le caractère joker "*" est autorisé dans chaque étiquette ; plusieurs étiquettes peuvent être séparées par "+" pour faire un "et" logique entre les étiquettes ; exemples : "nick_flashcode" pour les messages du pseudo "FlashCode", "irc_notice+nick_toto*" pour les notices d'un pseudo commençant par "toto"]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+""+`
-
-* [[option_weechat.look.hotlist_add_conditions]] *weechat.look.hotlist_add_conditions*
-** description: pass:none[conditions pour ajouter un tampon dans la hotlist (si le niveau de notification est OK pour le tampon) ; vous pouvez utiliser dans ces conditions : \"window\" (pointeur de la fenêtre courante), \"buffer\" (pointeur du tampon à ajouter dans la hotlist), "priority" (0 = faible, 1 = message, 2 = privé, 3 = highlight) ; par défaut un tampon est ajouté dans la hotlist si vous êtes absent, ou si le tampon n'est pas visible à l'écran (pas affiché dans une fenêtre), ou si au moins un client relay est connecté via le protocole weechat]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+"${away} || ${buffer.num_displayed} == 0 || ${info:relay_client_count,weechat,connected} > 0"+`
-
-* [[option_weechat.look.hotlist_buffer_separator]] *weechat.look.hotlist_buffer_separator*
-** description: pass:none[chaîne affichée entre les tampons dans la hotlist]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+", "+`
-
-* [[option_weechat.look.hotlist_count_max]] *weechat.look.hotlist_count_max*
-** description: pass:none[nombre maximum de compteurs de messages à afficher dans la hotlist pour un tampon : 0 = ne jamais afficher les compteurs de messages, autre nombre = afficher un maximum de N compteurs de messages (de la plus haute à la plus basse priorité)]
-** type: entier
-** valeurs: 0 .. 4
-** valeur par défaut: `+2+`
-
-* [[option_weechat.look.hotlist_count_min_msg]] *weechat.look.hotlist_count_min_msg*
-** description: pass:none[afficher les compteurs de messages si le nombre de messages est supérieur ou égal à cette valeur]
-** type: entier
-** valeurs: 1 .. 100
-** valeur par défaut: `+2+`
-
-* [[option_weechat.look.hotlist_names_count]] *weechat.look.hotlist_names_count*
-** description: pass:none[nombre maximum de noms dans la liste d'activité (0 = pas de nom affiché, seulement les numéros de tampons)]
-** type: entier
-** valeurs: 0 .. 10000
-** valeur par défaut: `+3+`
-
-* [[option_weechat.look.hotlist_names_length]] *weechat.look.hotlist_names_length*
-** description: pass:none[nombre maximum des noms dans la liste d'activité (0 = pas de limite)]
-** type: entier
-** valeurs: 0 .. 32
-** valeur par défaut: `+0+`
-
-* [[option_weechat.look.hotlist_names_level]] *weechat.look.hotlist_names_level*
-** description: pass:none[niveau pour l'affichage des noms dans la liste d'activité (combinaison de : 1=join/part, 2=message, 4=privé, 8=highlight, par exemple : 12=privé+highlight)]
-** type: entier
-** valeurs: 1 .. 15
-** valeur par défaut: `+12+`
-
-* [[option_weechat.look.hotlist_names_merged_buffers]] *weechat.look.hotlist_names_merged_buffers*
-** description: pass:none[si défini, force l'affichage des noms dans la hotlist pour les tampons mélangés]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+off+`
-
-* [[option_weechat.look.hotlist_prefix]] *weechat.look.hotlist_prefix*
-** description: pass:none[chaîne affichée au début de la hotlist]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+"H: "+`
-
-* [[option_weechat.look.hotlist_remove]] *weechat.look.hotlist_remove*
-** description: pass:none[supprimer les tampons de la liste d'activité : buffer = supprimer tampon par tampon, merged = supprimer tous les tampons mélangés visibles d'un seul coup]
-** type: entier
-** valeurs: buffer, merged
-** valeur par défaut: `+merged+`
-
-* [[option_weechat.look.hotlist_short_names]] *weechat.look.hotlist_short_names*
-** description: pass:none[si défini, utilise des noms courts pour afficher les noms de tampons dans la hotlist (commence après le premier "." dans le nom)]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+on+`
-
-* [[option_weechat.look.hotlist_sort]] *weechat.look.hotlist_sort*
-** description: pass:none[type de tri pour la liste d'activité : group_time_* : grouper par niveau de notification (les highlights en premier) puis tri par date, group_number_* : grouper par niveau de notification (les highlights en premier) puis tri par numéro, number_* : tri par numéro ; asc = tri ascendant, desc = tri descendant]
-** type: entier
-** valeurs: group_time_asc, group_time_desc, group_number_asc, group_number_desc, number_asc, number_desc
-** valeur par défaut: `+group_time_asc+`
-
-* [[option_weechat.look.hotlist_suffix]] *weechat.look.hotlist_suffix*
-** description: pass:none[chaîne affichée à la fin de la hotlist]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+""+`
-
-* [[option_weechat.look.hotlist_unique_numbers]] *weechat.look.hotlist_unique_numbers*
-** description: pass:none[garde seulement des numéros uniques dans la hotlist (cela s'applique seulement aux éléments de la hotlist où le nom n'est PAS affiché après le numéro)]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+on+`
-
-* [[option_weechat.look.hotlist_update_on_buffer_switch]] *weechat.look.hotlist_update_on_buffer_switch*
-** description: pass:none[mettre à jour la hotlist lors du changement de tampon]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+on+`
-
-* [[option_weechat.look.input_cursor_scroll]] *weechat.look.input_cursor_scroll*
-** description: pass:none[nombre de caractères affichés après la fin de la ligne de saisie lors d'un défilement pour afficher la fin de la ligne]
-** type: entier
-** valeurs: 0 .. 100
-** valeur par défaut: `+20+`
-
-* [[option_weechat.look.input_share]] *weechat.look.input_share*
-** description: pass:none[partage les commandes, le texte, ou les deux dans la zone de saisie pour tous les tampons (il y a toujours un historique local sur chaque tampon)]
-** type: entier
-** valeurs: none, commands, text, all
-** valeur par défaut: `+none+`
-
-* [[option_weechat.look.input_share_overwrite]] *weechat.look.input_share_overwrite*
-** description: pass:none[si défini et que la zone de saisie est partagée, écrase toujours la zone de saisie sur le tampon cible]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+off+`
-
-* [[option_weechat.look.input_undo_max]] *weechat.look.input_undo_max*
-** description: pass:none[nombre maximum de "undo" pour la ligne de commande, par tampon (0 = undo désactivé)]
-** type: entier
-** valeurs: 0 .. 65535
-** valeur par défaut: `+32+`
-
-* [[option_weechat.look.item_away_message]] *weechat.look.item_away_message*
-** description: pass:none[afficher le message d'absence du serveur dans l'objet de barre d'absence]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+on+`
-
-* [[option_weechat.look.item_buffer_filter]] *weechat.look.item_buffer_filter*
-** description: pass:none[chaîne utilisée pour montrer que des lignes sont filtrées dans le tampon courant (objet de barre "buffer_filter")]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+"*"+`
-
-* [[option_weechat.look.item_buffer_zoom]] *weechat.look.item_buffer_zoom*
-** description: pass:none[chaîne utilisée pour montrer le zoom sur un tampon mélangé (objet de barre "buffer_zoom")]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+"!"+`
-
-* [[option_weechat.look.item_mouse_status]] *weechat.look.item_mouse_status*
-** description: pass:none[chaîne utilisée pour montrer si la souris est activée (objet de barre "mouse_status")]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+"M"+`
-
-* [[option_weechat.look.item_time_format]] *weechat.look.item_time_format*
-** description: pass:none[format de date/heure pour l'objet de barre "time" (voir man strftime pour le format de date/heure) (note : le contenu est évalué, donc vous pouvez utiliser des couleurs avec le format "${color:xxx}", voir /help eval)]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+"%H:%M"+`
-
-* [[option_weechat.look.jump_current_to_previous_buffer]] *weechat.look.jump_current_to_previous_buffer*
-** description: pass:none[sauter au tampon affiché précédemment lors du saut vers le numéro de tampon courant avec /buffer *N (où N est un numéro de tampon), pour facilement basculer à un autre tampon, puis revenir au tampon courant]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+on+`
-
-* [[option_weechat.look.jump_previous_buffer_when_closing]] *weechat.look.jump_previous_buffer_when_closing*
-** description: pass:none[sauter au tampon précédemment visité lors de la fermeture d'un tampon (si désactivé, alors le saut se fait vers le numéro de tampon - 1)]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+on+`
-
-* [[option_weechat.look.jump_smart_back_to_buffer]] *weechat.look.jump_smart_back_to_buffer*
-** description: pass:none[retourner au tampon initial après avoir atteint la fin de la hotlist]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+on+`
-
-* [[option_weechat.look.key_bind_safe]] *weechat.look.key_bind_safe*
-** description: pass:none[autoriser seulement l'association de touches "sûres" (commençant par un code ctrl ou meta)]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+on+`
-
-* [[option_weechat.look.key_grab_delay]] *weechat.look.key_grab_delay*
-** description: pass:none[délai par défaut (en millisecondes) pour capturer une touche (en utilisant la touche par défaut alt-k) ; ce délai peut être remplacé dans la commande /input (voir /help input)]
-** type: entier
-** valeurs: 1 .. 10000
-** valeur par défaut: `+800+`
-
-* [[option_weechat.look.mouse]] *weechat.look.mouse*
-** description: pass:none[activer le support de la souris]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+off+`
-
-* [[option_weechat.look.mouse_timer_delay]] *weechat.look.mouse_timer_delay*
-** description: pass:none[délai (en millisecondes) pour capturer un évènement de la souris : WeeChat attendra ce délai avant de traiter l'évènement]
-** type: entier
-** valeurs: 1 .. 10000
-** valeur par défaut: `+100+`
-
-* [[option_weechat.look.nick_color_force]] *weechat.look.nick_color_force*
-** description: pass:none[force la couleur pour certains pseudos : le hash calculé avec le pseudo pour trouver la couleur ne sera pas utilisé pour ces pseudos (le format est : "pseudo1:couleur1;pseudo2:couleur2") ; la recherche de pseudos s'effectue avec la casse exacte puis en minuscules, donc il est possible d'utiliser uniquement des minuscules pour les pseudos dans cette option ; la couleur peut inclure le fond avec le format "texte,fond", par exemple "yellow,red"]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+""+`
-
-* [[option_weechat.look.nick_color_hash]] *weechat.look.nick_color_hash*
-** description: pass:none[algorithme de hash utilisé pour trouver la couleur du pseudo : djb2 = variante de djb2 (la position des lettres compte : les anagrammes d'un pseudo ont une couleur différente), sum = somme des lettres, djb2_32 = variante de djb2 en utilisant un entier sur 32 bits au lieu de 64 bits, sum_32 = somme des lettres en utilisant un entier sur 32 bits au lieu de 64 bits]
-** type: entier
-** valeurs: djb2, sum, djb2_32, sum_32
-** valeur par défaut: `+djb2+`
-
-* [[option_weechat.look.nick_color_hash_salt]] *weechat.look.nick_color_hash_salt*
-** description: pass:none[sel pour l'algorithme de hash utilisé pour trouver la couleur des pseudos (le pseudo est ajouté à ce sel et l'algorithme de hash opère sur cette chaîne) ; changer cette valeur permet de mélanger les couleurs des pseudos]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+""+`
-
-* [[option_weechat.look.nick_color_stop_chars]] *weechat.look.nick_color_stop_chars*
-** description: pass:none[caractères utilisés pour l'arrêt dans le pseudo lors du calcul de la couleur avec les lettres du pseudo (au moins un caractère en dehors de cette liste doit être dans la chaîne avant de s'arrêter) (exemple : le pseudo "|nick|away" avec "|" dans les caractères retournera la couleur du pseudo "|nick") ; cette option a un impact sur l'option weechat.look.nick_color_force, donc le pseudo pour la couleur forcée ne doit pas contenir les caractères ignorés par cette option]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+"_|["+`
-
-* [[option_weechat.look.nick_prefix]] *weechat.look.nick_prefix*
-** description: pass:none[texte à afficher avant le pseudo dans le préfixe, exemple : "<"]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+""+`
-
-* [[option_weechat.look.nick_suffix]] *weechat.look.nick_suffix*
-** description: pass:none[texte à afficher après le pseudo dans le préfixe, exemple : ">"]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+""+`
-
-* [[option_weechat.look.paste_auto_add_newline]] *weechat.look.paste_auto_add_newline*
-** description: pass:none[ajouter automatiquement une nouvelle ligne à la fin du texte collé s'il y a au moins deux lignes et si une confirmation est demandée]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+on+`
-
-* [[option_weechat.look.paste_bracketed]] *weechat.look.paste_bracketed*
-** description: pass:none[activer le mode du terminal "bracketed paste" (pas supporté par tous les terminaux/multiplexeurs) : dans ce mode, le texte collé est entouré avec des séquences de contrôle de sorte que WeeChat puisse différencier le texte collé du texte tapé ("ESC[200~", suivi par le texte collé, suivi par "ESC[201~")]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+on+`
-
-* [[option_weechat.look.paste_bracketed_timer_delay]] *weechat.look.paste_bracketed_timer_delay*
-** description: pass:none[forcer la fin du "bracketed paste" après ce délai (en secondes) si la séquence de contrôle pour la fin du "bracketed paste" ("ESC[201~") n'a pas été reçue à temps]
-** type: entier
-** valeurs: 1 .. 60
-** valeur par défaut: `+10+`
-
-* [[option_weechat.look.paste_max_lines]] *weechat.look.paste_max_lines*
-** description: pass:none[nombre maximum de lignes pour la détection de collage sans demander à l'utilisateur (-1 = désactiver cette fonctionnalité) ; cette option est utilisée seulement si l'objet de barre "input_paste" est utilisé dans au moins une barre (par défaut il est utilisé dans la barre "input")]
-** type: entier
-** valeurs: -1 .. 2147483647
-** valeur par défaut: `+1+`
-
-* [[option_weechat.look.prefix_action]] *weechat.look.prefix_action*
-** description: pass:none[préfixe pour les messages d'action (note : le contenu est évalué, donc vous pouvez utiliser des couleurs avec le format "${color:xxx}", voir /help eval)]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+" *"+`
-
-* [[option_weechat.look.prefix_align]] *weechat.look.prefix_align*
-** description: pass:none[alignement de préfixe (none, left, right (par défaut))]
-** type: entier
-** valeurs: none, left, right
-** valeur par défaut: `+right+`
-
-* [[option_weechat.look.prefix_align_max]] *weechat.look.prefix_align_max*
-** description: pass:none[taille maximum pour le préfixe (0 = pas de taille maximum)]
-** type: entier
-** valeurs: 0 .. 128
-** valeur par défaut: `+0+`
-
-* [[option_weechat.look.prefix_align_min]] *weechat.look.prefix_align_min*
-** description: pass:none[taille minimum pour le préfixe]
-** type: entier
-** valeurs: 0 .. 128
-** valeur par défaut: `+0+`
-
-* [[option_weechat.look.prefix_align_more]] *weechat.look.prefix_align_more*
-** description: pass:none[caractère à afficher si le préfixe est tronqué (doit être exactement un caractère à l'écran)]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+"+"+`
-
-* [[option_weechat.look.prefix_align_more_after]] *weechat.look.prefix_align_more_after*
-** description: pass:none[afficher le caractère de troncature (par défaut "+") après le texte (en remplaçant l'espace qui devrait être affiché ici) ; si désactivé, le caractère de troncature remplace le dernier caractère du texte]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+on+`
-
-* [[option_weechat.look.prefix_buffer_align]] *weechat.look.prefix_buffer_align*
-** description: pass:none[alignement de préfixe pour le nom du tampon, quand plusieurs tampons sont mélangés avec le même numéro (none, left, right (par défaut))]
-** type: entier
-** valeurs: none, left, right
-** valeur par défaut: `+right+`
-
-* [[option_weechat.look.prefix_buffer_align_max]] *weechat.look.prefix_buffer_align_max*
-** description: pass:none[taille maximum pour le nom du tampon, quand plusieurs tampons sont mélangés avec le même numéro (0 = pas de taille maximum)]
-** type: entier
-** valeurs: 0 .. 128
-** valeur par défaut: `+0+`
-
-* [[option_weechat.look.prefix_buffer_align_more]] *weechat.look.prefix_buffer_align_more*
-** description: pass:none[caractère à afficher si le nom du tampon est tronqué (lorsque plusieurs tampons sont mélangés avec le même numéro) (doit être exactement un caractère à l'écran)]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+"+"+`
-
-* [[option_weechat.look.prefix_buffer_align_more_after]] *weechat.look.prefix_buffer_align_more_after*
-** description: pass:none[afficher le caractère de troncature (par défaut "+") après le texte (en remplaçant l'espace qui devrait être affiché ici) ; si désactivé, le caractère de troncature remplace le dernier caractère du texte]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+on+`
-
-* [[option_weechat.look.prefix_error]] *weechat.look.prefix_error*
-** description: pass:none[préfixe pour les messages d'erreur (note : le contenu est évalué, donc vous pouvez utiliser des couleurs avec le format "${color:xxx}", voir /help eval)]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+"=!="+`
-
-* [[option_weechat.look.prefix_join]] *weechat.look.prefix_join*
-** description: pass:none[préfixe pour les messages d'arrivée (note : le contenu est évalué, donc vous pouvez utiliser des couleurs avec le format "${color:xxx}", voir /help eval)]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+"-->"+`
-
-* [[option_weechat.look.prefix_network]] *weechat.look.prefix_network*
-** description: pass:none[préfixe pour les messages réseau (note : le contenu est évalué, donc vous pouvez utiliser des couleurs avec le format "${color:xxx}", voir /help eval)]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+"--"+`
-
-* [[option_weechat.look.prefix_quit]] *weechat.look.prefix_quit*
-** description: pass:none[préfixe pour les messages de départ (note : le contenu est évalué, donc vous pouvez utiliser des couleurs avec le format "${color:xxx}", voir /help eval)]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+"<--"+`
-
-* [[option_weechat.look.prefix_same_nick]] *weechat.look.prefix_same_nick*
-** description: pass:none[préfixe affiché pour un message avec le même pseudo que le précédent message mais pas le message suivant : utiliser un espace " " pour cacher le préfixe, une autre chaîne pour l'afficher à la place du préfixe, ou une chaîne vide pour désactiver cette fonctionnalité (afficher le préfixe)]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+""+`
-
-* [[option_weechat.look.prefix_same_nick_middle]] *weechat.look.prefix_same_nick_middle*
-** description: pass:none[préfixe affiché pour un message avec le même pseudo que le précédent message et le message suivant : utiliser un espace " " pour cacher le préfixe, une autre chaîne pour l'afficher à la place du préfixe, ou une chaîne vide pour désactiver cette fonctionnalité (afficher le préfixe)]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+""+`
-
-* [[option_weechat.look.prefix_suffix]] *weechat.look.prefix_suffix*
-** description: pass:none[chaîne affichée après le préfixe]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+"|"+`
-
-* [[option_weechat.look.quote_nick_prefix]] *weechat.look.quote_nick_prefix*
-** description: pass:none[texte à afficher avant le pseudo dans la citation d'un message (voir /help cursor)]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+"<"+`
-
-* [[option_weechat.look.quote_nick_suffix]] *weechat.look.quote_nick_suffix*
-** description: pass:none[texte à afficher après le pseudo dans la citation d'un message (voir /help cursor)]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+">"+`
-
-* [[option_weechat.look.quote_time_format]] *weechat.look.quote_time_format*
-** description: pass:none[format de date/heure dans la citation d'un message (voir /help cursor)]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+"%H:%M:%S"+`
-
-* [[option_weechat.look.read_marker]] *weechat.look.read_marker*
-** description: pass:none[utiliser un marqueur (ligne ou caractère) sur les tampons pour montrer la première ligne non lue]
-** type: entier
-** valeurs: none, line, char
-** valeur par défaut: `+line+`
-
-* [[option_weechat.look.read_marker_always_show]] *weechat.look.read_marker_always_show*
-** description: pass:none[toujours afficher le marqueur de lecture, même s'il est après la dernière ligne du tampon]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+off+`
-
-* [[option_weechat.look.read_marker_string]] *weechat.look.read_marker_string*
-** description: pass:none[chaîne utilisée pour tracer la ligne du marqueur de lecture (la chaîne est répétée jusqu'à la fin de la ligne)]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+"- "+`
-
-* [[option_weechat.look.read_marker_update_on_buffer_switch]] *weechat.look.read_marker_update_on_buffer_switch*
-** description: pass:none[mettre à jour le marqueur de lecture lors du changement de tampon]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+on+`
-
-* [[option_weechat.look.save_config_on_exit]] *weechat.look.save_config_on_exit*
-** description: pass:none[sauvegarder la configuration en quittant]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+on+`
-
-* [[option_weechat.look.save_config_with_fsync]] *weechat.look.save_config_with_fsync*
-** description: pass:none[utiliser fsync pour synchroniser le fichier de configuration avec le périphérique de stockage (voir man fsync) ; cela est plus lent mais devrait éviter toute perte de données en cas de panne de courant durant la sauvegarde du fichier de configuration]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+off+`
-
-* [[option_weechat.look.save_layout_on_exit]] *weechat.look.save_layout_on_exit*
-** description: pass:none[sauvegarder la disposition en quittant (tampons, fenêtres, ou les deux)]
-** type: entier
-** valeurs: none, buffers, windows, all
-** valeur par défaut: `+none+`
-
-* [[option_weechat.look.scroll_amount]] *weechat.look.scroll_amount*
-** description: pass:none[nombre de lignes pour le défilement avec scroll_up et scroll_down]
-** type: entier
-** valeurs: 1 .. 2147483647
-** valeur par défaut: `+3+`
-
-* [[option_weechat.look.scroll_bottom_after_switch]] *weechat.look.scroll_bottom_after_switch*
-** description: pass:none[faire défiler en bas de la fenêtre après un basculement vers un autre tampon (ne pas sauvegarder la position du défilement dans les fenêtres) ; le défilement n'est fait que pour les tampons avec contenu formaté (pas le contenu libre)]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+off+`
-
-* [[option_weechat.look.scroll_page_percent]] *weechat.look.scroll_page_percent*
-** description: pass:none[pourcentage de l'écran à faire défiler lors du défilement avec page précédente ou suivante (par exemple 100 signifie une page, 50 une demi-page)]
-** type: entier
-** valeurs: 1 .. 100
-** valeur par défaut: `+100+`
-
-* [[option_weechat.look.search_text_not_found_alert]] *weechat.look.search_text_not_found_alert*
-** description: pass:none[alerte l'utilisateur lorsque le texte cherché n'est pas trouvé dans le tampon]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+on+`
-
-* [[option_weechat.look.separator_horizontal]] *weechat.look.separator_horizontal*
-** description: pass:none[caractère utilisé pour tracer les séparateurs horizontaux autour des barres et fenêtres (une valeur vide tracera une vraie ligne avec ncurses, mais peut causer des problèmes d'affichage avec la sélection d'URL sous certains terminaux) ; la largeur à l'écran doit être exactement d'un caractère]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+"-"+`
-
-* [[option_weechat.look.separator_vertical]] *weechat.look.separator_vertical*
-** description: pass:none[caractère utilisé pour tracer les séparateurs verticaux autour des barres et fenêtres (une valeur vide tracera une vraie ligne avec ncurses) ; la largeur à l'écran doit être exactement d'un caractère]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+""+`
-
-* [[option_weechat.look.tab_width]] *weechat.look.tab_width*
-** description: pass:none[nombre d'espaces utilisés pour afficher les tabulations dans les messages]
-** type: entier
-** valeurs: 1 .. 64
-** valeur par défaut: `+1+`
-
-* [[option_weechat.look.time_format]] *weechat.look.time_format*
-** description: pass:none[format de date/heure pour les dates converties en chaînes et affichées dans les messages (voir man strftime pour le format de date/heure)]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+"%a, %d %b %Y %T"+`
-
-* [[option_weechat.look.window_auto_zoom]] *weechat.look.window_auto_zoom*
-** description: pass:none[zoomer automatiquement la fenêtre courante si le terminal devient trop petit pour afficher les fenêtres (utilisez alt-z pour dézoomer la fenêtre quand le terminal est suffisamment grand)]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+off+`
-
-* [[option_weechat.look.window_separator_horizontal]] *weechat.look.window_separator_horizontal*
-** description: pass:none[afficher un séparateur horizontal entre les fenêtres]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+on+`
-
-* [[option_weechat.look.window_separator_vertical]] *weechat.look.window_separator_vertical*
-** description: pass:none[afficher un séparateur vertical entre les fenêtres]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+on+`
-
-* [[option_weechat.look.window_title]] *weechat.look.window_title*
-** description: pass:none[titre pour la fenêtre (le terminal pour l'interface Curses), défini au démarrage ; une chaîne vide gardera le titre inchangé (note : le contenu est évalué, voir /help eval) ; exemple : "WeeChat ${info:version}"]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+""+`
-
-* [[option_weechat.look.word_chars_highlight]] *weechat.look.word_chars_highlight*
-** description: pass:none[liste de caractères (ou intervalle de caractères) séparés pas des virgules qui sont considérés comme faisant partie des mots pour les highlights ; chaque élément peut être un simple caractère, un intervalle de caractères (format : a-z), une classe de caractère large (par exemple "alnum", voir man wctype) ; un "!" avant un élément le rend négatif (c'est-à-dire le caractère ne fait PAS partie des mots) ; la valeur "*" correspond à n'importe quel caractère ; les caractères unicode sont autorisés avec le format \u1234, par exemple \u00A0 pour l'espace insécable (voir /help print pour les formats supportés)]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+"!\u00A0,-,_,|,alnum"+`
-
-* [[option_weechat.look.word_chars_input]] *weechat.look.word_chars_input*
-** description: pass:none[liste de caractères (ou intervalle de caractères) séparés pas des virgules qui sont considérés comme faisant partie des mots pour la ligne de commande ; chaque élément peut être un simple caractère, un intervalle de caractères (format : a-z), une classe de caractère large (par exemple "alnum", voir man wctype) ; un "!" avant un élément le rend négatif (c'est-à-dire le caractère ne fait PAS partie des mots) ; la valeur "*" correspond à n'importe quel caractère ; les caractères unicode sont autorisés avec le format \u1234, par exemple \u00A0 pour l'espace insécable (voir /help print pour les formats supportés)]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+"!\u00A0,-,_,|,alnum"+`
-
-* [[option_weechat.network.connection_timeout]] *weechat.network.connection_timeout*
-** description: pass:none[délai d'attente maximum (en secondes) pour la connexion à une machine distante (effectuée dans un processus fils)]
-** type: entier
-** valeurs: 1 .. 2147483647
-** valeur par défaut: `+60+`
-
-* [[option_weechat.network.gnutls_ca_system]] *weechat.network.gnutls_ca_system*
-** description: pass:none[charger les certificats des autorités de certification système au démarrage ; cela peut être désactivée pour économiser de la mémoire, seulement si vous n'utilisez pas du tout de connexions SSL]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+on+`
-
-* [[option_weechat.network.gnutls_ca_user]] *weechat.network.gnutls_ca_user*
-** description: pass:none[fichier(s) supplémentaire(s) avec des autorités de certification ; plusieurs fichiers doivent être séparés par ":" (chaque chemin est évalué, voir la fonction string_eval_path_home dans la référence API extension)]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+""+`
-
-* [[option_weechat.network.gnutls_handshake_timeout]] *weechat.network.gnutls_handshake_timeout*
-** description: pass:none[délai d'attente maximum (en secondes) pour la poignée de main (handshake) gnutls]
-** type: entier
-** valeurs: 1 .. 2147483647
-** valeur par défaut: `+30+`
-
-* [[option_weechat.network.proxy_curl]] *weechat.network.proxy_curl*
-** description: pass:none[nom du proxy utilisé pour télécharger les URLs avec Curl (utilisé pour télécharger la liste des scripts et dans les scripts appelant la fonction hook_process) ; le proxy doit être défini avec la commande /proxy]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+""+`
-
-* [[option_weechat.plugin.autoload]] *weechat.plugin.autoload*
-** description: pass:none[liste des extensions à charger automatiquement au démarrage (séparées par des virgules), "*" signifie toutes les extensions trouvées, un nom commençant par "!" est une valeur négative pour empêcher une extension d'être chargée, le caractère joker "*" est autorisé dans les noms (exemples : "*" ou "*,!lua,!tcl")]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+"*"+`
-
-* [[option_weechat.plugin.extension]] *weechat.plugin.extension*
-** description: pass:none[liste d'extensions de noms de fichiers pour les extensions (séparées par des virgules)]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+".so,.dll"+`
-
-* [[option_weechat.plugin.path]] *weechat.plugin.path*
-** description: pass:none[chemin de recherche des extensions (le chemin est évalué, voir la fonction string_eval_path_home dans la référence API extension)]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+"${weechat_data_dir}/plugins"+`
-
-* [[option_weechat.plugin.save_config_on_unload]] *weechat.plugin.save_config_on_unload*
-** description: pass:none[sauvegarder les fichiers de configuration lors du déchargement des extensions]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+on+`
-
-* [[option_weechat.signal.sighup]] *weechat.signal.sighup*
-** description: pass:none[commande à exécuter lorsque le signal est reçu, plusieurs commandes peuvent être séparées par des point-virgules (note : les commandes sont évaluées, voir /help eval)]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+"${if:${info:weechat_headless}?/reload:/quit -yes}"+`
-
-* [[option_weechat.signal.sigquit]] *weechat.signal.sigquit*
-** description: pass:none[commande à exécuter lorsque le signal est reçu, plusieurs commandes peuvent être séparées par des point-virgules (note : les commandes sont évaluées, voir /help eval)]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+"/quit -yes"+`
-
-* [[option_weechat.signal.sigterm]] *weechat.signal.sigterm*
-** description: pass:none[commande à exécuter lorsque le signal est reçu, plusieurs commandes peuvent être séparées par des point-virgules (note : les commandes sont évaluées, voir /help eval)]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+"/quit -yes"+`
-
-* [[option_weechat.signal.sigusr1]] *weechat.signal.sigusr1*
-** description: pass:none[commande à exécuter lorsque le signal est reçu, plusieurs commandes peuvent être séparées par des point-virgules (note : les commandes sont évaluées, voir /help eval)]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+""+`
-
-* [[option_weechat.signal.sigusr2]] *weechat.signal.sigusr2*
-** description: pass:none[commande à exécuter lorsque le signal est reçu, plusieurs commandes peuvent être séparées par des point-virgules (note : les commandes sont évaluées, voir /help eval)]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+""+`
-
-* [[option_weechat.startup.command_after_plugins]] *weechat.startup.command_after_plugins*
-** description: pass:none[commande exécutée quand WeeChat démarre, après le chargement des extensions ; plusieurs commandes peuvent être séparées par des point-virgules (note : les commandes sont évaluées, voir /help eval)]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+""+`
-
-* [[option_weechat.startup.command_before_plugins]] *weechat.startup.command_before_plugins*
-** description: pass:none[commande exécutée quand WeeChat démarre, avant le chargement des extensions ; plusieurs commandes peuvent être séparées par des point-virgules (note : les commandes sont évaluées, voir /help eval)]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+""+`
-
-* [[option_weechat.startup.display_logo]] *weechat.startup.display_logo*
-** description: pass:none[afficher le logo WeeChat au démarrage]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+on+`
-
-* [[option_weechat.startup.display_version]] *weechat.startup.display_version*
-** description: pass:none[afficher la version de WeeChat au démarrage]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+on+`
-
-* [[option_weechat.startup.sys_rlimit]] *weechat.startup.sys_rlimit*
-** description: pass:none[définir les limites de ressource pour le processus WeeChat, le format est : "res1:limite1,res2:limite2" ; le nom de ressource est la fin de la constante (RLIMIT_XXX) en minuscules (voir man setrlimit pour les valeurs) ; une limite de -1 signifie "illimitée" ; exemple : définir une taille illimitée pour le fichier core et max 1 Go de mémoire virtuelle : "core:-1,as:1000000000"]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+""+`
-// end::weechat_options[]
-
-// tag::charset_options[]
-* [[option_charset.default.decode]] *charset.default.decode*
-** description: pass:none[charset de décodage global : charset utilisé pour décoder les messages entrants lorsqu'ils ne sont pas valides UTF-8]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+"iso-8859-1"+`
-
-* [[option_charset.default.encode]] *charset.default.encode*
-** description: pass:none[charset d'encodage global : charset utilisé pour encoder les messages sortants (si vide, le défaut est UTF-8 car c'est le charset interne de WeeChat)]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+""+`
-// end::charset_options[]
+** valeur par défaut: `+yellow+`
-// tag::logger_options[]
-* [[option_logger.color.backlog_end]] *logger.color.backlog_end*
-** description: pass:none[couleur pour la ligne de fin de l'historique]
+* [[option_fset.color.section_selected]] *fset.color.section_selected*
+** description: pass:none[couleur pour la section sur la ligne sélectionnée]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+default+`
+** valeur par défaut: `+white+`
-* [[option_logger.color.backlog_line]] *logger.color.backlog_line*
-** description: pass:none[couleur pour les lignes de l'historique, utilisée seulement si l'option logger.file.color_lines est désactivée]
+* [[option_fset.color.string_values]] *fset.color.string_values*
+** description: pass:none[couleur pour les valeurs de chaîne]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
** valeur par défaut: `+default+`
-* [[option_logger.file.auto_log]] *logger.file.auto_log*
-** description: pass:none[sauve automatiquement le contenu des tampons dans des fichiers (sauf si un tampon désactive le log) ; si désactivé, l'enregistrement est désactivé sur tous les tampons]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+on+`
-
-* [[option_logger.file.color_lines]] *logger.file.color_lines*
-** description: pass:none[utiliser des codes de couleurs ANSI dans les lignes écrites dans les fichiers de log et afficher les lignes de l'historique avec ces couleurs]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+off+`
-
-* [[option_logger.file.flush_delay]] *logger.file.flush_delay*
-** description: pass:none[nombre de secondes entre les "flush" (écriture) dans les fichiers de log (0 = écrire immédiatement dans les fichiers de log pour chaque ligne affichée)]
-** type: entier
-** valeurs: 0 .. 3600
-** valeur par défaut: `+120+`
-
-* [[option_logger.file.fsync]] *logger.file.fsync*
-** description: pass:none[utiliser fsync pour synchroniser le fichier de log avec le périphérique de stockage après le flush (voir man fsync) ; cela est plus lent mais devrait éviter toute perte de données en cas de panne de courant durant la sauvegarde du fichier de log]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+off+`
-
-* [[option_logger.file.info_lines]] *logger.file.info_lines*
-** description: pass:none[écrire une ligne d'information dans le fichier log quand le log démarre ou se termine pour un tampon]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+off+`
-
-* [[option_logger.file.mask]] *logger.file.mask*
-** description: pass:none[masque de fichier par défaut pour les fichiers de log (le format est "repertoire/vers/fichier" ou "fichier", sans le premier "/" car l'option "path" est utilisée pour construire le chemin complet vers le fichier) ; les variables locales du tampon sont permises (vous ne devriez utiliser que des variables qui sont définies sur tous les tampons, donc par exemple vous ne devriez PAS utiliser $server ou $channel) ; les caractères de formatage de date sont autorisés (voir man strftime)]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+"$plugin.$name.weechatlog"+`
-
-* [[option_logger.file.name_lower_case]] *logger.file.name_lower_case*
-** description: pass:none[utiliser seulement des minuscules dans le nom des fichiers de log]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+on+`
-
-* [[option_logger.file.nick_prefix]] *logger.file.nick_prefix*
-** description: pass:none[texte à écrire avant le pseudo dans le préfixe du message, par exemple : "<"]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+""+`
-
-* [[option_logger.file.nick_suffix]] *logger.file.nick_suffix*
-** description: pass:none[texte à écrire après le pseudo dans le préfixe du message, par exemple : ">"]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+""+`
-
-* [[option_logger.file.path]] *logger.file.path*
-** description: pass:none[chemin pour les fichiers de log WeeChat ; les caractères de formatage de date sont autorisés (voir man strftime) (le chemin est évalué, voir la fonction string_eval_path_home dans la référence API extension)]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+"${weechat_data_dir}/logs"+`
-
-* [[option_logger.file.replacement_char]] *logger.file.replacement_char*
-** description: pass:none[caractère de remplacement dans le nom de fichier construit avec le masque (comme le délimiteur de répertoire)]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+"_"+`
-
-* [[option_logger.file.rotation_compression_level]] *logger.file.rotation_compression_level*
-** description: pass:none[niveau de compression pour les fichiers de log qui tournent (avec extension ".1", ".2", etc.), si l'option logger.file.rotation_compression_type est activée ; 1 = peu de compression / rapide ... 100 = meilleure compression / lent ; la valeur est un pourcentage converti de 1 à 9 pour gzip et de 1 à 19 pour zstd ; la valeur par défaut est recommandée, elle offre un bon compromis compression/vitesse]
-** type: entier
-** valeurs: 1 .. 100
-** valeur par défaut: `+20+`
-
-* [[option_logger.file.rotation_compression_type]] *logger.file.rotation_compression_type*
-** description: pass:none[type de compression pour les fichiers de log qui tournent ; si défini à "none", les fichiers de logs qui tournent ne sont pas compressés ; ATTENTION : si la rotation est activée avec un autre type de compression (ou pas de compression), vous devez d'abord décharger l'extension logger, compresser les fichiers avec le nouveau type (ou décompresser les fichiers), puis changer l'option dans logger.conf, puis charger l'extension logger]
-** type: entier
-** valeurs: none, gzip, zstd
-** valeur par défaut: `+none+`
-
-* [[option_logger.file.rotation_size_max]] *logger.file.rotation_size_max*
-** description: pass:none[lorsque cette taille est atteinte, une rotation des fichiers est effectuée : les fichiers de log existants sont renommés (.1 devient .2, .2 devient .3, etc.) et le fichier courant est renommé avec l'extension .1 ; un nombre entier avec un suffixe est accepté : b = octets (par défaut si pas d'unité spécifiée), k = kilo-octets, m = méga-octets, g = giga-octets, t = téra-octets ; exemple : "2g" provoque une rotation si la taille du fichier est > 2 000 000 000 octets ; si défini à "0", aucune rotation n'est effectuée (taille de log illimitée) ; ATTENTION : avant de changer cette option, vous devriez d'abord définir le type de compression via l'option logger.file.rotation_compression_type]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+"0"+`
-
-* [[option_logger.file.time_format]] *logger.file.time_format*
-** description: pass:none[format de date/heure utilisé dans les fichiers log (voir man strftime pour le format de date/heure)]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+"%Y-%m-%d %H:%M:%S"+`
-
-* [[option_logger.look.backlog]] *logger.look.backlog*
-** description: pass:none[nombre maximum de lignes à afficher du fichier de log lors de l'ouverture du tampon (0 = ne rien afficher)]
-** type: entier
-** valeurs: 0 .. 2147483647
-** valeur par défaut: `+20+`
-
-* [[option_logger.look.backlog_conditions]] *logger.look.backlog_conditions*
-** description: pass:none[conditions pour afficher l'historique (note : le contenu est évalué, voir /help eval) ; une valeur vide affiche l'historique sur tous les tampons ; par exemple pour afficher l'historique seulement sur les tampons privés : "${type} == private"]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+""+`
-// end::logger_options[]
-
-// tag::exec_options[]
-* [[option_exec.color.flag_finished]] *exec.color.flag_finished*
-** description: pass:none[couleur du texte pour le drapeau d'une commande terminée dans la liste des commandes]
+* [[option_fset.color.string_values_selected]] *fset.color.string_values_selected*
+** description: pass:none[couleur pour les valeurs de chaîne sur la ligne sélectionnée]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+lightred+`
+** valeur par défaut: `+white+`
-* [[option_exec.color.flag_running]] *exec.color.flag_running*
-** description: pass:none[couleur du texte pour le drapeau d'une commande qui tourne dans la liste des commandes]
+* [[option_fset.color.title_count_options]] *fset.color.title_count_options*
+** description: pass:none[couleur pour le nombre d'options trouvées avec le filtre courant dans le titre du tampon]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+lightgreen+`
-
-* [[option_exec.command.default_options]] *exec.command.default_options*
-** description: pass:none[options par défaut pour la commande /exec (voir /help exec) ; exemple : "-nosh -bg" pour lancer toutes les commandes en tâche de fond (sans sortie) et sans utiliser le shell]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+""+`
-
-* [[option_exec.command.purge_delay]] *exec.command.purge_delay*
-** description: pass:none[délai pour purger les commandes terminées (en secondes, 0 = purger les commandes immédiatement, -1 = ne jamais purger)]
-** type: entier
-** valeurs: -1 .. 25920000
-** valeur par défaut: `+0+`
-
-* [[option_exec.command.shell]] *exec.command.shell*
-** description: pass:none[shell à utiliser avec la commande "/exec -sh" ; cela peut être seulement le nom du shell s'il est dans le PATH (par exemple "bash") ou le chemin absolu vers le shell (par exemple "/bin/bash"); si la valeur est vide, "sh" est utilisé (note : le contenu est évalué, voir /help eval)]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+"${env:SHELL}"+`
-// end::exec_options[]
+** valeur par défaut: `+cyan+`
-// tag::trigger_options[]
-* [[option_trigger.color.flag_command]] *trigger.color.flag_command*
-** description: pass:none[couleur du texte pour le drapeau de la commande (dans /trigger list)]
+* [[option_fset.color.title_current_option]] *fset.color.title_current_option*
+** description: pass:none[couleur pour le numéro de l'option courante dans le titre du tampon]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+lightgreen+`
+** valeur par défaut: `+lightcyan+`
-* [[option_trigger.color.flag_conditions]] *trigger.color.flag_conditions*
-** description: pass:none[couleur du texte pour le drapeau des conditions (dans /trigger list)]
+* [[option_fset.color.title_filter]] *fset.color.title_filter*
+** description: pass:none[couleur pour le filtre dans le titre du tampon]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
** valeur par défaut: `+yellow+`
-* [[option_trigger.color.flag_post_action]] *trigger.color.flag_post_action*
-** description: pass:none[couleur du texte pour le drapeau de l'action "post" (dans /trigger list)]
+* [[option_fset.color.title_marked_options]] *fset.color.title_marked_options*
+** description: pass:none[couleur pour le nombre d'option marquées dans le titre du tampon]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+lightblue+`
+** valeur par défaut: `+lightgreen+`
-* [[option_trigger.color.flag_regex]] *trigger.color.flag_regex*
-** description: pass:none[couleur du texte pour le drapeaux de l'expression régulière (dans /trigger list)]
+* [[option_fset.color.title_sort]] *fset.color.title_sort*
+** description: pass:none[couleur pour le tri dans le titre du tampon]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+lightcyan+`
+** valeur par défaut: `+white+`
-* [[option_trigger.color.flag_return_code]] *trigger.color.flag_return_code*
-** description: pass:none[couleur du texte pour le drapeau du code retour (dans /trigger list)]
+* [[option_fset.color.type]] *fset.color.type*
+** description: pass:none[couleur pour le type]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+lightmagenta+`
+** valeur par défaut: `+green+`
-* [[option_trigger.color.identifier]] *trigger.color.identifier*
-** description: pass:none[couleur du texte pour l'identifiant de contexte du trigger dans le tampon moniteur]
+* [[option_fset.color.type_selected]] *fset.color.type_selected*
+** description: pass:none[couleur pour le type sur la ligne sélectionnée]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+cyan+`
+** valeur par défaut: `+lightgreen+`
-* [[option_trigger.color.regex]] *trigger.color.regex*
-** description: pass:none[couleur du texte pour les expressions régulières]
+* [[option_fset.color.unmarked]] *fset.color.unmarked*
+** description: pass:none[couleur pour l'indicateur de marquage lorsque l'option n'est pas marquée]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+white+`
+** valeur par défaut: `+default+`
-* [[option_trigger.color.replace]] *trigger.color.replace*
-** description: pass:none[couleur du texte pour le texte de remplacement (pour les expressions régulières)]
+* [[option_fset.color.unmarked_selected]] *fset.color.unmarked_selected*
+** description: pass:none[couleur pour l'indicateur de marquage lorsque l'option n'est pas marquée sur la ligne sélectionnée]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+cyan+`
+** valeur par défaut: `+white+`
-* [[option_trigger.color.trigger]] *trigger.color.trigger*
-** description: pass:none[couleur du texte pour le nom du trigger]
+* [[option_fset.color.value]] *fset.color.value*
+** description: pass:none[couleur pour la valeur]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+green+`
+** valeur par défaut: `+cyan+`
-* [[option_trigger.color.trigger_disabled]] *trigger.color.trigger_disabled*
-** description: pass:none[couleur du texte pour le nom du trigger désactivé]
+* [[option_fset.color.value_changed]] *fset.color.value_changed*
+** description: pass:none[couleur pour une valeur changée (différente de la valeur par défaut)]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+red+`
-
-* [[option_trigger.look.enabled]] *trigger.look.enabled*
-** description: pass:none[activer le support des triggers]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+on+`
-
-* [[option_trigger.look.monitor_strip_colors]] *trigger.look.monitor_strip_colors*
-** description: pass:none[supprimer les couleurs dans la table de hachage affichée sur le tampon moniteur]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+off+`
-// end::trigger_options[]
-
-// tag::spell_options[]
-* [[option_spell.check.commands]] *spell.check.commands*
-** description: pass:none[liste de commandes (séparées par des virgules) pour lesquelles la vérification orthographique est activée (la vérification est désactivée pour toutes les autres commandes)]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+"away,command,cycle,kick,kickban,me,msg,notice,part,query,quit,topic"+`
-
-* [[option_spell.check.default_dict]] *spell.check.default_dict*
-** description: pass:none[dictionnaire par défaut (ou liste de dictionnaires séparés par une virgule) à utiliser quand le tampon courant n'a pas de dictionnaire défini (laissez blanc pour désactiver le vérificateur d'orthographe sur les tampons pour lesquels vous ne l'avez pas explicitement activé)]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+""+`
-
-* [[option_spell.check.during_search]] *spell.check.during_search*
-** description: pass:none[vérifier les mots pendant la recherche de texte dans le tampon]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+off+`
-
-* [[option_spell.check.enabled]] *spell.check.enabled*
-** description: pass:none[activer le vérificateur d'orthographe pour la ligne de commande]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+off+`
-
-* [[option_spell.check.real_time]] *spell.check.real_time*
-** description: pass:none[vérification orthographique des mots en temps réel (plus lent, désactivé par défaut : les mots sont vérifiés seulement s'il y a un délimiteur après)]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+off+`
-
-* [[option_spell.check.suggestions]] *spell.check.suggestions*
-** description: pass:none[nombre de suggestions à afficher dans l'objet de barre "spell_suggest" pour chaque dictionnaire du tampon (-1 = désactiver les suggestions, 0 = afficher toutes les suggestions possibles dans toutes les langues)]
-** type: entier
-** valeurs: -1 .. 2147483647
-** valeur par défaut: `+-1+`
-
-* [[option_spell.check.word_min_length]] *spell.check.word_min_length*
-** description: pass:none[longueur minimum d'un mot pour que l'orthographe soit vérifiée (utilisez 0 pour vérifier tous les mots)]
-** type: entier
-** valeurs: 0 .. 2147483647
-** valeur par défaut: `+2+`
+** valeur par défaut: `+brown+`
-* [[option_spell.color.misspelled]] *spell.color.misspelled*
-** description: pass:none[couleur du texte pour les mots mal orthographiés (barre de saisie)]
+* [[option_fset.color.value_changed_selected]] *fset.color.value_changed_selected*
+** description: pass:none[couleur pour la valeur changée (différente de la valeur par défaut) sur la ligne sélectionnée]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+lightred+`
+** valeur par défaut: `+yellow+`
-* [[option_spell.color.suggestion]] *spell.color.suggestion*
-** description: pass:none[couleur du texte pour la suggestion sur un mot mal orthographié dans l'objet de barre "spell_suggest"]
+* [[option_fset.color.value_selected]] *fset.color.value_selected*
+** description: pass:none[couleur pour la valeur sur la ligne sélectionnée]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+default+`
+** valeur par défaut: `+lightcyan+`
-* [[option_spell.color.suggestion_delimiter_dict]] *spell.color.suggestion_delimiter_dict*
-** description: pass:none[couleur du texte pour les séparateurs affichés entre deux dictionnaires dans l'objet de barre "spell_suggest"]
+* [[option_fset.color.value_undef]] *fset.color.value_undef*
+** description: pass:none[couleur pour une valeur non définie]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+cyan+`
+** valeur par défaut: `+magenta+`
-* [[option_spell.color.suggestion_delimiter_word]] *spell.color.suggestion_delimiter_word*
-** description: pass:none[couleur du texte pour les séparateurs affichés entre deux mots dans l'objet de barre "spell_suggest"]
+* [[option_fset.color.value_undef_selected]] *fset.color.value_undef_selected*
+** description: pass:none[couleur pour une valeur non définie sur la ligne sélectionnée]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+cyan+`
-
-* [[option_spell.look.suggestion_delimiter_dict]] *spell.look.suggestion_delimiter_dict*
-** description: pass:none[séparateur affiché entre deux dictionnaires dans l'objet de barre "spell_suggest"]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+" / "+`
-
-* [[option_spell.look.suggestion_delimiter_word]] *spell.look.suggestion_delimiter_word*
-** description: pass:none[séparateur affiché entre deux mots dans l'objet de barre "spell_suggest"]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+","+`
-// end::spell_options[]
-
-// tag::buflist_options[]
-* [[option_buflist.format.buffer]] *buflist.format.buffer*
-** description: pass:none[format pour chaque ligne avec un tampon (note : le contenu est évalué, voir /help buflist) ; exemple : format standard pour l'objet de barre "buflist" et seulement le numéro du tampon entre crochets pour les autres objets de barre ("buflist2" et "buflist3") : "${if:${bar_item.name}==buflist?${format_number}${indent}${format_nick_prefix}${color_hotlist}${format_name}:[${number}\]}"]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+"${format_number}${indent}${format_nick_prefix}${color_hotlist}${format_name}"+`
-
-* [[option_buflist.format.buffer_current]] *buflist.format.buffer_current*
-** description: pass:none[format pour la ligne avec le tampon courant (note : le contenu est évalué, voir /help buflist)]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+"${color:,blue}${format_buffer}"+`
-
-* [[option_buflist.format.hotlist]] *buflist.format.hotlist*
-** description: pass:none[format pour la hotlist (note : le contenu est évalué, voir /help buflist)]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+" ${color:green}(${hotlist}${color:green})"+`
-
-* [[option_buflist.format.hotlist_highlight]] *buflist.format.hotlist_highlight*
-** description: pass:none[format pour un tampon avec la hotlist de niveau "highlight" (note : le contenu est évalué, voir /help buflist)]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+"${color:magenta}"+`
-
-* [[option_buflist.format.hotlist_low]] *buflist.format.hotlist_low*
-** description: pass:none[format pour un tampon avec la hotlist de niveau "low" (note : le contenu est évalué, voir /help buflist)]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+"${color:white}"+`
-
-* [[option_buflist.format.hotlist_message]] *buflist.format.hotlist_message*
-** description: pass:none[format pour un tampon avec la hotlist de niveau "message" (note : le contenu est évalué, voir /help buflist)]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+"${color:brown}"+`
-
-* [[option_buflist.format.hotlist_none]] *buflist.format.hotlist_none*
-** description: pass:none[format pour un tampon qui n'est pas dans la hotlist (note : le contenu est évalué, voir /help buflist)]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+"${color:default}"+`
-
-* [[option_buflist.format.hotlist_private]] *buflist.format.hotlist_private*
-** description: pass:none[format pour un tampon avec la hotlist de niveau "private" (note : le contenu est évalué, voir /help buflist)]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+"${color:green}"+`
-
-* [[option_buflist.format.hotlist_separator]] *buflist.format.hotlist_separator*
-** description: pass:none[séparateur pour les compteurs dans la hotlist (note : le contenu est évalué, voir /help buflist)]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+"${color:default},"+`
+** valeur par défaut: `+lightmagenta+`
-* [[option_buflist.format.indent]] *buflist.format.indent*
-** description: pass:none[chaîne affichée pour indenter un tampon de canal ou privé (note : le contenu est évalué, voir /help buflist)]
+* [[option_fset.format.export_help]] *fset.format.export_help*
+** description: pass:none[format pour l'aide sur l'option écrite avant chaque option dans le fichier exporté (note : le contenu est évalué, voir /help fset)]
** type: chaîne
** valeurs: toute chaîne
-** valeur par défaut: `+" "+`
+** valeur par défaut: `+"# ${description2}"+`
-* [[option_buflist.format.lag]] *buflist.format.lag*
-** description: pass:none[format pour le lag sur un tampon de serveur IRC (note : le contenu est évalué, voir /help buflist)]
+* [[option_fset.format.export_option]] *fset.format.export_option*
+** description: pass:none[format pour chaque option exportée dans un fichier (note : le contenu est évalué, voir /help fset)]
** type: chaîne
** valeurs: toute chaîne
-** valeur par défaut: `+" ${color:green}[${color:brown}${lag}${color:green}]"+`
+** valeur par défaut: `+"/set ${name} ${quoted_value}"+`
-* [[option_buflist.format.name]] *buflist.format.name*
-** description: pass:none[format pour le nom du tampon (note : le contenu est évalué, voir /help buflist)]
+* [[option_fset.format.export_option_null]] *fset.format.export_option_null*
+** description: pass:none[format pour chaque option avec la valeur "null" exportée dans un fichier (note : le contenu est évalué, voir /help fset)]
** type: chaîne
** valeurs: toute chaîne
-** valeur par défaut: `+"${name}"+`
+** valeur par défaut: `+"/unset ${name}"+`
-* [[option_buflist.format.nick_prefix]] *buflist.format.nick_prefix*
-** description: pass:none[format pour un préfixe de pseudo sur un canal (note : le contenu est évalué, voir /help buflist)]
+* [[option_fset.format.option1]] *fset.format.option1*
+** description: pass:none[premier format de chaque ligne, utilisé lorsque l'option fset.look.format_number est définie à 1 (note : le contenu est évalué, voir /help fset) ; un format vide utilise le format par défaut ("${marked} ${name} ${type} ${value2}"), qui se fait sans évaluation de chaîne et donc plus rapide ; les formats peuvent être changés avec la touche ctrl+X]
** type: chaîne
** valeurs: toute chaîne
-** valeur par défaut: `+"${color_nick_prefix}${nick_prefix}"+`
+** valeur par défaut: `+""+`
-* [[option_buflist.format.number]] *buflist.format.number*
-** description: pass:none[format pour un numéro de tampon, ${number} est le numéro indenté (note : le contenu est évalué, voir /help buflist)]
+* [[option_fset.format.option2]] *fset.format.option2*
+** description: pass:none[second format de chaque ligne, utilisé lorsque l'option fset.look.format_number est définie à 2 (note : le contenu est évalué, voir /help fset) ; un format vide utilise le format par défaut ("${marked} ${name} ${type} ${value2}"), qui se fait sans évaluation de chaîne et donc plus rapide ; les formats peuvent être changés avec la touche ctrl+X]
** type: chaîne
** valeurs: toute chaîne
-** valeur par défaut: `+"${color:green}${number}${if:${number_displayed}?.: }"+`
+** valeur par défaut: `+"${marked} ${name} ${type} ${value2}${newline} ${empty_name} ${_default_value}${color:darkgray} -- ${min}..${max}${newline} ${empty_name} ${description}"+`
-* [[option_buflist.format.tls_version]] *buflist.format.tls_version*
-** description: pass:none[format pour la version de TLS sur un serveur IRC (note : le contenu est évalué, voir /help buflist)]
+* [[option_fset.look.auto_refresh]] *fset.look.auto_refresh*
+** description: pass:none[liste des options à rafraichir automatiquement sur le tampon fset (s'il est ouvert) ; "*" signifie toutes les options (recommandé), un nom commençant par "!" est une valeur négative pour empêcher une option d'être rafraichie, le caractère joker "*" est autorisé dans les noms (exemple : "*,!plugin.section.*")]
** type: chaîne
** valeurs: toute chaîne
-** valeur par défaut: `+" ${color:default}(${if:${tls_version}==TLS1.3?${color:green}:${if:${tls_version}==TLS1.2?${color:yellow}:${color:red}}}${translate:${tls_version}}${color:default})"+`
+** valeur par défaut: `+"*"+`
-* [[option_buflist.look.add_newline]] *buflist.look.add_newline*
-** description: pass:none[ajouter une nouvelle ligne entre les tampons affichés, de sorte que chaque tampon est affiché sur une ligne séparée (recommandé) ; si désactivé, les nouvelles lignes doivent être ajoutées dans les formats avec "${\n}", et les actions de souris ne sont plus possibles]
+* [[option_fset.look.auto_unmark]] *fset.look.auto_unmark*
+** description: pass:none[démarquer automatiquement toutes les options après une action sur les options marquées ou après un rafraichissement]
** type: booléen
** valeurs: on, off
-** valeur par défaut: `+on+`
-
-* [[option_buflist.look.auto_scroll]] *buflist.look.auto_scroll*
-** description: pass:none[faire défiler automatiquement la barre buflist pour toujours voir le tampon courant (cela fonctionne seulement avec une barre en position gauche/droite avec un remplissage "vertical") ; cette valeur est un pourcentage de lignes affichées avant le tampon courant lors du défilement (-1 = désactiver le défilement) ; par exemple 50 signifie qu'après un défilement, le tampon courant est au milieu de la barre, 0 signifie en haut de la barre et 100 signifie en bas de la barre]
-** type: entier
-** valeurs: -1 .. 100
-** valeur par défaut: `+50+`
+** valeur par défaut: `+off+`
-* [[option_buflist.look.display_conditions]] *buflist.look.display_conditions*
-** description: pass:none[conditions pour afficher un tampon (note : le contenu est évalué, voir /help buflist) ; par exemple pour cacher les tampons de serveurs s'ils sont fusionnés avec le tampon "core" : "${buffer.hidden}==0 && ((${type}!=server && ${buffer.full_name}!=core.weechat) || ${buffer.active}==1)"]
+* [[option_fset.look.condition_catch_set]] *fset.look.condition_catch_set*
+** description: pass:none[condition pour capturer la commande /set et afficher les résultats dans le tampon fset ; les variables suivantes peuvent être utilisées : ${name} (nom de l'option donné pour la commande /set), ${count} (nombre d'options trouvées avec le paramètre de /set) ; une chaîne vide désactive la capture de la commande /set ; avec la valeur "1", le tampon fset est toujours utilisé avec la commande /set]
** type: chaîne
** valeurs: toute chaîne
-** valeur par défaut: `+"${buffer.hidden}==0"+`
-
-* [[option_buflist.look.enabled]] *buflist.look.enabled*
-** description: pass:none[activer buflist ; il est recommandé d'utiliser cette option plutôt que de juste cacher la barre car cela supprime également des hooks internes qui ne sont plus nécessaires lorsque la barre est cachée ; vous pouvez aussi utiliser la commande "/buflist toggle" ou la touche par défaut key alt+shift+b]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+on+`
-
-* [[option_buflist.look.mouse_jump_visited_buffer]] *buflist.look.mouse_jump_visited_buffer*
-** description: pass:none[si activé, les clics avec les boutons gauche/droit sur la ligne avec le tampon courant sautent au tampon visité avant/après]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+off+`
-
-* [[option_buflist.look.mouse_move_buffer]] *buflist.look.mouse_move_buffer*
-** description: pass:none[si activé, les gestes de souris (glisser/déposer) déplacent les tampons dans la liste]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+on+`
-
-* [[option_buflist.look.mouse_wheel]] *buflist.look.mouse_wheel*
-** description: pass:none[si activé, les actions de roulette de souris haut/bas sautent au tampon précédent/suivant dans la liste]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+on+`
-
-* [[option_buflist.look.nick_prefix]] *buflist.look.nick_prefix*
-** description: pass:none[obtenir le préfixe du pseudo et sa couleur depuis la liste de pseudos de telle sorte que ${nick_prefix} puisse être utilisé dans le format ; cela peut être lent sur les tampons avec beaucoup de pseudos dans la liste, donc cette option est désactivée par défaut]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+off+`
+** valeur par défaut: `+"${count} >= 1"+`
-* [[option_buflist.look.nick_prefix_empty]] *buflist.look.nick_prefix_empty*
-** description: pass:none[lorsque le préfixe de pseudo est activé, afficher un espace à la place s'il n'y a pas de préfixe de pseudo sur le tampon]
+* [[option_fset.look.export_help_default]] *fset.look.export_help_default*
+** description: pass:none[afficher l'aide de chaque option exportée par défaut (cela peut être passé outre avec les paramètres "-help" et "-nohelp" pour la commande /fset -export)]
** type: booléen
** valeurs: on, off
** valeur par défaut: `+on+`
-* [[option_buflist.look.signals_refresh]] *buflist.look.signals_refresh*
-** description: pass:none[liste de signaux séparés par des virgules qui sont accrochés et déclenchent l'affichage de la liste des tampons ; cela peut être utile si certaines variables personnalisées sont utilisées dans les formats et nécessitent un rafraîchissement particulier]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+""+`
-
-* [[option_buflist.look.sort]] *buflist.look.sort*
-** description: pass:none[liste de champs séparés par des virgules pour trier les tampons ; chaque champ est une variable hdata du tampon ("var"), une variable hdata du serveur IRC ("irc_server.var") ou une variable hdata du canal IRC ("irc_channel.var") ; le caractère "-" peut être utilisé pour inverser l'ordre, le caractère "~" peut être utilisé pour effectuer une comparaison insensible à la casse ; exemple : "-~short_name" pour un tri inverse insensible à la casse sur le nom court du tampon (note : le contenu est évalué, avant d'être découpé en champs, mais à cet instant "bar_item" est la seule variable qui peut être utilisée, pour distinguer les différents objets de barre buflist, par exemple "${bar_item.name}")]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+"number,-active"+`
-
-* [[option_buflist.look.use_items]] *buflist.look.use_items*
-** description: pass:none[nombre d'objets de barre buflist qui peuvent être utilisés ; les objets de barre sont : "buflist", "buflist2", "buflist3" ; attention, utiliser plus d'un objet de barre ralentit l'affichage de la liste des tampons]
+* [[option_fset.look.format_number]] *fset.look.format_number*
+** description: pass:none[numéro du format utilisé pour afficher les options ; cela est dynamiquement changé par la touche ctrl-X sur le tampon fset]
** type: entier
-** valeurs: 1 .. 3
+** valeurs: 1 .. 2
** valeur par défaut: `+1+`
-// end::buflist_options[]
-// tag::fifo_options[]
-* [[option_fifo.file.enabled]] *fifo.file.enabled*
-** description: pass:none[activer le tube FIFO]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+on+`
-
-* [[option_fifo.file.path]] *fifo.file.path*
-** description: pass:none[chemin pour le tube FIFO ; le PID de WeeChat peut être utilisé dans le chemin avec ${info:pid} (le chemin est évalué, voir la fonction string_eval_path_home dans la référence API extension)]
+* [[option_fset.look.marked_string]] *fset.look.marked_string*
+** description: pass:none[chaîne affichée lorsqu'une option est marquée (pour effectuer une action sur plusieurs options)]
** type: chaîne
** valeurs: toute chaîne
-** valeur par défaut: `+"${weechat_runtime_dir}/weechat_fifo_${info:pid}"+`
-// end::fifo_options[]
-
-// tag::typing_options[]
-* [[option_typing.look.delay_purge_paused]] *typing.look.delay_purge_paused*
-** description: pass:none[nombre de secondes après que le statut "paused" ait été défini : si atteint, le statut d'écriture est supprimé]
-** type: entier
-** valeurs: 1 .. 2147483647
-** valeur par défaut: `+30+`
-
-* [[option_typing.look.delay_purge_typing]] *typing.look.delay_purge_typing*
-** description: pass:none[nombre de secondes après que le statut "typing" ait été défini : si atteint, le statut d'écriture est supprimé]
-** type: entier
-** valeurs: 1 .. 2147483647
-** valeur par défaut: `+6+`
+** valeur par défaut: `+"*"+`
-* [[option_typing.look.delay_set_paused]] *typing.look.delay_set_paused*
-** description: pass:none[nombre de secondes après avoir tapé le dernier caractère : si atteint, le statut d'écriture devient "paused" et il n'y a plus de signaux typing envoyés]
+* [[option_fset.look.scroll_horizontal]] *fset.look.scroll_horizontal*
+** description: pass:none[défilement gauche/droite dans le tampon fset (pourcentage de la largeur)]
** type: entier
-** valeurs: 1 .. 2147483647
+** valeurs: 1 .. 100
** valeur par défaut: `+10+`
-* [[option_typing.look.enabled_nicks]] *typing.look.enabled_nicks*
-** description: pass:none[activer le statut d'écriture pour les autres pseudos (afficher le statut d'écriture pour les autres pseudos écrivant un message dans le tampon courant)]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+off+`
-
-* [[option_typing.look.enabled_self]] *typing.look.enabled_self*
-** description: pass:none[activer le statut d'écriture pour ses propres messages (envoyer l'information aux autres utilisateurs)]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+off+`
-
-* [[option_typing.look.input_min_chars]] *typing.look.input_min_chars*
-** description: pass:none[nombre minimum de caractères dans le message pour déclencher l'envoi des signaux typing]
-** type: entier
-** valeurs: 1 .. 2147483647
-** valeur par défaut: `+4+`
-
-* [[option_typing.look.item_max_length]] *typing.look.item_max_length*
-** description: pass:none[nombre maximum de caractères affichés dans l'objet de barre "typing" (0 = ne pas tronquer le contenu)]
-** type: entier
-** valeurs: 0 .. 2147483647
-** valeur par défaut: `+0+`
-// end::typing_options[]
-
-// tag::xfer_options[]
-* [[option_xfer.color.status_aborted]] *xfer.color.status_aborted*
-** description: pass:none[couleur du texte pour le statut "interrompu"]
-** type: couleur
-** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+lightred+`
-
-* [[option_xfer.color.status_active]] *xfer.color.status_active*
-** description: pass:none[couleur du texte pour le statut "actif"]
-** type: couleur
-** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+lightblue+`
-
-* [[option_xfer.color.status_connecting]] *xfer.color.status_connecting*
-** description: pass:none[couleur du texte pour le statut "connexion"]
-** type: couleur
-** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+yellow+`
-
-* [[option_xfer.color.status_done]] *xfer.color.status_done*
-** description: pass:none[couleur du texte pour le statut "terminé"]
-** type: couleur
-** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+lightgreen+`
-
-* [[option_xfer.color.status_failed]] *xfer.color.status_failed*
-** description: pass:none[couleur du texte pour le statut "échoué"]
-** type: couleur
-** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+lightred+`
-
-* [[option_xfer.color.status_waiting]] *xfer.color.status_waiting*
-** description: pass:none[couleur du texte pour le statut "en attente"]
-** type: couleur
-** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+lightcyan+`
-
-* [[option_xfer.color.text]] *xfer.color.text*
-** description: pass:none[couleur du texte dans le tampon xfer]
-** type: couleur
-** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+default+`
-
-* [[option_xfer.color.text_bg]] *xfer.color.text_bg*
-** description: pass:none[couleur du fond dans le tampon xfer]
-** type: couleur
-** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+default+`
-
-* [[option_xfer.color.text_selected]] *xfer.color.text_selected*
-** description: pass:none[couleur du texte pour la ligne sélectionnée dans le tampon xfer]
-** type: couleur
-** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+white+`
-
-* [[option_xfer.file.auto_accept_chats]] *xfer.file.auto_accept_chats*
-** description: pass:none[accepte automatiquement les demandes de discussion (à utiliser avec précaution !)]
+* [[option_fset.look.show_plugins_desc]] *fset.look.show_plugins_desc*
+** description: pass:none[afficher les options de description des extensions (plugins.desc.*)]
** type: booléen
** valeurs: on, off
** valeur par défaut: `+off+`
-* [[option_xfer.file.auto_accept_files]] *xfer.file.auto_accept_files*
-** description: pass:none[accepte automatiquement les demandes d'envoi de fichiers (à utiliser avec précaution !)]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+off+`
+* [[option_fset.look.sort]] *fset.look.sort*
+** description: pass:none[liste de champs séparés par des virgules pour trier les options (voir /help fset pour la liste des champs) ; le caractère "-" peut être utilisé pour inverser l'ordre, le caractère "~" peut être utilisé pour effectuer une comparaison insensible à la casse ; exemple : "-~name" pour un tri inverse insensible à la casse sur le nom de l'option]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+"~name"+`
-* [[option_xfer.file.auto_accept_nicks]] *xfer.file.auto_accept_nicks*
-** description: pass:none[liste de pseudos (séparés par des virgules) pour lesquels les demandes d'envoi de fichiers et de discussion sont automatiquement acceptées ; le format est "serveur.pseudo" (pour un serveur spécifique) ou "pseudo" (pour tous les serveurs) ; exemple : "libera.FlashCode,andrew"]
+* [[option_fset.look.unmarked_string]] *fset.look.unmarked_string*
+** description: pass:none[chaîne affichée lorsqu'un option n'est pas marquée]
** type: chaîne
** valeurs: toute chaîne
-** valeur par défaut: `+""+`
+** valeur par défaut: `+" "+`
-* [[option_xfer.file.auto_check_crc32]] *xfer.file.auto_check_crc32*
-** description: pass:none[vérifier automatiquement la somme de contrôle CRC32 du fichier si elle est trouvée dans le nom de fichier (8 caractères hexadécimaux)]
+* [[option_fset.look.use_color_value]] *fset.look.use_color_value*
+** description: pass:none[utiliser la couleur pour afficher la valeur des options de couleur]
** type: booléen
** valeurs: on, off
** valeur par défaut: `+off+`
-* [[option_xfer.file.auto_rename]] *xfer.file.auto_rename*
-** description: pass:none[renommer les fichiers reçus s'ils existent déjà (ajoute ".1", ".2", ...)]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+on+`
-
-* [[option_xfer.file.auto_resume]] *xfer.file.auto_resume*
-** description: pass:none[continuer automatiquement les transferts de fichiers si la connexion avec l'hôte a été perdue]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+on+`
-
-* [[option_xfer.file.convert_spaces]] *xfer.file.convert_spaces*
-** description: pass:none[convertir les espaces en underscores lors de l'envoi et la réception de fichiers]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+on+`
-
-* [[option_xfer.file.download_path]] *xfer.file.download_path*
-** description: pass:none[chemin où écrire les fichiers reçus (le chemin est évalué, voir la fonction string_eval_path_home dans la référence API extension)]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+"${weechat_data_dir}/xfer"+`
-
-* [[option_xfer.file.download_temporary_suffix]] *xfer.file.download_temporary_suffix*
-** description: pass:none[suffixe de fichier temporaire utilisé pendant le transfert pour un fichier reçu, il est supprimé après un transfert réussi ; si chaîne vide, aucun suffixe de fichier n'est utilisé pendant le transfert]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+".part"+`
-
-* [[option_xfer.file.upload_path]] *xfer.file.upload_path*
-** description: pass:none[chemin où lire les fichiers à envoyer (le chemin est évalué, voir la fonction string_eval_path_home dans la référence API extension)]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+"~"+`
-
-* [[option_xfer.file.use_nick_in_filename]] *xfer.file.use_nick_in_filename*
-** description: pass:none[utiliser le pseudo distant comme préfixe dans le nom de fichier local lors de la réception d'un fichier]
+* [[option_fset.look.use_keys]] *fset.look.use_keys*
+** description: pass:none[utiliser les touches alt+X sur le tampon fset pour effectuer les actions sur les options ; si désactivé, seule l'entrée est autorisée]
** type: booléen
** valeurs: on, off
** valeur par défaut: `+on+`
-* [[option_xfer.look.auto_open_buffer]] *xfer.look.auto_open_buffer*
-** description: pass:none[ouvrir automatiquement le tampon xfer lorsqu'un nouveau xfer est ajouté à la liste]
+* [[option_fset.look.use_mute]] *fset.look.use_mute*
+** description: pass:none[utiliser la commande /mute pour définir les options]
** type: booléen
** valeurs: on, off
-** valeur par défaut: `+on+`
-
-* [[option_xfer.look.progress_bar_size]] *xfer.look.progress_bar_size*
-** description: pass:none[taille de la barre de progression, en caractères (si 0, la barre de progression est désactivée)]
-** type: entier
-** valeurs: 0 .. 256
-** valeur par défaut: `+20+`
-
-* [[option_xfer.look.pv_tags]] *xfer.look.pv_tags*
-** description: pass:none[liste des étiquettes (séparées par des virgules) utilisées dans les messages privés, par exemple : "notify_message", "notify_private" ou "notify_highlight"]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+"notify_private"+`
-
-* [[option_xfer.network.blocksize]] *xfer.network.blocksize*
-** description: pass:none[taille de bloc pour les paquets envoyés, en octets]
-** type: entier
-** valeurs: 1024 .. 102400
-** valeur par défaut: `+65536+`
+** valeur par défaut: `+off+`
+// end::fset_options[]
-* [[option_xfer.network.fast_send]] *xfer.network.fast_send*
-** description: pass:none[n'attend pas les accusés de réception lors de l'envoi de fichier]
+// tag::guile_options[]
+* [[option_guile.look.check_license]] *guile.look.check_license*
+** description: pass:none[vérifier la licence des scripts quand ils sont chargés : si la licence est différente de la licence de l'extension, un avertissement est affiché]
** type: booléen
** valeurs: on, off
-** valeur par défaut: `+on+`
-
-* [[option_xfer.network.own_ip]] *xfer.network.own_ip*
-** description: pass:none[adresse IP ou DNS utilisée pour envoyer les fichiers/discussions (si non renseigné, l'interface IP locale est utilisée)]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+""+`
-
-* [[option_xfer.network.port_range]] *xfer.network.port_range*
-** description: pass:none[restreint les fichiers/discussions sortants à utiliser des ports dans l'intervalle donné (pratique pour le NAT) (syntaxe : un port simple, par exemple 5000, un intervalle de ports, par exemple 5000-5015, si non renseigné tout port peut être utilisé, il est recommandé d'utiliser des ports supérieurs à 1024, car seul root peut utiliser les ports en dessous de 1024)]
-** type: chaîne
-** valeurs: toute chaîne
-** valeur par défaut: `+""+`
+** valeur par défaut: `+off+`
-* [[option_xfer.network.send_ack]] *xfer.network.send_ack*
-** description: pass:none[envoyer des acks lors de la réception de fichiers ; si désactivé, le transfert peut échouer si l'envoyeur attend des acks (par exemple un WeeChat qui envoie le fichier avec l'option xfer.network.fast_send à off) ; d'un autre côté, désactiver l'envoi des acks peut éviter un gel si les acks ne sont pas envoyés immédiatement à l'envoyeur]
+* [[option_guile.look.eval_keep_context]] *guile.look.eval_keep_context*
+** description: pass:none[garder le contexte entre deux appels à l'évaluation de code source (option "eval" de la commande de script ou info "%s_eval") ; un script caché est utilisé pour évaluer le code du script ; si cette option est désactivée, ce script caché est déchargé après chaque eval ; cela utilise moins de mémoire, mais est plus lent]
** type: booléen
** valeurs: on, off
** valeur par défaut: `+on+`
-
-* [[option_xfer.network.speed_limit_recv]] *xfer.network.speed_limit_recv*
-** description: pass:none[limitation de vitesse pour la réception de fichiers, en kilo-octets par seconde (0 signifie pas de limite)]
-** type: entier
-** valeurs: 0 .. 2147483647
-** valeur par défaut: `+0+`
-
-* [[option_xfer.network.speed_limit_send]] *xfer.network.speed_limit_send*
-** description: pass:none[limitation de vitesse pour l'envoi des fichiers, en kilo-octets par seconde (0 signifie pas de limite)]
-** type: entier
-** valeurs: 0 .. 2147483647
-** valeur par défaut: `+0+`
-
-* [[option_xfer.network.timeout]] *xfer.network.timeout*
-** description: pass:none[délai d'attente pour la requête xfer (en secondes)]
-** type: entier
-** valeurs: 5 .. 2147483647
-** valeur par défaut: `+300+`
-// end::xfer_options[]
+// end::guile_options[]
// tag::irc_options[]
* [[option_irc.color.input_nick]] *irc.color.input_nick*
@@ -2985,6 +1601,192 @@
** valeur par défaut: `+""+`
// end::irc_options[]
+// tag::javascript_options[]
+* [[option_javascript.look.check_license]] *javascript.look.check_license*
+** description: pass:none[vérifier la licence des scripts quand ils sont chargés : si la licence est différente de la licence de l'extension, un avertissement est affiché]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+off+`
+
+* [[option_javascript.look.eval_keep_context]] *javascript.look.eval_keep_context*
+** description: pass:none[garder le contexte entre deux appels à l'évaluation de code source (option "eval" de la commande de script ou info "%s_eval") ; un script caché est utilisé pour évaluer le code du script ; si cette option est désactivée, ce script caché est déchargé après chaque eval ; cela utilise moins de mémoire, mais est plus lent]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+on+`
+// end::javascript_options[]
+
+// tag::logger_options[]
+* [[option_logger.color.backlog_end]] *logger.color.backlog_end*
+** description: pass:none[couleur pour la ligne de fin de l'historique]
+** type: couleur
+** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
+** valeur par défaut: `+default+`
+
+* [[option_logger.color.backlog_line]] *logger.color.backlog_line*
+** description: pass:none[couleur pour les lignes de l'historique, utilisée seulement si l'option logger.file.color_lines est désactivée]
+** type: couleur
+** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
+** valeur par défaut: `+default+`
+
+* [[option_logger.file.auto_log]] *logger.file.auto_log*
+** description: pass:none[sauve automatiquement le contenu des tampons dans des fichiers (sauf si un tampon désactive le log) ; si désactivé, l'enregistrement est désactivé sur tous les tampons]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+on+`
+
+* [[option_logger.file.color_lines]] *logger.file.color_lines*
+** description: pass:none[utiliser des codes de couleurs ANSI dans les lignes écrites dans les fichiers de log et afficher les lignes de l'historique avec ces couleurs]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+off+`
+
+* [[option_logger.file.flush_delay]] *logger.file.flush_delay*
+** description: pass:none[nombre de secondes entre les "flush" (écriture) dans les fichiers de log (0 = écrire immédiatement dans les fichiers de log pour chaque ligne affichée)]
+** type: entier
+** valeurs: 0 .. 3600
+** valeur par défaut: `+120+`
+
+* [[option_logger.file.fsync]] *logger.file.fsync*
+** description: pass:none[utiliser fsync pour synchroniser le fichier de log avec le périphérique de stockage après le flush (voir man fsync) ; cela est plus lent mais devrait éviter toute perte de données en cas de panne de courant durant la sauvegarde du fichier de log]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+off+`
+
+* [[option_logger.file.info_lines]] *logger.file.info_lines*
+** description: pass:none[écrire une ligne d'information dans le fichier log quand le log démarre ou se termine pour un tampon]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+off+`
+
+* [[option_logger.file.mask]] *logger.file.mask*
+** description: pass:none[masque de fichier par défaut pour les fichiers de log (le format est "repertoire/vers/fichier" ou "fichier", sans le premier "/" car l'option "path" est utilisée pour construire le chemin complet vers le fichier) ; les variables locales du tampon sont permises (vous ne devriez utiliser que des variables qui sont définies sur tous les tampons, donc par exemple vous ne devriez PAS utiliser $server ou $channel) ; les caractères de formatage de date sont autorisés (voir man strftime)]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+"$plugin.$name.weechatlog"+`
+
+* [[option_logger.file.name_lower_case]] *logger.file.name_lower_case*
+** description: pass:none[utiliser seulement des minuscules dans le nom des fichiers de log]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+on+`
+
+* [[option_logger.file.nick_prefix]] *logger.file.nick_prefix*
+** description: pass:none[texte à écrire avant le pseudo dans le préfixe du message, par exemple : "<"]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+""+`
+
+* [[option_logger.file.nick_suffix]] *logger.file.nick_suffix*
+** description: pass:none[texte à écrire après le pseudo dans le préfixe du message, par exemple : ">"]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+""+`
+
+* [[option_logger.file.path]] *logger.file.path*
+** description: pass:none[chemin pour les fichiers de log WeeChat ; les caractères de formatage de date sont autorisés (voir man strftime) (le chemin est évalué, voir la fonction string_eval_path_home dans la référence API extension)]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+"${weechat_data_dir}/logs"+`
+
+* [[option_logger.file.replacement_char]] *logger.file.replacement_char*
+** description: pass:none[caractère de remplacement dans le nom de fichier construit avec le masque (comme le délimiteur de répertoire)]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+"_"+`
+
+* [[option_logger.file.rotation_compression_level]] *logger.file.rotation_compression_level*
+** description: pass:none[niveau de compression pour les fichiers de log qui tournent (avec extension ".1", ".2", etc.), si l'option logger.file.rotation_compression_type est activée ; 1 = peu de compression / rapide ... 100 = meilleure compression / lent ; la valeur est un pourcentage converti de 1 à 9 pour gzip et de 1 à 19 pour zstd ; la valeur par défaut est recommandée, elle offre un bon compromis compression/vitesse]
+** type: entier
+** valeurs: 1 .. 100
+** valeur par défaut: `+20+`
+
+* [[option_logger.file.rotation_compression_type]] *logger.file.rotation_compression_type*
+** description: pass:none[type de compression pour les fichiers de log qui tournent ; si défini à "none", les fichiers de logs qui tournent ne sont pas compressés ; ATTENTION : si la rotation est activée avec un autre type de compression (ou pas de compression), vous devez d'abord décharger l'extension logger, compresser les fichiers avec le nouveau type (ou décompresser les fichiers), puis changer l'option dans logger.conf, puis charger l'extension logger]
+** type: entier
+** valeurs: none, gzip, zstd
+** valeur par défaut: `+none+`
+
+* [[option_logger.file.rotation_size_max]] *logger.file.rotation_size_max*
+** description: pass:none[lorsque cette taille est atteinte, une rotation des fichiers est effectuée : les fichiers de log existants sont renommés (.1 devient .2, .2 devient .3, etc.) et le fichier courant est renommé avec l'extension .1 ; un nombre entier avec un suffixe est accepté : b = octets (par défaut si pas d'unité spécifiée), k = kilo-octets, m = méga-octets, g = giga-octets, t = téra-octets ; exemple : "2g" provoque une rotation si la taille du fichier est > 2 000 000 000 octets ; si défini à "0", aucune rotation n'est effectuée (taille de log illimitée) ; ATTENTION : avant de changer cette option, vous devriez d'abord définir le type de compression via l'option logger.file.rotation_compression_type]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+"0"+`
+
+* [[option_logger.file.time_format]] *logger.file.time_format*
+** description: pass:none[format de date/heure utilisé dans les fichiers log (voir man strftime pour le format de date/heure)]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+"%Y-%m-%d %H:%M:%S"+`
+
+* [[option_logger.look.backlog]] *logger.look.backlog*
+** description: pass:none[nombre maximum de lignes à afficher du fichier de log lors de l'ouverture du tampon (0 = ne rien afficher)]
+** type: entier
+** valeurs: 0 .. 2147483647
+** valeur par défaut: `+20+`
+
+* [[option_logger.look.backlog_conditions]] *logger.look.backlog_conditions*
+** description: pass:none[conditions pour afficher l'historique (note : le contenu est évalué, voir /help eval) ; une valeur vide affiche l'historique sur tous les tampons ; par exemple pour afficher l'historique seulement sur les tampons privés : "${type} == private"]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+""+`
+// end::logger_options[]
+
+// tag::lua_options[]
+* [[option_lua.look.check_license]] *lua.look.check_license*
+** description: pass:none[vérifier la licence des scripts quand ils sont chargés : si la licence est différente de la licence de l'extension, un avertissement est affiché]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+off+`
+
+* [[option_lua.look.eval_keep_context]] *lua.look.eval_keep_context*
+** description: pass:none[garder le contexte entre deux appels à l'évaluation de code source (option "eval" de la commande de script ou info "%s_eval") ; un script caché est utilisé pour évaluer le code du script ; si cette option est désactivée, ce script caché est déchargé après chaque eval ; cela utilise moins de mémoire, mais est plus lent]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+on+`
+// end::lua_options[]
+
+// tag::perl_options[]
+* [[option_perl.look.check_license]] *perl.look.check_license*
+** description: pass:none[vérifier la licence des scripts quand ils sont chargés : si la licence est différente de la licence de l'extension, un avertissement est affiché]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+off+`
+
+* [[option_perl.look.eval_keep_context]] *perl.look.eval_keep_context*
+** description: pass:none[garder le contexte entre deux appels à l'évaluation de code source (option "eval" de la commande de script ou info "%s_eval") ; un script caché est utilisé pour évaluer le code du script ; si cette option est désactivée, ce script caché est déchargé après chaque eval ; cela utilise moins de mémoire, mais est plus lent]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+on+`
+// end::perl_options[]
+
+// tag::php_options[]
+* [[option_php.look.check_license]] *php.look.check_license*
+** description: pass:none[vérifier la licence des scripts quand ils sont chargés : si la licence est différente de la licence de l'extension, un avertissement est affiché]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+off+`
+
+* [[option_php.look.eval_keep_context]] *php.look.eval_keep_context*
+** description: pass:none[garder le contexte entre deux appels à l'évaluation de code source (option "eval" de la commande de script ou info "%s_eval") ; un script caché est utilisé pour évaluer le code du script ; si cette option est désactivée, ce script caché est déchargé après chaque eval ; cela utilise moins de mémoire, mais est plus lent]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+on+`
+// end::php_options[]
+
+// tag::python_options[]
+* [[option_python.look.check_license]] *python.look.check_license*
+** description: pass:none[vérifier la licence des scripts quand ils sont chargés : si la licence est différente de la licence de l'extension, un avertissement est affiché]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+off+`
+
+* [[option_python.look.eval_keep_context]] *python.look.eval_keep_context*
+** description: pass:none[garder le contexte entre deux appels à l'évaluation de code source (option "eval" de la commande de script ou info "%s_eval") ; un script caché est utilisé pour évaluer le code du script ; si cette option est désactivée, ce script caché est déchargé après chaque eval ; cela utilise moins de mémoire, mais est plus lent]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+on+`
+// end::python_options[]
+
// tag::relay_options[]
* [[option_relay.color.client]] *relay.color.client*
** description: pass:none[couleur du texte pour la description du client]
@@ -3197,90 +1999,6 @@
** valeur par défaut: `+""+`
// end::relay_options[]
-// tag::guile_options[]
-* [[option_guile.look.check_license]] *guile.look.check_license*
-** description: pass:none[vérifier la licence des scripts quand ils sont chargés : si la licence est différente de la licence de l'extension, un avertissement est affiché]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+off+`
-
-* [[option_guile.look.eval_keep_context]] *guile.look.eval_keep_context*
-** description: pass:none[garder le contexte entre deux appels à l'évaluation de code source (option "eval" de la commande de script ou info "%s_eval") ; un script caché est utilisé pour évaluer le code du script ; si cette option est désactivée, ce script caché est déchargé après chaque eval ; cela utilise moins de mémoire, mais est plus lent]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+on+`
-// end::guile_options[]
-
-// tag::javascript_options[]
-* [[option_javascript.look.check_license]] *javascript.look.check_license*
-** description: pass:none[vérifier la licence des scripts quand ils sont chargés : si la licence est différente de la licence de l'extension, un avertissement est affiché]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+off+`
-
-* [[option_javascript.look.eval_keep_context]] *javascript.look.eval_keep_context*
-** description: pass:none[garder le contexte entre deux appels à l'évaluation de code source (option "eval" de la commande de script ou info "%s_eval") ; un script caché est utilisé pour évaluer le code du script ; si cette option est désactivée, ce script caché est déchargé après chaque eval ; cela utilise moins de mémoire, mais est plus lent]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+on+`
-// end::javascript_options[]
-
-// tag::lua_options[]
-* [[option_lua.look.check_license]] *lua.look.check_license*
-** description: pass:none[vérifier la licence des scripts quand ils sont chargés : si la licence est différente de la licence de l'extension, un avertissement est affiché]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+off+`
-
-* [[option_lua.look.eval_keep_context]] *lua.look.eval_keep_context*
-** description: pass:none[garder le contexte entre deux appels à l'évaluation de code source (option "eval" de la commande de script ou info "%s_eval") ; un script caché est utilisé pour évaluer le code du script ; si cette option est désactivée, ce script caché est déchargé après chaque eval ; cela utilise moins de mémoire, mais est plus lent]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+on+`
-// end::lua_options[]
-
-// tag::perl_options[]
-* [[option_perl.look.check_license]] *perl.look.check_license*
-** description: pass:none[vérifier la licence des scripts quand ils sont chargés : si la licence est différente de la licence de l'extension, un avertissement est affiché]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+off+`
-
-* [[option_perl.look.eval_keep_context]] *perl.look.eval_keep_context*
-** description: pass:none[garder le contexte entre deux appels à l'évaluation de code source (option "eval" de la commande de script ou info "%s_eval") ; un script caché est utilisé pour évaluer le code du script ; si cette option est désactivée, ce script caché est déchargé après chaque eval ; cela utilise moins de mémoire, mais est plus lent]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+on+`
-// end::perl_options[]
-
-// tag::php_options[]
-* [[option_php.look.check_license]] *php.look.check_license*
-** description: pass:none[vérifier la licence des scripts quand ils sont chargés : si la licence est différente de la licence de l'extension, un avertissement est affiché]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+off+`
-
-* [[option_php.look.eval_keep_context]] *php.look.eval_keep_context*
-** description: pass:none[garder le contexte entre deux appels à l'évaluation de code source (option "eval" de la commande de script ou info "%s_eval") ; un script caché est utilisé pour évaluer le code du script ; si cette option est désactivée, ce script caché est déchargé après chaque eval ; cela utilise moins de mémoire, mais est plus lent]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+on+`
-// end::php_options[]
-
-// tag::python_options[]
-* [[option_python.look.check_license]] *python.look.check_license*
-** description: pass:none[vérifier la licence des scripts quand ils sont chargés : si la licence est différente de la licence de l'extension, un avertissement est affiché]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+off+`
-
-* [[option_python.look.eval_keep_context]] *python.look.eval_keep_context*
-** description: pass:none[garder le contexte entre deux appels à l'évaluation de code source (option "eval" de la commande de script ou info "%s_eval") ; un script caché est utilisé pour évaluer le code du script ; si cette option est désactivée, ce script caché est déchargé après chaque eval ; cela utilise moins de mémoire, mais est plus lent]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+on+`
-// end::python_options[]
-
// tag::ruby_options[]
* [[option_ruby.look.check_license]] *ruby.look.check_license*
** description: pass:none[vérifier la licence des scripts quand ils sont chargés : si la licence est différente de la licence de l'extension, un avertissement est affiché]
@@ -3295,20 +2013,6 @@
** valeur par défaut: `+on+`
// end::ruby_options[]
-// tag::tcl_options[]
-* [[option_tcl.look.check_license]] *tcl.look.check_license*
-** description: pass:none[vérifier la licence des scripts quand ils sont chargés : si la licence est différente de la licence de l'extension, un avertissement est affiché]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+off+`
-
-* [[option_tcl.look.eval_keep_context]] *tcl.look.eval_keep_context*
-** description: pass:none[garder le contexte entre deux appels à l'évaluation de code source (option "eval" de la commande de script ou info "%s_eval") ; un script caché est utilisé pour évaluer le code du script ; si cette option est désactivée, ce script caché est déchargé après chaque eval ; cela utilise moins de mémoire, mais est plus lent]
-** type: booléen
-** valeurs: on, off
-** valeur par défaut: `+on+`
-// end::tcl_options[]
-
// tag::script_options[]
* [[option_script.color.status_autoloaded]] *script.color.status_autoloaded*
** description: pass:none[couleur du statut "chargé auto" ("a")]
@@ -3557,484 +2261,1780 @@
** valeur par défaut: `+"https://weechat.org/files/plugins.xml.gz"+`
// end::script_options[]
-// tag::fset_options[]
-* [[option_fset.color.default_value]] *fset.color.default_value*
-** description: pass:none[couleur pour la valeur par défaut]
-** type: couleur
-** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+default+`
+// tag::sec_options[]
+* [[option_sec.crypt.cipher]] *sec.crypt.cipher*
+** description: pass:none[chiffrement ("cipher") utilisé pour chiffrer les données (le nombre après l'algorithme est la taille de la clé en bits)]
+** type: entier
+** valeurs: aes128, aes192, aes256
+** valeur par défaut: `+aes256+`
-* [[option_fset.color.default_value_selected]] *fset.color.default_value_selected*
-** description: pass:none[couleur pour la valeur par défaut sur la ligne sélectionnée]
+* [[option_sec.crypt.hash_algo]] *sec.crypt.hash_algo*
+** description: pass:none[algorithme de hash pour vérifier les données déchiffrées]
+** type: entier
+** valeurs: sha224, sha256, sha384, sha512
+** valeur par défaut: `+sha256+`
+
+* [[option_sec.crypt.passphrase_command]] *sec.crypt.passphrase_command*
+** description: pass:none[lire la phrase de chiffrement depuis la sortie de cette commande système (seule la première ligne est utilisée et elle ne doit contenir aucun autre caractère) ; cette option est utilisée seulement pour lire le fichier sec.conf et si la variable d'environnement "WEECHAT_PASSPHRASE" n'est pas définie (la variable d'environnement a une priorité plus haute) ; exemple avec password-store : "/usr/bin/pass show weechat/passphrase"]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+""+`
+
+* [[option_sec.crypt.salt]] *sec.crypt.salt*
+** description: pass:none[utiliser du sel lors de la génération de la clé utilisée dans le chiffrement (recommandé pour un maximum de sécurité) ; lorsque cette option est activée, le contenu des données chiffrées dans le fichier sec.conf sera différent à chaque écriture du fichier ; si vous utilisez le fichier sec.conf dans un système de contrôle de version, alors vous pouvez désactiver cette option pour avoir toujours le même contenu de fichier]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+on+`
+// end::sec_options[]
+
+// tag::spell_options[]
+* [[option_spell.check.commands]] *spell.check.commands*
+** description: pass:none[liste de commandes (séparées par des virgules) pour lesquelles la vérification orthographique est activée (la vérification est désactivée pour toutes les autres commandes)]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+"away,command,cycle,kick,kickban,me,msg,notice,part,query,quit,topic"+`
+
+* [[option_spell.check.default_dict]] *spell.check.default_dict*
+** description: pass:none[dictionnaire par défaut (ou liste de dictionnaires séparés par une virgule) à utiliser quand le tampon courant n'a pas de dictionnaire défini (laissez blanc pour désactiver le vérificateur d'orthographe sur les tampons pour lesquels vous ne l'avez pas explicitement activé)]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+""+`
+
+* [[option_spell.check.during_search]] *spell.check.during_search*
+** description: pass:none[vérifier les mots pendant la recherche de texte dans le tampon]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+off+`
+
+* [[option_spell.check.enabled]] *spell.check.enabled*
+** description: pass:none[activer le vérificateur d'orthographe pour la ligne de commande]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+off+`
+
+* [[option_spell.check.real_time]] *spell.check.real_time*
+** description: pass:none[vérification orthographique des mots en temps réel (plus lent, désactivé par défaut : les mots sont vérifiés seulement s'il y a un délimiteur après)]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+off+`
+
+* [[option_spell.check.suggestions]] *spell.check.suggestions*
+** description: pass:none[nombre de suggestions à afficher dans l'objet de barre "spell_suggest" pour chaque dictionnaire du tampon (-1 = désactiver les suggestions, 0 = afficher toutes les suggestions possibles dans toutes les langues)]
+** type: entier
+** valeurs: -1 .. 2147483647
+** valeur par défaut: `+-1+`
+
+* [[option_spell.check.word_min_length]] *spell.check.word_min_length*
+** description: pass:none[longueur minimum d'un mot pour que l'orthographe soit vérifiée (utilisez 0 pour vérifier tous les mots)]
+** type: entier
+** valeurs: 0 .. 2147483647
+** valeur par défaut: `+2+`
+
+* [[option_spell.color.misspelled]] *spell.color.misspelled*
+** description: pass:none[couleur du texte pour les mots mal orthographiés (barre de saisie)]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+white+`
+** valeur par défaut: `+lightred+`
-* [[option_fset.color.description]] *fset.color.description*
-** description: pass:none[couleur pour la description]
+* [[option_spell.color.suggestion]] *spell.color.suggestion*
+** description: pass:none[couleur du texte pour la suggestion sur un mot mal orthographié dans l'objet de barre "spell_suggest"]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
** valeur par défaut: `+default+`
-* [[option_fset.color.description_selected]] *fset.color.description_selected*
-** description: pass:none[couleur pour la description sur la ligne sélectionnée]
+* [[option_spell.color.suggestion_delimiter_dict]] *spell.color.suggestion_delimiter_dict*
+** description: pass:none[couleur du texte pour les séparateurs affichés entre deux dictionnaires dans l'objet de barre "spell_suggest"]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+white+`
+** valeur par défaut: `+cyan+`
-* [[option_fset.color.file]] *fset.color.file*
-** description: pass:none[couleur pour le fichier]
+* [[option_spell.color.suggestion_delimiter_word]] *spell.color.suggestion_delimiter_word*
+** description: pass:none[couleur du texte pour les séparateurs affichés entre deux mots dans l'objet de barre "spell_suggest"]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+default+`
+** valeur par défaut: `+cyan+`
-* [[option_fset.color.file_changed]] *fset.color.file_changed*
-** description: pass:none[couleur pour le fichier si la valeur est changée]
+* [[option_spell.look.suggestion_delimiter_dict]] *spell.look.suggestion_delimiter_dict*
+** description: pass:none[séparateur affiché entre deux dictionnaires dans l'objet de barre "spell_suggest"]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+" / "+`
+
+* [[option_spell.look.suggestion_delimiter_word]] *spell.look.suggestion_delimiter_word*
+** description: pass:none[séparateur affiché entre deux mots dans l'objet de barre "spell_suggest"]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+","+`
+// end::spell_options[]
+
+// tag::tcl_options[]
+* [[option_tcl.look.check_license]] *tcl.look.check_license*
+** description: pass:none[vérifier la licence des scripts quand ils sont chargés : si la licence est différente de la licence de l'extension, un avertissement est affiché]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+off+`
+
+* [[option_tcl.look.eval_keep_context]] *tcl.look.eval_keep_context*
+** description: pass:none[garder le contexte entre deux appels à l'évaluation de code source (option "eval" de la commande de script ou info "%s_eval") ; un script caché est utilisé pour évaluer le code du script ; si cette option est désactivée, ce script caché est déchargé après chaque eval ; cela utilise moins de mémoire, mais est plus lent]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+on+`
+// end::tcl_options[]
+
+// tag::trigger_options[]
+* [[option_trigger.color.flag_command]] *trigger.color.flag_command*
+** description: pass:none[couleur du texte pour le drapeau de la commande (dans /trigger list)]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+brown+`
+** valeur par défaut: `+lightgreen+`
-* [[option_fset.color.file_changed_selected]] *fset.color.file_changed_selected*
-** description: pass:none[couleur pour le fichier si la valeur est changée sur la ligne sélectionnée]
+* [[option_trigger.color.flag_conditions]] *trigger.color.flag_conditions*
+** description: pass:none[couleur du texte pour le drapeau des conditions (dans /trigger list)]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
** valeur par défaut: `+yellow+`
-* [[option_fset.color.file_selected]] *fset.color.file_selected*
-** description: pass:none[couleur pour le fichier sur la ligne sélectionnée]
+* [[option_trigger.color.flag_post_action]] *trigger.color.flag_post_action*
+** description: pass:none[couleur du texte pour le drapeau de l'action "post" (dans /trigger list)]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+white+`
+** valeur par défaut: `+lightblue+`
-* [[option_fset.color.help_default_value]] *fset.color.help_default_value*
-** description: pass:none[couleur pour la valeur par défaut dans la barre d'aide]
+* [[option_trigger.color.flag_regex]] *trigger.color.flag_regex*
+** description: pass:none[couleur du texte pour le drapeaux de l'expression régulière (dans /trigger list)]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+white+`
+** valeur par défaut: `+lightcyan+`
-* [[option_fset.color.help_description]] *fset.color.help_description*
-** description: pass:none[couleur pour la description dans la barre d'aide]
+* [[option_trigger.color.flag_return_code]] *trigger.color.flag_return_code*
+** description: pass:none[couleur du texte pour le drapeau du code retour (dans /trigger list)]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+default+`
+** valeur par défaut: `+lightmagenta+`
-* [[option_fset.color.help_name]] *fset.color.help_name*
-** description: pass:none[couleur pour le nom dans la barre d'aide]
+* [[option_trigger.color.identifier]] *trigger.color.identifier*
+** description: pass:none[couleur du texte pour l'identifiant de contexte du trigger dans le tampon moniteur]
+** type: couleur
+** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
+** valeur par défaut: `+cyan+`
+
+* [[option_trigger.color.regex]] *trigger.color.regex*
+** description: pass:none[couleur du texte pour les expressions régulières]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
** valeur par défaut: `+white+`
-* [[option_fset.color.help_quotes]] *fset.color.help_quotes*
-** description: pass:none[couleur pour les guillemets autour des valeurs de type chaîne]
+* [[option_trigger.color.replace]] *trigger.color.replace*
+** description: pass:none[couleur du texte pour le texte de remplacement (pour les expressions régulières)]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+darkgray+`
+** valeur par défaut: `+cyan+`
-* [[option_fset.color.help_values]] *fset.color.help_values*
-** description: pass:none[couleur pour les valeurs autorisées]
+* [[option_trigger.color.trigger]] *trigger.color.trigger*
+** description: pass:none[couleur du texte pour le nom du trigger]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+default+`
+** valeur par défaut: `+green+`
-* [[option_fset.color.index]] *fset.color.index*
-** description: pass:none[couleur pour l'index de l'option]
+* [[option_trigger.color.trigger_disabled]] *trigger.color.trigger_disabled*
+** description: pass:none[couleur du texte pour le nom du trigger désactivé]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+cyan+`
+** valeur par défaut: `+red+`
-* [[option_fset.color.index_selected]] *fset.color.index_selected*
-** description: pass:none[couleur pour l'index de l'option sur la ligne sélectionnée]
+* [[option_trigger.look.enabled]] *trigger.look.enabled*
+** description: pass:none[activer le support des triggers]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+on+`
+
+* [[option_trigger.look.monitor_strip_colors]] *trigger.look.monitor_strip_colors*
+** description: pass:none[supprimer les couleurs dans la table de hachage affichée sur le tampon moniteur]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+off+`
+// end::trigger_options[]
+
+// tag::typing_options[]
+* [[option_typing.look.delay_purge_paused]] *typing.look.delay_purge_paused*
+** description: pass:none[nombre de secondes après que le statut "paused" ait été défini : si atteint, le statut d'écriture est supprimé]
+** type: entier
+** valeurs: 1 .. 2147483647
+** valeur par défaut: `+30+`
+
+* [[option_typing.look.delay_purge_typing]] *typing.look.delay_purge_typing*
+** description: pass:none[nombre de secondes après que le statut "typing" ait été défini : si atteint, le statut d'écriture est supprimé]
+** type: entier
+** valeurs: 1 .. 2147483647
+** valeur par défaut: `+6+`
+
+* [[option_typing.look.delay_set_paused]] *typing.look.delay_set_paused*
+** description: pass:none[nombre de secondes après avoir tapé le dernier caractère : si atteint, le statut d'écriture devient "paused" et il n'y a plus de signaux typing envoyés]
+** type: entier
+** valeurs: 1 .. 2147483647
+** valeur par défaut: `+10+`
+
+* [[option_typing.look.enabled_nicks]] *typing.look.enabled_nicks*
+** description: pass:none[activer le statut d'écriture pour les autres pseudos (afficher le statut d'écriture pour les autres pseudos écrivant un message dans le tampon courant)]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+off+`
+
+* [[option_typing.look.enabled_self]] *typing.look.enabled_self*
+** description: pass:none[activer le statut d'écriture pour ses propres messages (envoyer l'information aux autres utilisateurs)]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+off+`
+
+* [[option_typing.look.input_min_chars]] *typing.look.input_min_chars*
+** description: pass:none[nombre minimum de caractères dans le message pour déclencher l'envoi des signaux typing]
+** type: entier
+** valeurs: 1 .. 2147483647
+** valeur par défaut: `+4+`
+
+* [[option_typing.look.item_max_length]] *typing.look.item_max_length*
+** description: pass:none[nombre maximum de caractères affichés dans l'objet de barre "typing" (0 = ne pas tronquer le contenu)]
+** type: entier
+** valeurs: 0 .. 2147483647
+** valeur par défaut: `+0+`
+// end::typing_options[]
+
+// tag::weechat_options[]
+* [[option_weechat.color.bar_more]] *weechat.color.bar_more*
+** description: pass:none[couleur du texte pour les "+" lors du défilement des barres]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+lightcyan+`
+** valeur par défaut: `+lightmagenta+`
-* [[option_fset.color.line_marked_bg1]] *fset.color.line_marked_bg1*
-** description: pass:none[couleur du fond pour une ligne marquée (utilisé avec le premier format, voir l'option fset.format.option1)]
+* [[option_weechat.color.chat]] *weechat.color.chat*
+** description: pass:none[couleur du texte pour la discussion]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
** valeur par défaut: `+default+`
-* [[option_fset.color.line_marked_bg2]] *fset.color.line_marked_bg2*
-** description: pass:none[couleur du fond pour une ligne marquée (utilisé avec le second format, voir l'option fset.format.option2)]
+* [[option_weechat.color.chat_bg]] *weechat.color.chat_bg*
+** description: pass:none[couleur du fond pour la discussion]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
** valeur par défaut: `+default+`
-* [[option_fset.color.line_selected_bg1]] *fset.color.line_selected_bg1*
-** description: pass:none[couleur du fond pour la ligne sélectionnée (utilisé avec le premier format, voir l'option fset.format.option1)]
+* [[option_weechat.color.chat_buffer]] *weechat.color.chat_buffer*
+** description: pass:none[couleur du texte pour le nom des tampons]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+blue+`
+** valeur par défaut: `+white+`
-* [[option_fset.color.line_selected_bg2]] *fset.color.line_selected_bg2*
-** description: pass:none[couleur du fond pour la ligne sélectionnée (utilisé avec le second format, voir l'option fset.format.option2)]
+* [[option_weechat.color.chat_channel]] *weechat.color.chat_channel*
+** description: pass:none[couleur du texte pour le nom des canaux]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+red+`
+** valeur par défaut: `+white+`
-* [[option_fset.color.marked]] *fset.color.marked*
-** description: pass:none[couleur pour l'indicateur de marquage]
+* [[option_weechat.color.chat_day_change]] *weechat.color.chat_day_change*
+** description: pass:none[couleur du texte pour le message affiché lorsque le jour a changé]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+brown+`
+** valeur par défaut: `+cyan+`
-* [[option_fset.color.marked_selected]] *fset.color.marked_selected*
-** description: pass:none[couleur pour l'indicateur de marquage sur la ligne sélectionnée]
+* [[option_weechat.color.chat_delimiters]] *weechat.color.chat_delimiters*
+** description: pass:none[couleur du texte pour les délimiteurs]
+** type: couleur
+** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
+** valeur par défaut: `+green+`
+
+* [[option_weechat.color.chat_highlight]] *weechat.color.chat_highlight*
+** description: pass:none[couleur du texte pour le préfixe surligné (highlight)]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
** valeur par défaut: `+yellow+`
-* [[option_fset.color.max]] *fset.color.max*
-** description: pass:none[couleur pour la valeur maximale]
+* [[option_weechat.color.chat_highlight_bg]] *weechat.color.chat_highlight_bg*
+** description: pass:none[couleur du fond pour le préfixe surligné (highlight)]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+default+`
+** valeur par défaut: `+magenta+`
-* [[option_fset.color.max_selected]] *fset.color.max_selected*
-** description: pass:none[couleur pour la valeur maximale sur la ligne sélectionnée]
+* [[option_weechat.color.chat_host]] *weechat.color.chat_host*
+** description: pass:none[couleur du texte pour les noms d'hôtes]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+white+`
+** valeur par défaut: `+cyan+`
-* [[option_fset.color.min]] *fset.color.min*
-** description: pass:none[couleur pour la valeur minimale]
+* [[option_weechat.color.chat_inactive_buffer]] *weechat.color.chat_inactive_buffer*
+** description: pass:none[couleur du texte pour la discussion lorsque la ligne est inactive (tampon mélangé avec d'autres tampons et non sélectionné)]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
** valeur par défaut: `+default+`
-* [[option_fset.color.min_selected]] *fset.color.min_selected*
-** description: pass:none[couleur pour la valeur minimale sur la ligne sélectionnée]
+* [[option_weechat.color.chat_inactive_window]] *weechat.color.chat_inactive_window*
+** description: pass:none[couleur du texte pour la discussion lorsque la fenêtre n'est pas active (pas la fenêtre sélectionnée)]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+white+`
+** valeur par défaut: `+default+`
-* [[option_fset.color.name]] *fset.color.name*
-** description: pass:none[couleur pour le nom]
+* [[option_weechat.color.chat_nick]] *weechat.color.chat_nick*
+** description: pass:none[couleur du texte pour les pseudos dans la fenêtre de discussion ; utilisée dans quelques messages du serveur et comme couleur par défaut quand la couleur du pseudo n'est pas trouvée ; la plupart du temps la couleur du pseudo vient de l'option weechat.color.chat_nick_colors]
+** type: couleur
+** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
+** valeur par défaut: `+lightcyan+`
+
+* [[option_weechat.color.chat_nick_colors]] *weechat.color.chat_nick_colors*
+** description: pass:none[couleur du texte pour les pseudos (liste de couleurs séparées par une virgule, un fond est autorisé avec le format : "couleur:fond", par exemple : "lightred:blue")]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+"cyan,magenta,green,brown,lightblue,default,lightcyan,lightmagenta,lightgreen,blue"+`
+
+* [[option_weechat.color.chat_nick_offline]] *weechat.color.chat_nick_offline*
+** description: pass:none[couleur du texte pour un pseudo déconnecté (qui n'est plus dans la liste de pseudos) ; cette couleur est utilisée seulement si l'option weechat.look.color_nick_offline est activée]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
** valeur par défaut: `+default+`
-* [[option_fset.color.name_changed]] *fset.color.name_changed*
-** description: pass:none[couleur pour le nom si la valeur est changée]
+* [[option_weechat.color.chat_nick_offline_highlight]] *weechat.color.chat_nick_offline_highlight*
+** description: pass:none[couleur du texte pour un pseudo déconnecté avec highlight ; cette couleur est utilisée seulement si l'option weechat.look.color_nick_offline est activée]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+brown+`
+** valeur par défaut: `+default+`
-* [[option_fset.color.name_changed_selected]] *fset.color.name_changed_selected*
-** description: pass:none[couleur pour le nom si la valeur est changée sur la ligne sélectionnée]
+* [[option_weechat.color.chat_nick_offline_highlight_bg]] *weechat.color.chat_nick_offline_highlight_bg*
+** description: pass:none[couleur du fond pour un pseudo déconnecté avec highlight ; cette couleur est utilisée seulement si l'option weechat.look.color_nick_offline est activée]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+yellow+`
+** valeur par défaut: `+blue+`
-* [[option_fset.color.name_selected]] *fset.color.name_selected*
-** description: pass:none[couleur pour le nom sur la ligne sélectionnée]
+* [[option_weechat.color.chat_nick_other]] *weechat.color.chat_nick_other*
+** description: pass:none[couleur du texte pour l'autre pseudo dans le tampon privée]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+white+`
+** valeur par défaut: `+cyan+`
-* [[option_fset.color.option]] *fset.color.option*
-** description: pass:none[couleur pour l'option]
+* [[option_weechat.color.chat_nick_prefix]] *weechat.color.chat_nick_prefix*
+** description: pass:none[couleur pour le préfixe du pseudo (chaîne affichée avant le pseudo dans le préfixe)]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+default+`
+** valeur par défaut: `+green+`
-* [[option_fset.color.option_changed]] *fset.color.option_changed*
-** description: pass:none[couleur pour l'option si la valeur est changée]
+* [[option_weechat.color.chat_nick_self]] *weechat.color.chat_nick_self*
+** description: pass:none[couleur du texte pour le pseudo local dans la fenêtre de discussion]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+brown+`
+** valeur par défaut: `+white+`
-* [[option_fset.color.option_changed_selected]] *fset.color.option_changed_selected*
-** description: pass:none[couleur de l'option si la valeur est changée sur la ligne sélectionnée]
+* [[option_weechat.color.chat_nick_suffix]] *weechat.color.chat_nick_suffix*
+** description: pass:none[couleur pour le suffixe du pseudo (chaîne affichée après le pseudo dans le préfixe)]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+yellow+`
+** valeur par défaut: `+green+`
-* [[option_fset.color.option_selected]] *fset.color.option_selected*
-** description: pass:none[couleur pour l'option sur la ligne sélectionnée]
+* [[option_weechat.color.chat_prefix_action]] *weechat.color.chat_prefix_action*
+** description: pass:none[couleur du texte pour le préfixe d'action]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
** valeur par défaut: `+white+`
-* [[option_fset.color.parent_name]] *fset.color.parent_name*
-** description: pass:none[couleur pour le nom de l'option parente]
+* [[option_weechat.color.chat_prefix_buffer]] *weechat.color.chat_prefix_buffer*
+** description: pass:none[couleur du texte pour le nom du tampon (avant le préfixe, quand plusieurs tampons sont mélangés avec le même numéro)]
+** type: couleur
+** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
+** valeur par défaut: `+brown+`
+
+* [[option_weechat.color.chat_prefix_buffer_inactive_buffer]] *weechat.color.chat_prefix_buffer_inactive_buffer*
+** description: pass:none[couleur du texte pour le nom du tampon inactif (avant le préfixe, quand plusieurs tampons sont mélangés avec le même numéro et si le tampon n'est pas sélectionné)]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
** valeur par défaut: `+default+`
-* [[option_fset.color.parent_name_selected]] *fset.color.parent_name_selected*
-** description: pass:none[couleur pour le nom de l'option parente sur la ligne sélectionnée]
+* [[option_weechat.color.chat_prefix_error]] *weechat.color.chat_prefix_error*
+** description: pass:none[couleur du texte pour le préfixe d'erreur]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+white+`
+** valeur par défaut: `+yellow+`
-* [[option_fset.color.parent_value]] *fset.color.parent_value*
-** description: pass:none[couleur pour la valeur de l'option parente]
+* [[option_weechat.color.chat_prefix_join]] *weechat.color.chat_prefix_join*
+** description: pass:none[couleur du texte pour le préfixe d'arrivée]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+cyan+`
+** valeur par défaut: `+lightgreen+`
-* [[option_fset.color.parent_value_selected]] *fset.color.parent_value_selected*
-** description: pass:none[couleur pour la valeur de l'option parente sur la ligne sélectionnée]
+* [[option_weechat.color.chat_prefix_more]] *weechat.color.chat_prefix_more*
+** description: pass:none[couleur du texte pour les "+" lorsque le préfixe est trop long]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+lightcyan+`
+** valeur par défaut: `+lightmagenta+`
-* [[option_fset.color.quotes]] *fset.color.quotes*
-** description: pass:none[couleur pour les guillemets autour des valeurs de type chaîne]
+* [[option_weechat.color.chat_prefix_network]] *weechat.color.chat_prefix_network*
+** description: pass:none[couleur du texte pour le préfixe réseau]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+darkgray+`
+** valeur par défaut: `+magenta+`
-* [[option_fset.color.quotes_changed]] *fset.color.quotes_changed*
-** description: pass:none[couleur pour les guillemets autour des valeurs de chaîne qui sont changées]
+* [[option_weechat.color.chat_prefix_quit]] *weechat.color.chat_prefix_quit*
+** description: pass:none[couleur du texte pour le préfixe de départ]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+default+`
+** valeur par défaut: `+lightred+`
-* [[option_fset.color.quotes_changed_selected]] *fset.color.quotes_changed_selected*
-** description: pass:none[couleur des guillemets autour des valeurs de chaîne qui sont changées sur la ligne sélectionnée]
+* [[option_weechat.color.chat_prefix_suffix]] *weechat.color.chat_prefix_suffix*
+** description: pass:none[couleur du texte pour le suffixe (après le préfixe)]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+white+`
+** valeur par défaut: `+green+`
-* [[option_fset.color.quotes_selected]] *fset.color.quotes_selected*
-** description: pass:none[couleur pour les guillemets autour des valeurs de chaîne sur la ligne sélectionnée]
+* [[option_weechat.color.chat_read_marker]] *weechat.color.chat_read_marker*
+** description: pass:none[couleur du texte pour le marqueur de lecture]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+default+`
+** valeur par défaut: `+magenta+`
-* [[option_fset.color.section]] *fset.color.section*
-** description: pass:none[couleur pour la section]
+* [[option_weechat.color.chat_read_marker_bg]] *weechat.color.chat_read_marker_bg*
+** description: pass:none[couleur du fond pour le marqueur de lecture]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
** valeur par défaut: `+default+`
-* [[option_fset.color.section_changed]] *fset.color.section_changed*
-** description: pass:none[couleur pour la section si la valeur est changée]
+* [[option_weechat.color.chat_server]] *weechat.color.chat_server*
+** description: pass:none[couleur du texte pour le nom des serveurs]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
** valeur par défaut: `+brown+`
-* [[option_fset.color.section_changed_selected]] *fset.color.section_changed_selected*
-** description: pass:none[couleur pour la section si la valeur est changée sur la ligne sélectionnée]
+* [[option_weechat.color.chat_tags]] *weechat.color.chat_tags*
+** description: pass:none[couleur du texte pour les étiquettes après les messages (affichées avec la commande /debug tags)]
+** type: couleur
+** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
+** valeur par défaut: `+red+`
+
+* [[option_weechat.color.chat_text_found]] *weechat.color.chat_text_found*
+** description: pass:none[couleur du texte pour le marqueur sur les lignes où le texte demandé est trouvé]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
** valeur par défaut: `+yellow+`
-* [[option_fset.color.section_selected]] *fset.color.section_selected*
-** description: pass:none[couleur pour la section sur la ligne sélectionnée]
+* [[option_weechat.color.chat_text_found_bg]] *weechat.color.chat_text_found_bg*
+** description: pass:none[couleur du fond pour le marqueur sur les lignes où le texte demandé est trouvé]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+white+`
+** valeur par défaut: `+lightmagenta+`
-* [[option_fset.color.string_values]] *fset.color.string_values*
-** description: pass:none[couleur pour les valeurs de chaîne]
+* [[option_weechat.color.chat_time]] *weechat.color.chat_time*
+** description: pass:none[couleur du texte pour l'heure dans la fenêtre de discussion]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
** valeur par défaut: `+default+`
-* [[option_fset.color.string_values_selected]] *fset.color.string_values_selected*
-** description: pass:none[couleur pour les valeurs de chaîne sur la ligne sélectionnée]
+* [[option_weechat.color.chat_time_delimiters]] *weechat.color.chat_time_delimiters*
+** description: pass:none[couleur du texte pour les délimiteurs de l'heure]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+white+`
+** valeur par défaut: `+brown+`
-* [[option_fset.color.title_count_options]] *fset.color.title_count_options*
-** description: pass:none[couleur pour le nombre d'options trouvées avec le filtre courant dans le titre du tampon]
+* [[option_weechat.color.chat_value]] *weechat.color.chat_value*
+** description: pass:none[couleur du texte pour les valeurs]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
** valeur par défaut: `+cyan+`
-* [[option_fset.color.title_current_option]] *fset.color.title_current_option*
-** description: pass:none[couleur pour le numéro de l'option courante dans le titre du tampon]
+* [[option_weechat.color.chat_value_null]] *weechat.color.chat_value_null*
+** description: pass:none[couleur du texte pour les valeurs "null" (non définies)]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+lightcyan+`
+** valeur par défaut: `+blue+`
-* [[option_fset.color.title_filter]] *fset.color.title_filter*
-** description: pass:none[couleur pour le filtre dans le titre du tampon]
+* [[option_weechat.color.emphasized]] *weechat.color.emphasized*
+** description: pass:none[couleur du texte pour le texte mis en valeur (par exemple lors de la recherche de texte) ; cette option est utilisée seulement si l'option weechat.look.emphasized_attributes est une chaîne vide (valeur par défaut)]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
** valeur par défaut: `+yellow+`
-* [[option_fset.color.title_marked_options]] *fset.color.title_marked_options*
-** description: pass:none[couleur pour le nombre d'option marquées dans le titre du tampon]
+* [[option_weechat.color.emphasized_bg]] *weechat.color.emphasized_bg*
+** description: pass:none[couleur du fond pour le texte mis en valeur (par exemple lors de la recherche de texte) ; cette option est utilisée seulement si l'option weechat.look.emphasized_attributes est une chaîne vide (valeur par défaut)]
+** type: couleur
+** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
+** valeur par défaut: `+magenta+`
+
+* [[option_weechat.color.input_actions]] *weechat.color.input_actions*
+** description: pass:none[couleur du texte pour les actions dans la ligne de saisie]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
** valeur par défaut: `+lightgreen+`
-* [[option_fset.color.title_sort]] *fset.color.title_sort*
-** description: pass:none[couleur pour le tri dans le titre du tampon]
+* [[option_weechat.color.input_text_not_found]] *weechat.color.input_text_not_found*
+** description: pass:none[couleur du texte pour la recherche infructueuse de texte dans la ligne de saisie]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+white+`
+** valeur par défaut: `+red+`
-* [[option_fset.color.type]] *fset.color.type*
-** description: pass:none[couleur pour le type]
+* [[option_weechat.color.item_away]] *weechat.color.item_away*
+** description: pass:none[couleur du texte pour l'objet away]
+** type: couleur
+** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
+** valeur par défaut: `+yellow+`
+
+* [[option_weechat.color.nicklist_away]] *weechat.color.nicklist_away*
+** description: pass:none[couleur du texte pour les pseudos absents]
+** type: couleur
+** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
+** valeur par défaut: `+cyan+`
+
+* [[option_weechat.color.nicklist_group]] *weechat.color.nicklist_group*
+** description: pass:none[couleur du texte pour les groupes dans la liste des pseudos]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
** valeur par défaut: `+green+`
-* [[option_fset.color.type_selected]] *fset.color.type_selected*
-** description: pass:none[couleur pour le type sur la ligne sélectionnée]
+* [[option_weechat.color.separator]] *weechat.color.separator*
+** description: pass:none[couleur pour les séparateurs de fenêtres (quand divisé) et les séparateurs à côté des barres (comme la liste de pseudos)]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+lightgreen+`
+** valeur par défaut: `+blue+`
-* [[option_fset.color.unmarked]] *fset.color.unmarked*
-** description: pass:none[couleur pour l'indicateur de marquage lorsque l'option n'est pas marquée]
+* [[option_weechat.color.status_count_highlight]] *weechat.color.status_count_highlight*
+** description: pass:none[couleur du texte pour le nombre de highlights dans la hotlist (barre de statut)]
+** type: couleur
+** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
+** valeur par défaut: `+magenta+`
+
+* [[option_weechat.color.status_count_msg]] *weechat.color.status_count_msg*
+** description: pass:none[couleur du texte pour le nombre de messages dans la hotlist (barre de statut)]
+** type: couleur
+** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
+** valeur par défaut: `+brown+`
+
+* [[option_weechat.color.status_count_other]] *weechat.color.status_count_other*
+** description: pass:none[couleur du texte pour le nombre d'autres messages dans la hotlist (barre de statut)]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
** valeur par défaut: `+default+`
-* [[option_fset.color.unmarked_selected]] *fset.color.unmarked_selected*
-** description: pass:none[couleur pour l'indicateur de marquage lorsque l'option n'est pas marquée sur la ligne sélectionnée]
+* [[option_weechat.color.status_count_private]] *weechat.color.status_count_private*
+** description: pass:none[couleur du texte pour le nombre de messages privés dans la hotlist (barre de statut)]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+white+`
+** valeur par défaut: `+green+`
-* [[option_fset.color.value]] *fset.color.value*
-** description: pass:none[couleur pour la valeur]
+* [[option_weechat.color.status_data_highlight]] *weechat.color.status_data_highlight*
+** description: pass:none[couleur du texte pour un tampon avec un highlight (barre de statut)]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+cyan+`
+** valeur par défaut: `+lightmagenta+`
-* [[option_fset.color.value_changed]] *fset.color.value_changed*
-** description: pass:none[couleur pour une valeur changée (différente de la valeur par défaut)]
+* [[option_weechat.color.status_data_msg]] *weechat.color.status_data_msg*
+** description: pass:none[couleur du texte pour un tampon avec de nouveaux messages (barre de statut)]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+brown+`
+** valeur par défaut: `+yellow+`
-* [[option_fset.color.value_changed_selected]] *fset.color.value_changed_selected*
-** description: pass:none[couleur pour la valeur changée (différente de la valeur par défaut) sur la ligne sélectionnée]
+* [[option_weechat.color.status_data_other]] *weechat.color.status_data_other*
+** description: pass:none[couleur du texte pour un tampon avec des nouvelles données (pas des messages) (barre de statut)]
+** type: couleur
+** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
+** valeur par défaut: `+default+`
+
+* [[option_weechat.color.status_data_private]] *weechat.color.status_data_private*
+** description: pass:none[couleur du texte pour un tampon avec un message privé (barre de statut)]
+** type: couleur
+** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
+** valeur par défaut: `+lightgreen+`
+
+* [[option_weechat.color.status_filter]] *weechat.color.status_filter*
+** description: pass:none[couleur du texte pour l'indicateur de filtrage dans la barre de statut]
+** type: couleur
+** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
+** valeur par défaut: `+green+`
+
+* [[option_weechat.color.status_more]] *weechat.color.status_more*
+** description: pass:none[couleur du texte pour un tampon avec des nouvelles données (barre de statut)]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
** valeur par défaut: `+yellow+`
-* [[option_fset.color.value_selected]] *fset.color.value_selected*
-** description: pass:none[couleur pour la valeur sur la ligne sélectionnée]
+* [[option_weechat.color.status_mouse]] *weechat.color.status_mouse*
+** description: pass:none[couleur du texte pour l'indicateur de la souris dans la barre de statut]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+lightcyan+`
+** valeur par défaut: `+green+`
-* [[option_fset.color.value_undef]] *fset.color.value_undef*
-** description: pass:none[couleur pour une valeur non définie]
+* [[option_weechat.color.status_name]] *weechat.color.status_name*
+** description: pass:none[couleur du texte pour le nom du tampon courant dans la barre de statut]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+magenta+`
+** valeur par défaut: `+white+`
-* [[option_fset.color.value_undef_selected]] *fset.color.value_undef_selected*
-** description: pass:none[couleur pour une valeur non définie sur la ligne sélectionnée]
+* [[option_weechat.color.status_name_ssl]] *weechat.color.status_name_ssl*
+** description: pass:none[couleur du texte pour le nom du tampon courant dans la barre de statut, si les données sont sécurisées avec un protocole tel que SSL]
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
-** valeur par défaut: `+lightmagenta+`
+** valeur par défaut: `+lightgreen+`
-* [[option_fset.format.export_help]] *fset.format.export_help*
-** description: pass:none[format pour l'aide sur l'option écrite avant chaque option dans le fichier exporté (note : le contenu est évalué, voir /help fset)]
+* [[option_weechat.color.status_nicklist_count]] *weechat.color.status_nicklist_count*
+** description: pass:none[couleur du texte pour le nombre de pseudos dans la liste de pseudos (barre de statut)]
+** type: couleur
+** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
+** valeur par défaut: `+default+`
+
+* [[option_weechat.color.status_number]] *weechat.color.status_number*
+** description: pass:none[couleur du texte pour le numéro du tampon courant dans la barre de statut]
+** type: couleur
+** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
+** valeur par défaut: `+yellow+`
+
+* [[option_weechat.color.status_time]] *weechat.color.status_time*
+** description: pass:none[couleur du texte pour l'heure (barre de statut)]
+** type: couleur
+** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
+** valeur par défaut: `+default+`
+
+* [[option_weechat.completion.base_word_until_cursor]] *weechat.completion.base_word_until_cursor*
+** description: pass:none[si activé, le mot de base pour la complétion s'arrête au caractère avant le curseur ; sinon le mot de base s'arrête au premier espace après le curseur]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+on+`
+
+* [[option_weechat.completion.command_inline]] *weechat.completion.command_inline*
+** description: pass:none[si activé, les commandes à l'intérieur de la ligne de commande sont complétées (la commande en début de ligne a une priorité plus élevée et est utilisée en premier) ; note : lorsque cette option est activée, il n'y a plus de complétion automatique des chemins commençant par "/" (en dehors des paramètres de commandes)]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+on+`
+
+* [[option_weechat.completion.default_template]] *weechat.completion.default_template*
+** description: pass:none[modèle de complétion par défaut (merci de consulter la documentation pour les codes et valeurs du modèle : Référence API extension, fonction "weechat_hook_command")]
** type: chaîne
** valeurs: toute chaîne
-** valeur par défaut: `+"# ${description2}"+`
+** valeur par défaut: `+"%(nicks)|%(irc_channels)"+`
-* [[option_fset.format.export_option]] *fset.format.export_option*
-** description: pass:none[format pour chaque option exportée dans un fichier (note : le contenu est évalué, voir /help fset)]
+* [[option_weechat.completion.nick_add_space]] *weechat.completion.nick_add_space*
+** description: pass:none[ajouter un espace après la complétion du pseudo (quand le pseudo n'est pas le premier mot sur la ligne de commande)]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+on+`
+
+* [[option_weechat.completion.nick_case_sensitive]] *weechat.completion.nick_case_sensitive*
+** description: pass:none[complétion sensible à la casse pour les pseudos]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+off+`
+
+* [[option_weechat.completion.nick_completer]] *weechat.completion.nick_completer*
+** description: pass:none[chaîne insérée après la complétion du pseudo (quand le pseudo est le premier mot sur la ligne de commande)]
** type: chaîne
** valeurs: toute chaîne
-** valeur par défaut: `+"/set ${name} ${quoted_value}"+`
+** valeur par défaut: `+": "+`
-* [[option_fset.format.export_option_null]] *fset.format.export_option_null*
-** description: pass:none[format pour chaque option avec la valeur "null" exportée dans un fichier (note : le contenu est évalué, voir /help fset)]
+* [[option_weechat.completion.nick_first_only]] *weechat.completion.nick_first_only*
+** description: pass:none[compléter seulement avec le premier pseudo trouvé]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+off+`
+
+* [[option_weechat.completion.nick_ignore_chars]] *weechat.completion.nick_ignore_chars*
+** description: pass:none[caractères à ignorer pour la complétion des pseudos]
** type: chaîne
** valeurs: toute chaîne
-** valeur par défaut: `+"/unset ${name}"+`
+** valeur par défaut: `+"[]`_-^"+`
-* [[option_fset.format.option1]] *fset.format.option1*
-** description: pass:none[premier format de chaque ligne, utilisé lorsque l'option fset.look.format_number est définie à 1 (note : le contenu est évalué, voir /help fset) ; un format vide utilise le format par défaut ("${marked} ${name} ${type} ${value2}"), qui se fait sans évaluation de chaîne et donc plus rapide ; les formats peuvent être changés avec la touche ctrl+X]
+* [[option_weechat.completion.partial_completion_alert]] *weechat.completion.partial_completion_alert*
+** description: pass:none[envoyer une alerte (BEL) lorsqu'une complétion partielle survient]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+on+`
+
+* [[option_weechat.completion.partial_completion_command]] *weechat.completion.partial_completion_command*
+** description: pass:none[complète partiellement les noms de commandes (stoppe quand plusieurs commandes trouvées commencent par les mêmes lettres)]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+off+`
+
+* [[option_weechat.completion.partial_completion_command_arg]] *weechat.completion.partial_completion_command_arg*
+** description: pass:none[complète partiellement les paramètres de commande (stoppe quand plusieurs paramètres trouvés commencent par les mêmes lettres)]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+off+`
+
+* [[option_weechat.completion.partial_completion_count]] *weechat.completion.partial_completion_count*
+** description: pass:none[afficher le compteur pour chaque complétion partielle dans l'objet de barre]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+on+`
+
+* [[option_weechat.completion.partial_completion_other]] *weechat.completion.partial_completion_other*
+** description: pass:none[complète partiellement en dehors des commandes (stoppe quand plusieurs mots trouvés commencent par les mêmes lettres)]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+off+`
+
+* [[option_weechat.completion.partial_completion_templates]] *weechat.completion.partial_completion_templates*
+** description: pass:none[liste de modèles de complétion séparés par des virgules pour lesquels la complétion partielle est activée par défaut (avec la touche Tab au lieu de shift-Tab) ; la liste des modèles est dans la documentation : Référence API extension, fonction "weechat_hook_command"]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+"config_options"+`
+
+* [[option_weechat.history.display_default]] *weechat.history.display_default*
+** description: pass:none[nombre maximum de commandes à afficher par défaut dans le listing d'historique (0 = sans limite)]
+** type: entier
+** valeurs: 0 .. 2147483647
+** valeur par défaut: `+5+`
+
+* [[option_weechat.history.max_buffer_lines_minutes]] *weechat.history.max_buffer_lines_minutes*
+** description: pass:none[nombre maximum de minutes dans l'historique par tampon (0 = sans limite) ; exemples : 1440 = une journée, 10080 = une semaine, 43200 = un mois, 525600 = une année ; utilisez 0 SEULEMENT si l'option weechat.history.max_buffer_lines_number n'est pas égale à 0]
+** type: entier
+** valeurs: 0 .. 2147483647
+** valeur par défaut: `+0+`
+
+* [[option_weechat.history.max_buffer_lines_number]] *weechat.history.max_buffer_lines_number*
+** description: pass:none[nombre maximum de lignes dans l'historique par tampon (0 = sans limite) ; utilisez 0 SEULEMENT si l'option weechat.history.max_buffer_lines_minutes n'est PAS égale à 0]
+** type: entier
+** valeurs: 0 .. 2147483647
+** valeur par défaut: `+4096+`
+
+* [[option_weechat.history.max_commands]] *weechat.history.max_commands*
+** description: pass:none[nombre maximum de commandes utilisateur dans l'historique (0 = sans limite, NON RECOMMANDÉ : pas de limite dans l'utilisation mémoire)]
+** type: entier
+** valeurs: 0 .. 2147483647
+** valeur par défaut: `+100+`
+
+* [[option_weechat.history.max_visited_buffers]] *weechat.history.max_visited_buffers*
+** description: pass:none[nombre maximum de tampons visités à garder en mémoire]
+** type: entier
+** valeurs: 0 .. 1000
+** valeur par défaut: `+50+`
+
+* [[option_weechat.look.align_end_of_lines]] *weechat.look.align_end_of_lines*
+** description: pass:none[alignement pour la fin des lignes (toutes les lignes après la première) : elles démarrent sous cette donnée (time, buffer, prefix, suffix, message (par défaut))]
+** type: entier
+** valeurs: time, buffer, prefix, suffix, message
+** valeur par défaut: `+message+`
+
+* [[option_weechat.look.align_multiline_words]] *weechat.look.align_multiline_words*
+** description: pass:none[alignement pour les mots sur plusieurs lignes selon l'option weechat.look.align_end_of_lines ; si désactivé, les mots sur plusieurs lignes ne seront pas alignés, ce qui peut être pratique pour ne pas casser les longs URLs]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+on+`
+
+* [[option_weechat.look.bar_more_down]] *weechat.look.bar_more_down*
+** description: pass:none[chaîne affichée quand la barre peut être défilée vers le bas (pour les barres avec un remplissage différent de "horizontal")]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+"++"+`
+
+* [[option_weechat.look.bar_more_left]] *weechat.look.bar_more_left*
+** description: pass:none[chaîne affichée quand la barre peut être défilée vers la gauche (pour les barres avec un remplissage "horizontal")]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+"<<"+`
+
+* [[option_weechat.look.bar_more_right]] *weechat.look.bar_more_right*
+** description: pass:none[chaîne affichée quand la barre peut être défilée vers la droite (pour les barres avec un remplissage "horizontal")]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+">>"+`
+
+* [[option_weechat.look.bar_more_up]] *weechat.look.bar_more_up*
+** description: pass:none[chaîne affichée quand la barre peut être défilée vers le haut (pour les barres avec un remplissage différent de "horizontal")]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+"--"+`
+
+* [[option_weechat.look.bare_display_exit_on_input]] *weechat.look.bare_display_exit_on_input*
+** description: pass:none[sortir du mode d'affichage dépouillé ("bare") sur tout changement dans la ligne de commande]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+on+`
+
+* [[option_weechat.look.bare_display_time_format]] *weechat.look.bare_display_time_format*
+** description: pass:none[format de date/heure dans l'affichage dépouillé ("bare") (voir man strftime pour le format de date/heure)]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+"%H:%M"+`
+
+* [[option_weechat.look.buffer_auto_renumber]] *weechat.look.buffer_auto_renumber*
+** description: pass:none[renuméroter automatiquement les tampons pour qu'ils aient des numéros consécutifs et démarrent au numéro 1 ; si désactivé, des trous entre les numéros de tampons sont autorisés et le premier tampon peut avoir un numéro supérieur à 1]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+on+`
+
+* [[option_weechat.look.buffer_notify_default]] *weechat.look.buffer_notify_default*
+** description: pass:none[niveau de notification par défaut pour les tampons (utilisé pour dire à WeeChat si le tampon doit être affiché dans la hotlist ou non, selon l'importance du message) : all=tous les messages (par défaut), message=messages+highlights, highlight=highlights seulement, none=ne jamais afficher dans la hotlist]
+** type: entier
+** valeurs: none, highlight, message, all
+** valeur par défaut: `+all+`
+
+* [[option_weechat.look.buffer_position]] *weechat.look.buffer_position*
+** description: pass:none[position d'un nouveau tampon : end = après la fin de la liste (numéro = dernier numéro + 1), first_gap = au premier numéro disponible dans la liste (après la fin de la liste si aucun numéro n'est disponible) ; cette option est utilisée seulement si le tampon n'a pas de numéro dans le "layout"]
+** type: entier
+** valeurs: end, first_gap
+** valeur par défaut: `+end+`
+
+* [[option_weechat.look.buffer_search_case_sensitive]] *weechat.look.buffer_search_case_sensitive*
+** description: pass:none[recherche par défaut dans le tampon : sensible à la casse ou non]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+off+`
+
+* [[option_weechat.look.buffer_search_force_default]] *weechat.look.buffer_search_force_default*
+** description: pass:none[forcer les valeurs par défaut pour la recherche de texte dans le tampon (au lieu d'utiliser les valeurs de la dernière recherche dans le tampon)]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+off+`
+
+* [[option_weechat.look.buffer_search_regex]] *weechat.look.buffer_search_regex*
+** description: pass:none[recherche par défaut dans le tampon : si activé, rechercher une expression régulière POSIX étendue, sinon rechercher du texte simple]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+off+`
+
+* [[option_weechat.look.buffer_search_where]] *weechat.look.buffer_search_where*
+** description: pass:none[recherche par défaut dans le tampon : dans le message, le préfixe, le préfixe et le message]
+** type: entier
+** valeurs: prefix, message, prefix_message
+** valeur par défaut: `+prefix_message+`
+
+* [[option_weechat.look.buffer_time_format]] *weechat.look.buffer_time_format*
+** description: pass:none[format de date/heure pour chaque ligne affichée dans les tampons (voir man strftime pour le format de date/heure) (note : le contenu est évalué, donc vous pouvez utiliser des couleurs avec le format "${color:xxx}", voir /help eval) ; par exemple l'heure avec des niveaux de gris (requiert le support de 256 couleurs) : "${color:252}%H${color:245}%M${color:240}%S"]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+"%H:%M:%S"+`
+
+* [[option_weechat.look.buffer_time_same]] *weechat.look.buffer_time_same*
+** description: pass:none[heure affichée pour un message avec la même heure que le message précédent ; utilisez un espace " " pour cacher l'heure, une autre chaîne pour l'afficher à la place de l'heure, ou une chaîne vide pour désactiver cette fonctionnalité (afficher l'heure) (note : le contenu est évalué, donc vous pouvez utiliser des couleurs avec le format "${color:xxx}", voir /help eval)]
** type: chaîne
** valeurs: toute chaîne
** valeur par défaut: `+""+`
-* [[option_fset.format.option2]] *fset.format.option2*
-** description: pass:none[second format de chaque ligne, utilisé lorsque l'option fset.look.format_number est définie à 2 (note : le contenu est évalué, voir /help fset) ; un format vide utilise le format par défaut ("${marked} ${name} ${type} ${value2}"), qui se fait sans évaluation de chaîne et donc plus rapide ; les formats peuvent être changés avec la touche ctrl+X]
+* [[option_weechat.look.chat_space_right]] *weechat.look.chat_space_right*
+** description: pass:none[garder un espace sur la droite de la zone de discussion s'il y a une barre affichée sur la droite (pour le texte et le marqueur de lecture)]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+off+`
+
+* [[option_weechat.look.color_basic_force_bold]] *weechat.look.color_basic_force_bold*
+** description: pass:none[forcer l'attribut "bold" (gras) pour les couleurs claires et "darkgray" dans les couleurs de base (cette option est désactivée par défaut : le gras est utilisé seulement si le terminal a moins de 16 couleurs)]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+off+`
+
+* [[option_weechat.look.color_inactive_buffer]] *weechat.look.color_inactive_buffer*
+** description: pass:none[utiliser une couleur différente pour les lignes dans un tampon inactif (si la ligne est d'un tampon mélangé et le tampon n'est pas sélectionné)]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+on+`
+
+* [[option_weechat.look.color_inactive_message]] *weechat.look.color_inactive_message*
+** description: pass:none[utiliser une couleur différente pour un message inactif (quand la fenêtre n'est pas la fenêtre courante, ou si la ligne est d'un tampon mélangé et le tampon n'est pas sélectionné)]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+on+`
+
+* [[option_weechat.look.color_inactive_prefix]] *weechat.look.color_inactive_prefix*
+** description: pass:none[utiliser une couleur différente pour le préfixe inactif (quand la fenêtre n'est pas la fenêtre courante, ou si la ligne est d'un tampon mélangé et le tampon n'est pas sélectionné)]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+on+`
+
+* [[option_weechat.look.color_inactive_prefix_buffer]] *weechat.look.color_inactive_prefix_buffer*
+** description: pass:none[utiliser une couleur différente pour le nom de tampon inactif dans le préfixe (quand la fenêtre n'est pas la fenêtre courante, ou si la ligne est d'un tampon mélangé et le tampon n'est pas sélectionné)]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+on+`
+
+* [[option_weechat.look.color_inactive_time]] *weechat.look.color_inactive_time*
+** description: pass:none[utiliser une couleur différente pour l'heure inactive (quand la fenêtre n'est pas la fenêtre courante, ou si la ligne est d'un tampon mélangé et le tampon n'est pas sélectionné)]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+off+`
+
+* [[option_weechat.look.color_inactive_window]] *weechat.look.color_inactive_window*
+** description: pass:none[utiliser une couleur différente pour les lignes dans une fenêtre inactive (quand la fenêtre n'est pas la fenêtre courante)]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+on+`
+
+* [[option_weechat.look.color_nick_offline]] *weechat.look.color_nick_offline*
+** description: pass:none[utiliser une couleur différente pour les pseudos déconnectés (qui ne sont plus dans la liste de pseudos)]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+off+`
+
+* [[option_weechat.look.color_pairs_auto_reset]] *weechat.look.color_pairs_auto_reset*
+** description: pass:none[réinitialisation automatique de la table des paires de couleurs quand le nombre de paires disponibles est inférieur ou égal à ce nombre (-1 = désactiver la réinitialisation automatique, et donc un "/color reset" manuel est nécessaire quand la table est pleine)]
+** type: entier
+** valeurs: -1 .. 256
+** valeur par défaut: `+5+`
+
+* [[option_weechat.look.color_real_white]] *weechat.look.color_real_white*
+** description: pass:none[si activé, utilise la vraie couleur blanche, désactivé par défaut pour les terminaux avec un fond blanc (si vous n'utilisez jamais de fond blanc, vous devriez activer cette option pour voir du vrai blanc au lieu de la couleur d'avant plan par défaut du terminal)]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+off+`
+
+* [[option_weechat.look.command_chars]] *weechat.look.command_chars*
+** description: pass:none[caractères utilisés pour déterminer si la chaîne entrée est une commande ou non : l'entrée doit démarrer avec un de ces caractères ; la barre oblique ("/") est toujours considérée comme un préfixe de commande (exemple : ".$")]
** type: chaîne
** valeurs: toute chaîne
-** valeur par défaut: `+"${marked} ${name} ${type} ${value2}${newline} ${empty_name} ${_default_value}${color:darkgray} -- ${min}..${max}${newline} ${empty_name} ${description}"+`
+** valeur par défaut: `+""+`
-* [[option_fset.look.auto_refresh]] *fset.look.auto_refresh*
-** description: pass:none[liste des options à rafraichir automatiquement sur le tampon fset (s'il est ouvert) ; "*" signifie toutes les options (recommandé), un nom commençant par "!" est une valeur négative pour empêcher une option d'être rafraichie, le caractère joker "*" est autorisé dans les noms (exemple : "*,!plugin.section.*")]
+* [[option_weechat.look.command_incomplete]] *weechat.look.command_incomplete*
+** description: pass:none[si activé, les commandes incomplètes et non ambiguës sont autorisées, par exemple /he pour /help]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+off+`
+
+* [[option_weechat.look.confirm_quit]] *weechat.look.confirm_quit*
+** description: pass:none[si activé, la commande /quit doit être confirmée par le paramètre supplémentaire "-yes" (voir /help quit)]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+off+`
+
+* [[option_weechat.look.confirm_upgrade]] *weechat.look.confirm_upgrade*
+** description: pass:none[si activé, la commande /upgrade doit être confirmée par le paramètre supplémentaire "-yes" (voir /help upgrade)]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+off+`
+
+* [[option_weechat.look.day_change]] *weechat.look.day_change*
+** description: pass:none[affiche un message quand le jour change]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+on+`
+
+* [[option_weechat.look.day_change_message_1date]] *weechat.look.day_change_message_1date*
+** description: pass:none[message affiché lorsque le jour a changé, avec une date affichée (par exemple au début d'un tampon) (voir man strftime pour le format de date/heure) (note : le contenu est évalué, donc vous pouvez utiliser des couleurs avec le format "${color:xxx}", voir /help eval)]
** type: chaîne
** valeurs: toute chaîne
-** valeur par défaut: `+"*"+`
+** valeur par défaut: `+"-- %a, %d %b %Y --"+`
-* [[option_fset.look.auto_unmark]] *fset.look.auto_unmark*
-** description: pass:none[démarquer automatiquement toutes les options après une action sur les options marquées ou après un rafraichissement]
+* [[option_weechat.look.day_change_message_2dates]] *weechat.look.day_change_message_2dates*
+** description: pass:none[message affiché lorsque le jour a changé, avec deux dates affichées (entre deux messages) ; les formats pour la seconde date doivent démarrer par deux "%" car strftime est appelé deux fois sur cette chaîne (voir man strftime pour le format de date/heure) (note : le contenu est évalué, donc vous pouvez utiliser des couleurs avec le format "${color:xxx}", voir /help eval)]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+"-- %%a, %%d %%b %%Y (%a, %d %b %Y) --"+`
+
+* [[option_weechat.look.eat_newline_glitch]] *weechat.look.eat_newline_glitch*
+** description: pass:none[si activé, le eat_newline_glitch sera positionné à 0 ; cela est utilisé pour ne pas ajouter de nouvelle ligne à la fin de chaque ligne, et donc ne pas couper le texte quand vous copiez/collez du texte depuis WeeChat vers une autre application (cette option est désactivée par défaut car elle peut causer de sérieux problèmes d'affichages)]
** type: booléen
** valeurs: on, off
** valeur par défaut: `+off+`
-* [[option_fset.look.condition_catch_set]] *fset.look.condition_catch_set*
-** description: pass:none[condition pour capturer la commande /set et afficher les résultats dans le tampon fset ; les variables suivantes peuvent être utilisées : ${name} (nom de l'option donné pour la commande /set), ${count} (nombre d'options trouvées avec le paramètre de /set) ; une chaîne vide désactive la capture de la commande /set ; avec la valeur "1", le tampon fset est toujours utilisé avec la commande /set]
+* [[option_weechat.look.emphasized_attributes]] *weechat.look.emphasized_attributes*
+** description: pass:none[attributs pour le texte mis en valeur : un ou plusieurs caractères d'attributs ("%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné) ; si la chaîne est vide, les couleurs weechat.color.emphasized* sont utilisées]
** type: chaîne
** valeurs: toute chaîne
-** valeur par défaut: `+"${count} >= 1"+`
+** valeur par défaut: `+""+`
-* [[option_fset.look.export_help_default]] *fset.look.export_help_default*
-** description: pass:none[afficher l'aide de chaque option exportée par défaut (cela peut être passé outre avec les paramètres "-help" et "-nohelp" pour la commande /fset -export)]
+* [[option_weechat.look.highlight]] *weechat.look.highlight*
+** description: pass:none[liste des mots pour la notification séparés par des virgules ; la comparaison est insensible à la casse (utilisez "(?-i)" au début des mots pour les rendre sensibles à la casse), les mots peuvent commencer ou se terminer par "*" pour une comparaison partielle ; exemple : "test,(?-i)*toto*,flash*"]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+""+`
+
+* [[option_weechat.look.highlight_disable_regex]] *weechat.look.highlight_disable_regex*
+** description: pass:none[expression régulière POSIX étendue utilisée pour empêcher un highlight sur un message : cette option a une priorité plus élevée sur les autres options de highlight (si la chaîne est trouvée dans le message, le highlight est désactivé et les autres options sont ignorées), l'expression régulière est insensible à la casse (utilisez "(?-i)" au début pour la rendre sensible à la casse), exemples : "<flash.*>", "(?-i)<Flash.*>"]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+""+`
+
+* [[option_weechat.look.highlight_regex]] *weechat.look.highlight_regex*
+** description: pass:none[expression régulière POSIX étendue utilisée pour vérifier si un message a un "highlight" ou non, au moins une correspondance dans la chaîne doit être entourée de délimiteurs (caractères différents de : alphanumérique, "-", "_" et "|"), l'expression régulière est insensible à la casse (utilisez "(?-i)" au début pour la rendre sensible à la casse), exemples : "flashcode|flashy", "(?-i)FlashCode|flashy"]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+""+`
+
+* [[option_weechat.look.highlight_tags]] *weechat.look.highlight_tags*
+** description: pass:none[liste des étiquettes pour le highlight (séparées par des virgules) ; la comparaison ne tient pas compte de la casse ; le caractère joker "*" est autorisé dans chaque étiquette ; plusieurs étiquettes peuvent être séparées par "+" pour faire un "et" logique entre les étiquettes ; exemples : "nick_flashcode" pour les messages du pseudo "FlashCode", "irc_notice+nick_toto*" pour les notices d'un pseudo commençant par "toto"]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+""+`
+
+* [[option_weechat.look.hotlist_add_conditions]] *weechat.look.hotlist_add_conditions*
+** description: pass:none[conditions pour ajouter un tampon dans la hotlist (si le niveau de notification est OK pour le tampon) ; vous pouvez utiliser dans ces conditions : \"window\" (pointeur de la fenêtre courante), \"buffer\" (pointeur du tampon à ajouter dans la hotlist), "priority" (0 = faible, 1 = message, 2 = privé, 3 = highlight) ; par défaut un tampon est ajouté dans la hotlist si vous êtes absent, ou si le tampon n'est pas visible à l'écran (pas affiché dans une fenêtre), ou si au moins un client relay est connecté via le protocole weechat]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+"${away} || ${buffer.num_displayed} == 0 || ${info:relay_client_count,weechat,connected} > 0"+`
+
+* [[option_weechat.look.hotlist_buffer_separator]] *weechat.look.hotlist_buffer_separator*
+** description: pass:none[chaîne affichée entre les tampons dans la hotlist]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+", "+`
+
+* [[option_weechat.look.hotlist_count_max]] *weechat.look.hotlist_count_max*
+** description: pass:none[nombre maximum de compteurs de messages à afficher dans la hotlist pour un tampon : 0 = ne jamais afficher les compteurs de messages, autre nombre = afficher un maximum de N compteurs de messages (de la plus haute à la plus basse priorité)]
+** type: entier
+** valeurs: 0 .. 4
+** valeur par défaut: `+2+`
+
+* [[option_weechat.look.hotlist_count_min_msg]] *weechat.look.hotlist_count_min_msg*
+** description: pass:none[afficher les compteurs de messages si le nombre de messages est supérieur ou égal à cette valeur]
+** type: entier
+** valeurs: 1 .. 100
+** valeur par défaut: `+2+`
+
+* [[option_weechat.look.hotlist_names_count]] *weechat.look.hotlist_names_count*
+** description: pass:none[nombre maximum de noms dans la liste d'activité (0 = pas de nom affiché, seulement les numéros de tampons)]
+** type: entier
+** valeurs: 0 .. 10000
+** valeur par défaut: `+3+`
+
+* [[option_weechat.look.hotlist_names_length]] *weechat.look.hotlist_names_length*
+** description: pass:none[nombre maximum des noms dans la liste d'activité (0 = pas de limite)]
+** type: entier
+** valeurs: 0 .. 32
+** valeur par défaut: `+0+`
+
+* [[option_weechat.look.hotlist_names_level]] *weechat.look.hotlist_names_level*
+** description: pass:none[niveau pour l'affichage des noms dans la liste d'activité (combinaison de : 1=join/part, 2=message, 4=privé, 8=highlight, par exemple : 12=privé+highlight)]
+** type: entier
+** valeurs: 1 .. 15
+** valeur par défaut: `+12+`
+
+* [[option_weechat.look.hotlist_names_merged_buffers]] *weechat.look.hotlist_names_merged_buffers*
+** description: pass:none[si défini, force l'affichage des noms dans la hotlist pour les tampons mélangés]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+off+`
+
+* [[option_weechat.look.hotlist_prefix]] *weechat.look.hotlist_prefix*
+** description: pass:none[chaîne affichée au début de la hotlist]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+"H: "+`
+
+* [[option_weechat.look.hotlist_remove]] *weechat.look.hotlist_remove*
+** description: pass:none[supprimer les tampons de la liste d'activité : buffer = supprimer tampon par tampon, merged = supprimer tous les tampons mélangés visibles d'un seul coup]
+** type: entier
+** valeurs: buffer, merged
+** valeur par défaut: `+merged+`
+
+* [[option_weechat.look.hotlist_short_names]] *weechat.look.hotlist_short_names*
+** description: pass:none[si défini, utilise des noms courts pour afficher les noms de tampons dans la hotlist (commence après le premier "." dans le nom)]
** type: booléen
** valeurs: on, off
** valeur par défaut: `+on+`
-* [[option_fset.look.format_number]] *fset.look.format_number*
-** description: pass:none[numéro du format utilisé pour afficher les options ; cela est dynamiquement changé par la touche ctrl-X sur le tampon fset]
+* [[option_weechat.look.hotlist_sort]] *weechat.look.hotlist_sort*
+** description: pass:none[type de tri pour la liste d'activité : group_time_* : grouper par niveau de notification (les highlights en premier) puis tri par date, group_number_* : grouper par niveau de notification (les highlights en premier) puis tri par numéro, number_* : tri par numéro ; asc = tri ascendant, desc = tri descendant]
** type: entier
-** valeurs: 1 .. 2
-** valeur par défaut: `+1+`
+** valeurs: group_time_asc, group_time_desc, group_number_asc, group_number_desc, number_asc, number_desc
+** valeur par défaut: `+group_time_asc+`
-* [[option_fset.look.marked_string]] *fset.look.marked_string*
-** description: pass:none[chaîne affichée lorsqu'une option est marquée (pour effectuer une action sur plusieurs options)]
+* [[option_weechat.look.hotlist_suffix]] *weechat.look.hotlist_suffix*
+** description: pass:none[chaîne affichée à la fin de la hotlist]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+""+`
+
+* [[option_weechat.look.hotlist_unique_numbers]] *weechat.look.hotlist_unique_numbers*
+** description: pass:none[garde seulement des numéros uniques dans la hotlist (cela s'applique seulement aux éléments de la hotlist où le nom n'est PAS affiché après le numéro)]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+on+`
+
+* [[option_weechat.look.hotlist_update_on_buffer_switch]] *weechat.look.hotlist_update_on_buffer_switch*
+** description: pass:none[mettre à jour la hotlist lors du changement de tampon]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+on+`
+
+* [[option_weechat.look.input_cursor_scroll]] *weechat.look.input_cursor_scroll*
+** description: pass:none[nombre de caractères affichés après la fin de la ligne de saisie lors d'un défilement pour afficher la fin de la ligne]
+** type: entier
+** valeurs: 0 .. 100
+** valeur par défaut: `+20+`
+
+* [[option_weechat.look.input_share]] *weechat.look.input_share*
+** description: pass:none[partage les commandes, le texte, ou les deux dans la zone de saisie pour tous les tampons (il y a toujours un historique local sur chaque tampon)]
+** type: entier
+** valeurs: none, commands, text, all
+** valeur par défaut: `+none+`
+
+* [[option_weechat.look.input_share_overwrite]] *weechat.look.input_share_overwrite*
+** description: pass:none[si défini et que la zone de saisie est partagée, écrase toujours la zone de saisie sur le tampon cible]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+off+`
+
+* [[option_weechat.look.input_undo_max]] *weechat.look.input_undo_max*
+** description: pass:none[nombre maximum de "undo" pour la ligne de commande, par tampon (0 = undo désactivé)]
+** type: entier
+** valeurs: 0 .. 65535
+** valeur par défaut: `+32+`
+
+* [[option_weechat.look.item_away_message]] *weechat.look.item_away_message*
+** description: pass:none[afficher le message d'absence du serveur dans l'objet de barre d'absence]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+on+`
+
+* [[option_weechat.look.item_buffer_filter]] *weechat.look.item_buffer_filter*
+** description: pass:none[chaîne utilisée pour montrer que des lignes sont filtrées dans le tampon courant (objet de barre "buffer_filter")]
** type: chaîne
** valeurs: toute chaîne
** valeur par défaut: `+"*"+`
-* [[option_fset.look.scroll_horizontal]] *fset.look.scroll_horizontal*
-** description: pass:none[défilement gauche/droite dans le tampon fset (pourcentage de la largeur)]
+* [[option_weechat.look.item_buffer_zoom]] *weechat.look.item_buffer_zoom*
+** description: pass:none[chaîne utilisée pour montrer le zoom sur un tampon mélangé (objet de barre "buffer_zoom")]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+"!"+`
+
+* [[option_weechat.look.item_mouse_status]] *weechat.look.item_mouse_status*
+** description: pass:none[chaîne utilisée pour montrer si la souris est activée (objet de barre "mouse_status")]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+"M"+`
+
+* [[option_weechat.look.item_time_format]] *weechat.look.item_time_format*
+** description: pass:none[format de date/heure pour l'objet de barre "time" (voir man strftime pour le format de date/heure) (note : le contenu est évalué, donc vous pouvez utiliser des couleurs avec le format "${color:xxx}", voir /help eval)]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+"%H:%M"+`
+
+* [[option_weechat.look.jump_current_to_previous_buffer]] *weechat.look.jump_current_to_previous_buffer*
+** description: pass:none[sauter au tampon affiché précédemment lors du saut vers le numéro de tampon courant avec /buffer *N (où N est un numéro de tampon), pour facilement basculer à un autre tampon, puis revenir au tampon courant]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+on+`
+
+* [[option_weechat.look.jump_previous_buffer_when_closing]] *weechat.look.jump_previous_buffer_when_closing*
+** description: pass:none[sauter au tampon précédemment visité lors de la fermeture d'un tampon (si désactivé, alors le saut se fait vers le numéro de tampon - 1)]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+on+`
+
+* [[option_weechat.look.jump_smart_back_to_buffer]] *weechat.look.jump_smart_back_to_buffer*
+** description: pass:none[retourner au tampon initial après avoir atteint la fin de la hotlist]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+on+`
+
+* [[option_weechat.look.key_bind_safe]] *weechat.look.key_bind_safe*
+** description: pass:none[autoriser seulement l'association de touches "sûres" (commençant par un code ctrl ou meta)]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+on+`
+
+* [[option_weechat.look.key_grab_delay]] *weechat.look.key_grab_delay*
+** description: pass:none[délai par défaut (en millisecondes) pour capturer une touche (en utilisant la touche par défaut alt-k) ; ce délai peut être remplacé dans la commande /input (voir /help input)]
** type: entier
-** valeurs: 1 .. 100
+** valeurs: 1 .. 10000
+** valeur par défaut: `+800+`
+
+* [[option_weechat.look.mouse]] *weechat.look.mouse*
+** description: pass:none[activer le support de la souris]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+off+`
+
+* [[option_weechat.look.mouse_timer_delay]] *weechat.look.mouse_timer_delay*
+** description: pass:none[délai (en millisecondes) pour capturer un évènement de la souris : WeeChat attendra ce délai avant de traiter l'évènement]
+** type: entier
+** valeurs: 1 .. 10000
+** valeur par défaut: `+100+`
+
+* [[option_weechat.look.nick_color_force]] *weechat.look.nick_color_force*
+** description: pass:none[force la couleur pour certains pseudos : le hash calculé avec le pseudo pour trouver la couleur ne sera pas utilisé pour ces pseudos (le format est : "pseudo1:couleur1;pseudo2:couleur2") ; la recherche de pseudos s'effectue avec la casse exacte puis en minuscules, donc il est possible d'utiliser uniquement des minuscules pour les pseudos dans cette option ; la couleur peut inclure le fond avec le format "texte,fond", par exemple "yellow,red"]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+""+`
+
+* [[option_weechat.look.nick_color_hash]] *weechat.look.nick_color_hash*
+** description: pass:none[algorithme de hash utilisé pour trouver la couleur du pseudo : djb2 = variante de djb2 (la position des lettres compte : les anagrammes d'un pseudo ont une couleur différente), sum = somme des lettres, djb2_32 = variante de djb2 en utilisant un entier sur 32 bits au lieu de 64 bits, sum_32 = somme des lettres en utilisant un entier sur 32 bits au lieu de 64 bits]
+** type: entier
+** valeurs: djb2, sum, djb2_32, sum_32
+** valeur par défaut: `+djb2+`
+
+* [[option_weechat.look.nick_color_hash_salt]] *weechat.look.nick_color_hash_salt*
+** description: pass:none[sel pour l'algorithme de hash utilisé pour trouver la couleur des pseudos (le pseudo est ajouté à ce sel et l'algorithme de hash opère sur cette chaîne) ; changer cette valeur permet de mélanger les couleurs des pseudos]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+""+`
+
+* [[option_weechat.look.nick_color_stop_chars]] *weechat.look.nick_color_stop_chars*
+** description: pass:none[caractères utilisés pour l'arrêt dans le pseudo lors du calcul de la couleur avec les lettres du pseudo (au moins un caractère en dehors de cette liste doit être dans la chaîne avant de s'arrêter) (exemple : le pseudo "|nick|away" avec "|" dans les caractères retournera la couleur du pseudo "|nick") ; cette option a un impact sur l'option weechat.look.nick_color_force, donc le pseudo pour la couleur forcée ne doit pas contenir les caractères ignorés par cette option]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+"_|["+`
+
+* [[option_weechat.look.nick_prefix]] *weechat.look.nick_prefix*
+** description: pass:none[texte à afficher avant le pseudo dans le préfixe, exemple : "<"]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+""+`
+
+* [[option_weechat.look.nick_suffix]] *weechat.look.nick_suffix*
+** description: pass:none[texte à afficher après le pseudo dans le préfixe, exemple : ">"]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+""+`
+
+* [[option_weechat.look.paste_auto_add_newline]] *weechat.look.paste_auto_add_newline*
+** description: pass:none[ajouter automatiquement une nouvelle ligne à la fin du texte collé s'il y a au moins deux lignes et si une confirmation est demandée]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+on+`
+
+* [[option_weechat.look.paste_bracketed]] *weechat.look.paste_bracketed*
+** description: pass:none[activer le mode du terminal "bracketed paste" (pas supporté par tous les terminaux/multiplexeurs) : dans ce mode, le texte collé est entouré avec des séquences de contrôle de sorte que WeeChat puisse différencier le texte collé du texte tapé ("ESC[200~", suivi par le texte collé, suivi par "ESC[201~")]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+on+`
+
+* [[option_weechat.look.paste_bracketed_timer_delay]] *weechat.look.paste_bracketed_timer_delay*
+** description: pass:none[forcer la fin du "bracketed paste" après ce délai (en secondes) si la séquence de contrôle pour la fin du "bracketed paste" ("ESC[201~") n'a pas été reçue à temps]
+** type: entier
+** valeurs: 1 .. 60
** valeur par défaut: `+10+`
-* [[option_fset.look.show_plugins_desc]] *fset.look.show_plugins_desc*
-** description: pass:none[afficher les options de description des extensions (plugins.desc.*)]
+* [[option_weechat.look.paste_max_lines]] *weechat.look.paste_max_lines*
+** description: pass:none[nombre maximum de lignes pour la détection de collage sans demander à l'utilisateur (-1 = désactiver cette fonctionnalité) ; cette option est utilisée seulement si l'objet de barre "input_paste" est utilisé dans au moins une barre (par défaut il est utilisé dans la barre "input")]
+** type: entier
+** valeurs: -1 .. 2147483647
+** valeur par défaut: `+1+`
+
+* [[option_weechat.look.prefix_action]] *weechat.look.prefix_action*
+** description: pass:none[préfixe pour les messages d'action (note : le contenu est évalué, donc vous pouvez utiliser des couleurs avec le format "${color:xxx}", voir /help eval)]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+" *"+`
+
+* [[option_weechat.look.prefix_align]] *weechat.look.prefix_align*
+** description: pass:none[alignement de préfixe (none, left, right (par défaut))]
+** type: entier
+** valeurs: none, left, right
+** valeur par défaut: `+right+`
+
+* [[option_weechat.look.prefix_align_max]] *weechat.look.prefix_align_max*
+** description: pass:none[taille maximum pour le préfixe (0 = pas de taille maximum)]
+** type: entier
+** valeurs: 0 .. 128
+** valeur par défaut: `+0+`
+
+* [[option_weechat.look.prefix_align_min]] *weechat.look.prefix_align_min*
+** description: pass:none[taille minimum pour le préfixe]
+** type: entier
+** valeurs: 0 .. 128
+** valeur par défaut: `+0+`
+
+* [[option_weechat.look.prefix_align_more]] *weechat.look.prefix_align_more*
+** description: pass:none[caractère à afficher si le préfixe est tronqué (doit être exactement un caractère à l'écran)]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+"+"+`
+
+* [[option_weechat.look.prefix_align_more_after]] *weechat.look.prefix_align_more_after*
+** description: pass:none[afficher le caractère de troncature (par défaut "+") après le texte (en remplaçant l'espace qui devrait être affiché ici) ; si désactivé, le caractère de troncature remplace le dernier caractère du texte]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+on+`
+
+* [[option_weechat.look.prefix_buffer_align]] *weechat.look.prefix_buffer_align*
+** description: pass:none[alignement de préfixe pour le nom du tampon, quand plusieurs tampons sont mélangés avec le même numéro (none, left, right (par défaut))]
+** type: entier
+** valeurs: none, left, right
+** valeur par défaut: `+right+`
+
+* [[option_weechat.look.prefix_buffer_align_max]] *weechat.look.prefix_buffer_align_max*
+** description: pass:none[taille maximum pour le nom du tampon, quand plusieurs tampons sont mélangés avec le même numéro (0 = pas de taille maximum)]
+** type: entier
+** valeurs: 0 .. 128
+** valeur par défaut: `+0+`
+
+* [[option_weechat.look.prefix_buffer_align_more]] *weechat.look.prefix_buffer_align_more*
+** description: pass:none[caractère à afficher si le nom du tampon est tronqué (lorsque plusieurs tampons sont mélangés avec le même numéro) (doit être exactement un caractère à l'écran)]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+"+"+`
+
+* [[option_weechat.look.prefix_buffer_align_more_after]] *weechat.look.prefix_buffer_align_more_after*
+** description: pass:none[afficher le caractère de troncature (par défaut "+") après le texte (en remplaçant l'espace qui devrait être affiché ici) ; si désactivé, le caractère de troncature remplace le dernier caractère du texte]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+on+`
+
+* [[option_weechat.look.prefix_error]] *weechat.look.prefix_error*
+** description: pass:none[préfixe pour les messages d'erreur (note : le contenu est évalué, donc vous pouvez utiliser des couleurs avec le format "${color:xxx}", voir /help eval)]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+"=!="+`
+
+* [[option_weechat.look.prefix_join]] *weechat.look.prefix_join*
+** description: pass:none[préfixe pour les messages d'arrivée (note : le contenu est évalué, donc vous pouvez utiliser des couleurs avec le format "${color:xxx}", voir /help eval)]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+"-->"+`
+
+* [[option_weechat.look.prefix_network]] *weechat.look.prefix_network*
+** description: pass:none[préfixe pour les messages réseau (note : le contenu est évalué, donc vous pouvez utiliser des couleurs avec le format "${color:xxx}", voir /help eval)]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+"--"+`
+
+* [[option_weechat.look.prefix_quit]] *weechat.look.prefix_quit*
+** description: pass:none[préfixe pour les messages de départ (note : le contenu est évalué, donc vous pouvez utiliser des couleurs avec le format "${color:xxx}", voir /help eval)]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+"<--"+`
+
+* [[option_weechat.look.prefix_same_nick]] *weechat.look.prefix_same_nick*
+** description: pass:none[préfixe affiché pour un message avec le même pseudo que le précédent message mais pas le message suivant : utiliser un espace " " pour cacher le préfixe, une autre chaîne pour l'afficher à la place du préfixe, ou une chaîne vide pour désactiver cette fonctionnalité (afficher le préfixe)]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+""+`
+
+* [[option_weechat.look.prefix_same_nick_middle]] *weechat.look.prefix_same_nick_middle*
+** description: pass:none[préfixe affiché pour un message avec le même pseudo que le précédent message et le message suivant : utiliser un espace " " pour cacher le préfixe, une autre chaîne pour l'afficher à la place du préfixe, ou une chaîne vide pour désactiver cette fonctionnalité (afficher le préfixe)]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+""+`
+
+* [[option_weechat.look.prefix_suffix]] *weechat.look.prefix_suffix*
+** description: pass:none[chaîne affichée après le préfixe]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+"|"+`
+
+* [[option_weechat.look.quote_nick_prefix]] *weechat.look.quote_nick_prefix*
+** description: pass:none[texte à afficher avant le pseudo dans la citation d'un message (voir /help cursor)]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+"<"+`
+
+* [[option_weechat.look.quote_nick_suffix]] *weechat.look.quote_nick_suffix*
+** description: pass:none[texte à afficher après le pseudo dans la citation d'un message (voir /help cursor)]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+">"+`
+
+* [[option_weechat.look.quote_time_format]] *weechat.look.quote_time_format*
+** description: pass:none[format de date/heure dans la citation d'un message (voir /help cursor)]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+"%H:%M:%S"+`
+
+* [[option_weechat.look.read_marker]] *weechat.look.read_marker*
+** description: pass:none[utiliser un marqueur (ligne ou caractère) sur les tampons pour montrer la première ligne non lue]
+** type: entier
+** valeurs: none, line, char
+** valeur par défaut: `+line+`
+
+* [[option_weechat.look.read_marker_always_show]] *weechat.look.read_marker_always_show*
+** description: pass:none[toujours afficher le marqueur de lecture, même s'il est après la dernière ligne du tampon]
** type: booléen
** valeurs: on, off
** valeur par défaut: `+off+`
-* [[option_fset.look.sort]] *fset.look.sort*
-** description: pass:none[liste de champs séparés par des virgules pour trier les options (voir /help fset pour la liste des champs) ; le caractère "-" peut être utilisé pour inverser l'ordre, le caractère "~" peut être utilisé pour effectuer une comparaison insensible à la casse ; exemple : "-~name" pour un tri inverse insensible à la casse sur le nom de l'option]
+* [[option_weechat.look.read_marker_string]] *weechat.look.read_marker_string*
+** description: pass:none[chaîne utilisée pour tracer la ligne du marqueur de lecture (la chaîne est répétée jusqu'à la fin de la ligne)]
** type: chaîne
** valeurs: toute chaîne
-** valeur par défaut: `+"~name"+`
+** valeur par défaut: `+"- "+`
-* [[option_fset.look.unmarked_string]] *fset.look.unmarked_string*
-** description: pass:none[chaîne affichée lorsqu'un option n'est pas marquée]
+* [[option_weechat.look.read_marker_update_on_buffer_switch]] *weechat.look.read_marker_update_on_buffer_switch*
+** description: pass:none[mettre à jour le marqueur de lecture lors du changement de tampon]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+on+`
+
+* [[option_weechat.look.save_config_on_exit]] *weechat.look.save_config_on_exit*
+** description: pass:none[sauvegarder la configuration en quittant]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+on+`
+
+* [[option_weechat.look.save_config_with_fsync]] *weechat.look.save_config_with_fsync*
+** description: pass:none[utiliser fsync pour synchroniser le fichier de configuration avec le périphérique de stockage (voir man fsync) ; cela est plus lent mais devrait éviter toute perte de données en cas de panne de courant durant la sauvegarde du fichier de configuration]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+off+`
+
+* [[option_weechat.look.save_layout_on_exit]] *weechat.look.save_layout_on_exit*
+** description: pass:none[sauvegarder la disposition en quittant (tampons, fenêtres, ou les deux)]
+** type: entier
+** valeurs: none, buffers, windows, all
+** valeur par défaut: `+none+`
+
+* [[option_weechat.look.scroll_amount]] *weechat.look.scroll_amount*
+** description: pass:none[nombre de lignes pour le défilement avec scroll_up et scroll_down]
+** type: entier
+** valeurs: 1 .. 2147483647
+** valeur par défaut: `+3+`
+
+* [[option_weechat.look.scroll_bottom_after_switch]] *weechat.look.scroll_bottom_after_switch*
+** description: pass:none[faire défiler en bas de la fenêtre après un basculement vers un autre tampon (ne pas sauvegarder la position du défilement dans les fenêtres) ; le défilement n'est fait que pour les tampons avec contenu formaté (pas le contenu libre)]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+off+`
+
+* [[option_weechat.look.scroll_page_percent]] *weechat.look.scroll_page_percent*
+** description: pass:none[pourcentage de l'écran à faire défiler lors du défilement avec page précédente ou suivante (par exemple 100 signifie une page, 50 une demi-page)]
+** type: entier
+** valeurs: 1 .. 100
+** valeur par défaut: `+100+`
+
+* [[option_weechat.look.search_text_not_found_alert]] *weechat.look.search_text_not_found_alert*
+** description: pass:none[alerte l'utilisateur lorsque le texte cherché n'est pas trouvé dans le tampon]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+on+`
+
+* [[option_weechat.look.separator_horizontal]] *weechat.look.separator_horizontal*
+** description: pass:none[caractère utilisé pour tracer les séparateurs horizontaux autour des barres et fenêtres (une valeur vide tracera une vraie ligne avec ncurses, mais peut causer des problèmes d'affichage avec la sélection d'URL sous certains terminaux) ; la largeur à l'écran doit être exactement d'un caractère]
** type: chaîne
** valeurs: toute chaîne
-** valeur par défaut: `+" "+`
+** valeur par défaut: `+"-"+`
-* [[option_fset.look.use_color_value]] *fset.look.use_color_value*
-** description: pass:none[utiliser la couleur pour afficher la valeur des options de couleur]
+* [[option_weechat.look.separator_vertical]] *weechat.look.separator_vertical*
+** description: pass:none[caractère utilisé pour tracer les séparateurs verticaux autour des barres et fenêtres (une valeur vide tracera une vraie ligne avec ncurses) ; la largeur à l'écran doit être exactement d'un caractère]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+""+`
+
+* [[option_weechat.look.tab_width]] *weechat.look.tab_width*
+** description: pass:none[nombre d'espaces utilisés pour afficher les tabulations dans les messages]
+** type: entier
+** valeurs: 1 .. 64
+** valeur par défaut: `+1+`
+
+* [[option_weechat.look.time_format]] *weechat.look.time_format*
+** description: pass:none[format de date/heure pour les dates converties en chaînes et affichées dans les messages (voir man strftime pour le format de date/heure)]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+"%a, %d %b %Y %T"+`
+
+* [[option_weechat.look.window_auto_zoom]] *weechat.look.window_auto_zoom*
+** description: pass:none[zoomer automatiquement la fenêtre courante si le terminal devient trop petit pour afficher les fenêtres (utilisez alt-z pour dézoomer la fenêtre quand le terminal est suffisamment grand)]
** type: booléen
** valeurs: on, off
** valeur par défaut: `+off+`
-* [[option_fset.look.use_keys]] *fset.look.use_keys*
-** description: pass:none[utiliser les touches alt+X sur le tampon fset pour effectuer les actions sur les options ; si désactivé, seule l'entrée est autorisée]
+* [[option_weechat.look.window_separator_horizontal]] *weechat.look.window_separator_horizontal*
+** description: pass:none[afficher un séparateur horizontal entre les fenêtres]
** type: booléen
** valeurs: on, off
** valeur par défaut: `+on+`
-* [[option_fset.look.use_mute]] *fset.look.use_mute*
-** description: pass:none[utiliser la commande /mute pour définir les options]
+* [[option_weechat.look.window_separator_vertical]] *weechat.look.window_separator_vertical*
+** description: pass:none[afficher un séparateur vertical entre les fenêtres]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+on+`
+
+* [[option_weechat.look.window_title]] *weechat.look.window_title*
+** description: pass:none[titre pour la fenêtre (le terminal pour l'interface Curses), défini au démarrage ; une chaîne vide gardera le titre inchangé (note : le contenu est évalué, voir /help eval) ; exemple : "WeeChat ${info:version}"]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+""+`
+
+* [[option_weechat.look.word_chars_highlight]] *weechat.look.word_chars_highlight*
+** description: pass:none[liste de caractères (ou intervalle de caractères) séparés pas des virgules qui sont considérés comme faisant partie des mots pour les highlights ; chaque élément peut être un simple caractère, un intervalle de caractères (format : a-z), une classe de caractère large (par exemple "alnum", voir man wctype) ; un "!" avant un élément le rend négatif (c'est-à-dire le caractère ne fait PAS partie des mots) ; la valeur "*" correspond à n'importe quel caractère ; les caractères unicode sont autorisés avec le format \u1234, par exemple \u00A0 pour l'espace insécable (voir /help print pour les formats supportés)]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+"!\u00A0,-,_,|,alnum"+`
+
+* [[option_weechat.look.word_chars_input]] *weechat.look.word_chars_input*
+** description: pass:none[liste de caractères (ou intervalle de caractères) séparés pas des virgules qui sont considérés comme faisant partie des mots pour la ligne de commande ; chaque élément peut être un simple caractère, un intervalle de caractères (format : a-z), une classe de caractère large (par exemple "alnum", voir man wctype) ; un "!" avant un élément le rend négatif (c'est-à-dire le caractère ne fait PAS partie des mots) ; la valeur "*" correspond à n'importe quel caractère ; les caractères unicode sont autorisés avec le format \u1234, par exemple \u00A0 pour l'espace insécable (voir /help print pour les formats supportés)]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+"!\u00A0,-,_,|,alnum"+`
+
+* [[option_weechat.network.connection_timeout]] *weechat.network.connection_timeout*
+** description: pass:none[délai d'attente maximum (en secondes) pour la connexion à une machine distante (effectuée dans un processus fils)]
+** type: entier
+** valeurs: 1 .. 2147483647
+** valeur par défaut: `+60+`
+
+* [[option_weechat.network.gnutls_ca_system]] *weechat.network.gnutls_ca_system*
+** description: pass:none[charger les certificats des autorités de certification système au démarrage ; cela peut être désactivée pour économiser de la mémoire, seulement si vous n'utilisez pas du tout de connexions SSL]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+on+`
+
+* [[option_weechat.network.gnutls_ca_user]] *weechat.network.gnutls_ca_user*
+** description: pass:none[fichier(s) supplémentaire(s) avec des autorités de certification ; plusieurs fichiers doivent être séparés par ":" (chaque chemin est évalué, voir la fonction string_eval_path_home dans la référence API extension)]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+""+`
+
+* [[option_weechat.network.gnutls_handshake_timeout]] *weechat.network.gnutls_handshake_timeout*
+** description: pass:none[délai d'attente maximum (en secondes) pour la poignée de main (handshake) gnutls]
+** type: entier
+** valeurs: 1 .. 2147483647
+** valeur par défaut: `+30+`
+
+* [[option_weechat.network.proxy_curl]] *weechat.network.proxy_curl*
+** description: pass:none[nom du proxy utilisé pour télécharger les URLs avec Curl (utilisé pour télécharger la liste des scripts et dans les scripts appelant la fonction hook_process) ; le proxy doit être défini avec la commande /proxy]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+""+`
+
+* [[option_weechat.plugin.autoload]] *weechat.plugin.autoload*
+** description: pass:none[liste des extensions à charger automatiquement au démarrage (séparées par des virgules), "*" signifie toutes les extensions trouvées, un nom commençant par "!" est une valeur négative pour empêcher une extension d'être chargée, le caractère joker "*" est autorisé dans les noms (exemples : "*" ou "*,!lua,!tcl")]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+"*"+`
+
+* [[option_weechat.plugin.extension]] *weechat.plugin.extension*
+** description: pass:none[liste d'extensions de noms de fichiers pour les extensions (séparées par des virgules)]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+".so,.dll"+`
+
+* [[option_weechat.plugin.path]] *weechat.plugin.path*
+** description: pass:none[chemin de recherche des extensions (le chemin est évalué, voir la fonction string_eval_path_home dans la référence API extension)]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+"${weechat_data_dir}/plugins"+`
+
+* [[option_weechat.plugin.save_config_on_unload]] *weechat.plugin.save_config_on_unload*
+** description: pass:none[sauvegarder les fichiers de configuration lors du déchargement des extensions]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+on+`
+
+* [[option_weechat.signal.sighup]] *weechat.signal.sighup*
+** description: pass:none[commande à exécuter lorsque le signal est reçu, plusieurs commandes peuvent être séparées par des point-virgules (note : les commandes sont évaluées, voir /help eval)]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+"${if:${info:weechat_headless}?/reload:/quit -yes}"+`
+
+* [[option_weechat.signal.sigquit]] *weechat.signal.sigquit*
+** description: pass:none[commande à exécuter lorsque le signal est reçu, plusieurs commandes peuvent être séparées par des point-virgules (note : les commandes sont évaluées, voir /help eval)]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+"/quit -yes"+`
+
+* [[option_weechat.signal.sigterm]] *weechat.signal.sigterm*
+** description: pass:none[commande à exécuter lorsque le signal est reçu, plusieurs commandes peuvent être séparées par des point-virgules (note : les commandes sont évaluées, voir /help eval)]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+"/quit -yes"+`
+
+* [[option_weechat.signal.sigusr1]] *weechat.signal.sigusr1*
+** description: pass:none[commande à exécuter lorsque le signal est reçu, plusieurs commandes peuvent être séparées par des point-virgules (note : les commandes sont évaluées, voir /help eval)]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+""+`
+
+* [[option_weechat.signal.sigusr2]] *weechat.signal.sigusr2*
+** description: pass:none[commande à exécuter lorsque le signal est reçu, plusieurs commandes peuvent être séparées par des point-virgules (note : les commandes sont évaluées, voir /help eval)]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+""+`
+
+* [[option_weechat.startup.command_after_plugins]] *weechat.startup.command_after_plugins*
+** description: pass:none[commande exécutée quand WeeChat démarre, après le chargement des extensions ; plusieurs commandes peuvent être séparées par des point-virgules (note : les commandes sont évaluées, voir /help eval)]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+""+`
+
+* [[option_weechat.startup.command_before_plugins]] *weechat.startup.command_before_plugins*
+** description: pass:none[commande exécutée quand WeeChat démarre, avant le chargement des extensions ; plusieurs commandes peuvent être séparées par des point-virgules (note : les commandes sont évaluées, voir /help eval)]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+""+`
+
+* [[option_weechat.startup.display_logo]] *weechat.startup.display_logo*
+** description: pass:none[afficher le logo WeeChat au démarrage]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+on+`
+
+* [[option_weechat.startup.display_version]] *weechat.startup.display_version*
+** description: pass:none[afficher la version de WeeChat au démarrage]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+on+`
+
+* [[option_weechat.startup.sys_rlimit]] *weechat.startup.sys_rlimit*
+** description: pass:none[définir les limites de ressource pour le processus WeeChat, le format est : "res1:limite1,res2:limite2" ; le nom de ressource est la fin de la constante (RLIMIT_XXX) en minuscules (voir man setrlimit pour les valeurs) ; une limite de -1 signifie "illimitée" ; exemple : définir une taille illimitée pour le fichier core et max 1 Go de mémoire virtuelle : "core:-1,as:1000000000"]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+""+`
+// end::weechat_options[]
+
+// tag::xfer_options[]
+* [[option_xfer.color.status_aborted]] *xfer.color.status_aborted*
+** description: pass:none[couleur du texte pour le statut "interrompu"]
+** type: couleur
+** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
+** valeur par défaut: `+lightred+`
+
+* [[option_xfer.color.status_active]] *xfer.color.status_active*
+** description: pass:none[couleur du texte pour le statut "actif"]
+** type: couleur
+** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
+** valeur par défaut: `+lightblue+`
+
+* [[option_xfer.color.status_connecting]] *xfer.color.status_connecting*
+** description: pass:none[couleur du texte pour le statut "connexion"]
+** type: couleur
+** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
+** valeur par défaut: `+yellow+`
+
+* [[option_xfer.color.status_done]] *xfer.color.status_done*
+** description: pass:none[couleur du texte pour le statut "terminé"]
+** type: couleur
+** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
+** valeur par défaut: `+lightgreen+`
+
+* [[option_xfer.color.status_failed]] *xfer.color.status_failed*
+** description: pass:none[couleur du texte pour le statut "échoué"]
+** type: couleur
+** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
+** valeur par défaut: `+lightred+`
+
+* [[option_xfer.color.status_waiting]] *xfer.color.status_waiting*
+** description: pass:none[couleur du texte pour le statut "en attente"]
+** type: couleur
+** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
+** valeur par défaut: `+lightcyan+`
+
+* [[option_xfer.color.text]] *xfer.color.text*
+** description: pass:none[couleur du texte dans le tampon xfer]
+** type: couleur
+** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
+** valeur par défaut: `+default+`
+
+* [[option_xfer.color.text_bg]] *xfer.color.text_bg*
+** description: pass:none[couleur du fond dans le tampon xfer]
+** type: couleur
+** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
+** valeur par défaut: `+default+`
+
+* [[option_xfer.color.text_selected]] *xfer.color.text_selected*
+** description: pass:none[couleur du texte pour la ligne sélectionnée dans le tampon xfer]
+** type: couleur
+** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "%" pour le clignotement, "." pour "dim" (demi-intensité), "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné
+** valeur par défaut: `+white+`
+
+* [[option_xfer.file.auto_accept_chats]] *xfer.file.auto_accept_chats*
+** description: pass:none[accepte automatiquement les demandes de discussion (à utiliser avec précaution !)]
** type: booléen
** valeurs: on, off
** valeur par défaut: `+off+`
-// end::fset_options[]
+
+* [[option_xfer.file.auto_accept_files]] *xfer.file.auto_accept_files*
+** description: pass:none[accepte automatiquement les demandes d'envoi de fichiers (à utiliser avec précaution !)]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+off+`
+
+* [[option_xfer.file.auto_accept_nicks]] *xfer.file.auto_accept_nicks*
+** description: pass:none[liste de pseudos (séparés par des virgules) pour lesquels les demandes d'envoi de fichiers et de discussion sont automatiquement acceptées ; le format est "serveur.pseudo" (pour un serveur spécifique) ou "pseudo" (pour tous les serveurs) ; exemple : "libera.FlashCode,andrew"]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+""+`
+
+* [[option_xfer.file.auto_check_crc32]] *xfer.file.auto_check_crc32*
+** description: pass:none[vérifier automatiquement la somme de contrôle CRC32 du fichier si elle est trouvée dans le nom de fichier (8 caractères hexadécimaux)]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+off+`
+
+* [[option_xfer.file.auto_rename]] *xfer.file.auto_rename*
+** description: pass:none[renommer les fichiers reçus s'ils existent déjà (ajoute ".1", ".2", ...)]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+on+`
+
+* [[option_xfer.file.auto_resume]] *xfer.file.auto_resume*
+** description: pass:none[continuer automatiquement les transferts de fichiers si la connexion avec l'hôte a été perdue]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+on+`
+
+* [[option_xfer.file.convert_spaces]] *xfer.file.convert_spaces*
+** description: pass:none[convertir les espaces en underscores lors de l'envoi et la réception de fichiers]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+on+`
+
+* [[option_xfer.file.download_path]] *xfer.file.download_path*
+** description: pass:none[chemin où écrire les fichiers reçus (le chemin est évalué, voir la fonction string_eval_path_home dans la référence API extension)]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+"${weechat_data_dir}/xfer"+`
+
+* [[option_xfer.file.download_temporary_suffix]] *xfer.file.download_temporary_suffix*
+** description: pass:none[suffixe de fichier temporaire utilisé pendant le transfert pour un fichier reçu, il est supprimé après un transfert réussi ; si chaîne vide, aucun suffixe de fichier n'est utilisé pendant le transfert]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+".part"+`
+
+* [[option_xfer.file.upload_path]] *xfer.file.upload_path*
+** description: pass:none[chemin où lire les fichiers à envoyer (le chemin est évalué, voir la fonction string_eval_path_home dans la référence API extension)]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+"~"+`
+
+* [[option_xfer.file.use_nick_in_filename]] *xfer.file.use_nick_in_filename*
+** description: pass:none[utiliser le pseudo distant comme préfixe dans le nom de fichier local lors de la réception d'un fichier]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+on+`
+
+* [[option_xfer.look.auto_open_buffer]] *xfer.look.auto_open_buffer*
+** description: pass:none[ouvrir automatiquement le tampon xfer lorsqu'un nouveau xfer est ajouté à la liste]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+on+`
+
+* [[option_xfer.look.progress_bar_size]] *xfer.look.progress_bar_size*
+** description: pass:none[taille de la barre de progression, en caractères (si 0, la barre de progression est désactivée)]
+** type: entier
+** valeurs: 0 .. 256
+** valeur par défaut: `+20+`
+
+* [[option_xfer.look.pv_tags]] *xfer.look.pv_tags*
+** description: pass:none[liste des étiquettes (séparées par des virgules) utilisées dans les messages privés, par exemple : "notify_message", "notify_private" ou "notify_highlight"]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+"notify_private"+`
+
+* [[option_xfer.network.blocksize]] *xfer.network.blocksize*
+** description: pass:none[taille de bloc pour les paquets envoyés, en octets]
+** type: entier
+** valeurs: 1024 .. 102400
+** valeur par défaut: `+65536+`
+
+* [[option_xfer.network.fast_send]] *xfer.network.fast_send*
+** description: pass:none[n'attend pas les accusés de réception lors de l'envoi de fichier]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+on+`
+
+* [[option_xfer.network.own_ip]] *xfer.network.own_ip*
+** description: pass:none[adresse IP ou DNS utilisée pour envoyer les fichiers/discussions (si non renseigné, l'interface IP locale est utilisée)]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+""+`
+
+* [[option_xfer.network.port_range]] *xfer.network.port_range*
+** description: pass:none[restreint les fichiers/discussions sortants à utiliser des ports dans l'intervalle donné (pratique pour le NAT) (syntaxe : un port simple, par exemple 5000, un intervalle de ports, par exemple 5000-5015, si non renseigné tout port peut être utilisé, il est recommandé d'utiliser des ports supérieurs à 1024, car seul root peut utiliser les ports en dessous de 1024)]
+** type: chaîne
+** valeurs: toute chaîne
+** valeur par défaut: `+""+`
+
+* [[option_xfer.network.send_ack]] *xfer.network.send_ack*
+** description: pass:none[envoyer des acks lors de la réception de fichiers ; si désactivé, le transfert peut échouer si l'envoyeur attend des acks (par exemple un WeeChat qui envoie le fichier avec l'option xfer.network.fast_send à off) ; d'un autre côté, désactiver l'envoi des acks peut éviter un gel si les acks ne sont pas envoyés immédiatement à l'envoyeur]
+** type: booléen
+** valeurs: on, off
+** valeur par défaut: `+on+`
+
+* [[option_xfer.network.speed_limit_recv]] *xfer.network.speed_limit_recv*
+** description: pass:none[limitation de vitesse pour la réception de fichiers, en kilo-octets par seconde (0 signifie pas de limite)]
+** type: entier
+** valeurs: 0 .. 2147483647
+** valeur par défaut: `+0+`
+
+* [[option_xfer.network.speed_limit_send]] *xfer.network.speed_limit_send*
+** description: pass:none[limitation de vitesse pour l'envoi des fichiers, en kilo-octets par seconde (0 signifie pas de limite)]
+** type: entier
+** valeurs: 0 .. 2147483647
+** valeur par défaut: `+0+`
+
+* [[option_xfer.network.timeout]] *xfer.network.timeout*
+** description: pass:none[délai d'attente pour la requête xfer (en secondes)]
+** type: entier
+** valeurs: 5 .. 2147483647
+** valeur par défaut: `+300+`
+// end::xfer_options[]
diff --git a/doc/it/includes/autogen_user_commands.it.adoc b/doc/it/includes/autogen_user_commands.it.adoc
index 7a64ad907..ff06d0c63 100644
--- a/doc/it/includes/autogen_user_commands.it.adoc
+++ b/doc/it/includes/autogen_user_commands.it.adoc
@@ -1076,11 +1076,13 @@ target: reply should match this mask
add <alias> [<command>[;<command>...]]
addcompletion <completion> <alias> [<command>[;<command>...]]
del <alias> [<alias>...]
+ rename <alias> <new_alias>
list: list aliases (without argument, this list is displayed)
add: add an alias
addcompletion: add an alias with a custom completion
del: delete an alias
+ rename: rename an alias
completion: completion for alias: by default completion is done with target command
note: you can use %%command to use completion of an existing command
alias: name of alias
@@ -1101,6 +1103,8 @@ Examples:
/alias add split /window splith
alias /hello to say "hello" on all channels but not on #weechat:
/alias add hello /allchan -exclude=#weechat hello
+ rename alias "hello" to "Hello":
+ /alias rename hello Hello
alias /forcejoin to send IRC command "forcejoin" with completion of /sajoin:
/alias addcompletion %%sajoin forcejoin /quote forcejoin
----
diff --git a/doc/it/includes/autogen_user_default_aliases.it.adoc b/doc/it/includes/autogen_user_default_aliases.it.adoc
index 5e18080b5..930bcbb2b 100644
--- a/doc/it/includes/autogen_user_default_aliases.it.adoc
+++ b/doc/it/includes/autogen_user_default_aliases.it.adoc
@@ -8,37 +8,37 @@
|===
| Alias | Command | Completion
-| /AAWAY | /allserv /away | -
-| /ANICK | /allserv /nick | -
-| /BEEP | /print -beep | -
-| /BYE | /quit | -
-| /C | /buffer clear | -
-| /CL | /buffer clear | -
-| /CLOSE | /buffer close | -
-| /CHAT | /dcc chat | -
-| /EXIT | /quit | -
-| /IG | /ignore | -
-| /J | /join | -
-| /K | /kick | -
-| /KB | /kickban | -
-| /LEAVE | /part | -
-| /M | /msg | -
-| /MUB | /unban * | -
-| /MSGBUF | /command -buffer $1 * /input send $2- | %(buffers_plugins_names)
-| /N | /names | -
-| /Q | /query | -
-| /REDRAW | /window refresh | -
-| /SAY | /msg * | -
-| /SIGNOFF | /quit | -
-| /T | /topic | -
-| /UB | /unban | -
-| /UMODE | /mode $nick | -
-| /V | /command core version | -
-| /W | /who | -
-| /WC | /window close | -
-| /WI | /whois | -
-| /WII | /whois $1 $1 | -
-| /WM | /window merge | -
-| /WW | /whowas | -
+| /aaway | /allserv /away | -
+| /anick | /allserv /nick | -
+| /beep | /print -beep | -
+| /bye | /quit | -
+| /c | /buffer clear | -
+| /cl | /buffer clear | -
+| /close | /buffer close | -
+| /chat | /dcc chat | -
+| /exit | /quit | -
+| /ig | /ignore | -
+| /j | /join | -
+| /k | /kick | -
+| /kb | /kickban | -
+| /leave | /part | -
+| /m | /msg | -
+| /mub | /unban * | -
+| /msgbuf | /command -buffer $1 * /input send $2- | %(buffers_plugins_names)
+| /n | /names | -
+| /q | /query | -
+| /redraw | /window refresh | -
+| /say | /msg * | -
+| /signoff | /quit | -
+| /t | /topic | -
+| /ub | /unban | -
+| /umode | /mode $nick | -
+| /v | /command core version | -
+| /w | /who | -
+| /wc | /window close | -
+| /wi | /whois | -
+| /wii | /whois $1 $1 | -
+| /wm | /window merge | -
+| /ww | /whowas | -
|===
// end::default_aliases[]
diff --git a/doc/it/includes/autogen_user_options.it.adoc b/doc/it/includes/autogen_user_options.it.adoc
index 05fa02fa3..9c18de7ee 100644
--- a/doc/it/includes/autogen_user_options.it.adoc
+++ b/doc/it/includes/autogen_user_options.it.adoc
@@ -3,2109 +3,725 @@
// DO NOT EDIT BY HAND!
//
-// tag::sec_options[]
-* [[option_sec.crypt.cipher]] *sec.crypt.cipher*
-** descrizione: pass:none[cipher used to crypt data (the number after algorithm is the size of the key in bits)]
-** tipo: intero
-** valori: aes128, aes192, aes256
-** valore predefinito: `+aes256+`
+// tag::buflist_options[]
+* [[option_buflist.format.buffer]] *buflist.format.buffer*
+** descrizione: pass:none[format of each line with a buffer (note: content is evaluated, see /help buflist); example: standard format for bar item "buflist" and only the buffer number between square brackets for other bar items ("buflist2" and "buflist3"): "${if:${bar_item.name}==buflist?${format_number}${indent}${format_nick_prefix}${color_hotlist}${format_name}:[${number}\]}"]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+"${format_number}${indent}${format_nick_prefix}${color_hotlist}${format_name}"+`
-* [[option_sec.crypt.hash_algo]] *sec.crypt.hash_algo*
-** descrizione: pass:none[hash algorithm used to check the decrypted data]
-** tipo: intero
-** valori: sha224, sha256, sha384, sha512
-** valore predefinito: `+sha256+`
+* [[option_buflist.format.buffer_current]] *buflist.format.buffer_current*
+** descrizione: pass:none[format for the line with current buffer (note: content is evaluated, see /help buflist)]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+"${color:,blue}${format_buffer}"+`
-* [[option_sec.crypt.passphrase_command]] *sec.crypt.passphrase_command*
-** descrizione: pass:none[read the passphrase from the output of this system command (only the first line is used and it must not contain any extra character); this option is used only when reading file sec.conf and if the environment variable "WEECHAT_PASSPHRASE" is not set (the environment variable has higher priority); example with password-store: "/usr/bin/pass show weechat/passphrase"]
+* [[option_buflist.format.hotlist]] *buflist.format.hotlist*
+** descrizione: pass:none[format for hotlist (note: content is evaluated, see /help buflist)]
** tipo: stringa
** valori: qualsiasi stringa
-** valore predefinito: `+""+`
+** valore predefinito: `+" ${color:green}(${hotlist}${color:green})"+`
-* [[option_sec.crypt.salt]] *sec.crypt.salt*
-** descrizione: pass:none[use salt when generating key used in encryption (recommended for maximum security); when enabled, the content of crypted data in file sec.conf will be different on each write of the file; if you put the file sec.conf in a version control system, then you can turn off this option to have always same content in file]
+* [[option_buflist.format.hotlist_highlight]] *buflist.format.hotlist_highlight*
+** descrizione: pass:none[format for a buffer with hotlist level "highlight" (note: content is evaluated, see /help buflist)]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+"${color:magenta}"+`
+
+* [[option_buflist.format.hotlist_low]] *buflist.format.hotlist_low*
+** descrizione: pass:none[format for a buffer with hotlist level "low" (note: content is evaluated, see /help buflist)]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+"${color:white}"+`
+
+* [[option_buflist.format.hotlist_message]] *buflist.format.hotlist_message*
+** descrizione: pass:none[format for a buffer with hotlist level "message" (note: content is evaluated, see /help buflist)]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+"${color:brown}"+`
+
+* [[option_buflist.format.hotlist_none]] *buflist.format.hotlist_none*
+** descrizione: pass:none[format for a buffer not in hotlist (note: content is evaluated, see /help buflist)]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+"${color:default}"+`
+
+* [[option_buflist.format.hotlist_private]] *buflist.format.hotlist_private*
+** descrizione: pass:none[format for a buffer with hotlist level "private" (note: content is evaluated, see /help buflist)]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+"${color:green}"+`
+
+* [[option_buflist.format.hotlist_separator]] *buflist.format.hotlist_separator*
+** descrizione: pass:none[separator for counts in hotlist (note: content is evaluated, see /help buflist)]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+"${color:default},"+`
+
+* [[option_buflist.format.indent]] *buflist.format.indent*
+** descrizione: pass:none[string displayed to indent channel and private buffers (note: content is evaluated, see /help buflist)]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+" "+`
+
+* [[option_buflist.format.lag]] *buflist.format.lag*
+** descrizione: pass:none[format for lag on an IRC server buffer (note: content is evaluated, see /help buflist)]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+" ${color:green}[${color:brown}${lag}${color:green}]"+`
+
+* [[option_buflist.format.name]] *buflist.format.name*
+** descrizione: pass:none[format for buffer name (note: content is evaluated, see /help buflist)]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+"${name}"+`
+
+* [[option_buflist.format.nick_prefix]] *buflist.format.nick_prefix*
+** descrizione: pass:none[format for nick prefix on a channel (note: content is evaluated, see /help buflist)]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+"${color_nick_prefix}${nick_prefix}"+`
+
+* [[option_buflist.format.number]] *buflist.format.number*
+** descrizione: pass:none[format for buffer number, ${number} is the indented number (note: content is evaluated, see /help buflist)]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+"${color:green}${number}${if:${number_displayed}?.: }"+`
+
+* [[option_buflist.format.tls_version]] *buflist.format.tls_version*
+** descrizione: pass:none[format for TLS version on an IRC server buffer (note: content is evaluated, see /help buflist)]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+" ${color:default}(${if:${tls_version}==TLS1.3?${color:green}:${if:${tls_version}==TLS1.2?${color:yellow}:${color:red}}}${translate:${tls_version}}${color:default})"+`
+
+* [[option_buflist.look.add_newline]] *buflist.look.add_newline*
+** descrizione: pass:none[add newline between the buffers displayed, so each buffer is displayed on a separate line (recommended); if disabled, newlines must be manually added in the formats with "${\n}", and the mouse actions are not possible any more]
** tipo: bool
** valori: on, off
** valore predefinito: `+on+`
-// end::sec_options[]
-// tag::weechat_options[]
-* [[option_weechat.color.bar_more]] *weechat.color.bar_more*
-** descrizione: pass:none[text color for "+" when scrolling bars]
-** tipo: colore
-** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+lightmagenta+`
+* [[option_buflist.look.auto_scroll]] *buflist.look.auto_scroll*
+** descrizione: pass:none[automatically scroll the buflist bar to always see the current buffer (this works only with a bar on the left/right position with a "vertical" filling); this value is the percent number of lines displayed before the current buffer when scrolling (-1 = disable scroll); for example 50 means that after a scroll, the current buffer is at the middle of bar, 0 means on top of bar, 100 means at bottom of bar]
+** tipo: intero
+** valori: -1 .. 100
+** valore predefinito: `+50+`
-* [[option_weechat.color.chat]] *weechat.color.chat*
-** descrizione: pass:none[colore del testo per la chat]
-** tipo: colore
-** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+default+`
+* [[option_buflist.look.display_conditions]] *buflist.look.display_conditions*
+** descrizione: pass:none[conditions to display a buffer (note: content is evaluated, see /help buflist); for example to hide server buffers if they are merged with core buffer: "${buffer.hidden}==0 && ((${type}!=server && ${buffer.full_name}!=core.weechat) || ${buffer.active}==1)"]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+"${buffer.hidden}==0"+`
-* [[option_weechat.color.chat_bg]] *weechat.color.chat_bg*
-** descrizione: pass:none[colore di sfondo per la chat]
-** tipo: colore
-** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+default+`
+* [[option_buflist.look.enabled]] *buflist.look.enabled*
+** descrizione: pass:none[enable buflist; it is recommended to use this option instead of just hiding the bar because it also removes some internal hooks that are not needed any more when the bar is hidden; you can also use the command "/buflist toggle" or use the default key alt+shift+b]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+on+`
-* [[option_weechat.color.chat_buffer]] *weechat.color.chat_buffer*
-** descrizione: pass:none[colore del testo per i nomi dei buffer]
-** tipo: colore
-** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+white+`
+* [[option_buflist.look.mouse_jump_visited_buffer]] *buflist.look.mouse_jump_visited_buffer*
+** descrizione: pass:none[if enabled, clicks with left/right buttons on the line with current buffer jump to previous/next visited buffer]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+off+`
-* [[option_weechat.color.chat_channel]] *weechat.color.chat_channel*
-** descrizione: pass:none[colore del testo per i nomi dei canali]
-** tipo: colore
-** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+white+`
+* [[option_buflist.look.mouse_move_buffer]] *buflist.look.mouse_move_buffer*
+** descrizione: pass:none[if enabled, mouse gestures (drag & drop) move buffers in list]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+on+`
-* [[option_weechat.color.chat_day_change]] *weechat.color.chat_day_change*
-** descrizione: pass:none[colore del testo per i messaggi mostrati al cambio di data]
-** tipo: colore
-** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+cyan+`
+* [[option_buflist.look.mouse_wheel]] *buflist.look.mouse_wheel*
+** descrizione: pass:none[if enabled, mouse wheel up/down actions jump to previous/next buffer in list]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+on+`
-* [[option_weechat.color.chat_delimiters]] *weechat.color.chat_delimiters*
-** descrizione: pass:none[colore del testo per i delimitatori]
-** tipo: colore
-** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+green+`
+* [[option_buflist.look.nick_prefix]] *buflist.look.nick_prefix*
+** descrizione: pass:none[get the nick prefix and its color from nicklist so that ${nick_prefix} can be used in format; this can be slow on buffers with lot of nicks in nicklist, so this option is disabled by default]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+off+`
-* [[option_weechat.color.chat_highlight]] *weechat.color.chat_highlight*
-** descrizione: pass:none[colore del testo per il prefisso di notifica]
-** tipo: colore
-** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+yellow+`
+* [[option_buflist.look.nick_prefix_empty]] *buflist.look.nick_prefix_empty*
+** descrizione: pass:none[when the nick prefix is enabled, display a space instead if there is no nick prefix on the buffer]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+on+`
-* [[option_weechat.color.chat_highlight_bg]] *weechat.color.chat_highlight_bg*
-** descrizione: pass:none[colore di sfondo per il prefisso di notifica]
-** tipo: colore
-** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+magenta+`
+* [[option_buflist.look.signals_refresh]] *buflist.look.signals_refresh*
+** descrizione: pass:none[comma-separated list of extra signals that are hooked and trigger the refresh of buffers list; this can be useful if some custom variables are used in formats and need specific refresh]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+""+`
-* [[option_weechat.color.chat_host]] *weechat.color.chat_host*
-** descrizione: pass:none[colore del testo per i nomi host]
-** tipo: colore
-** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+cyan+`
+* [[option_buflist.look.sort]] *buflist.look.sort*
+** descrizione: pass:none[comma-separated list of fields to sort buffers; each field is a hdata variable of buffer ("var"), a hdata variable of IRC server ("irc_server.var") or a hdata variable of IRC channel ("irc_channel.var"); char "-" can be used before field to reverse order, char "~" can be used to do a case insensitive comparison; example: "-~short_name" for case insensitive and reverse sort on buffer short name (note: the content is evaluated, before being split into fields, but at that time "bar_item" is the only variable that can be used, to distinguish between different buflist items, for example "${bar_item.name}")]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+"number,-active"+`
-* [[option_weechat.color.chat_inactive_buffer]] *weechat.color.chat_inactive_buffer*
-** descrizione: pass:none[colore del testo per la chat quando la riga è inattiva (il buffer è unito con altri buffer e non è selezionato)]
-** tipo: colore
-** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+default+`
+* [[option_buflist.look.use_items]] *buflist.look.use_items*
+** descrizione: pass:none[number of buflist bar items that can be used; the item names are: "buflist", "buflist2", "buflist3"; be careful, using more than one bar item slows down the display of buffers list]
+** tipo: intero
+** valori: 1 .. 3
+** valore predefinito: `+1+`
+// end::buflist_options[]
-* [[option_weechat.color.chat_inactive_window]] *weechat.color.chat_inactive_window*
-** descrizione: pass:none[colore del testo per la chat quando la finestra è inattiva (nessuna finestra attiva selezionata)]
+// tag::charset_options[]
+* [[option_charset.default.decode]] *charset.default.decode*
+** descrizione: pass:none[global decoding charset: charset used to decode incoming messages when they are not UTF-8 valid]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+"iso-8859-1"+`
+
+* [[option_charset.default.encode]] *charset.default.encode*
+** descrizione: pass:none[global encoding charset: charset used to encode outgoing messages (if empty, default is UTF-8 because it is the WeeChat internal charset)]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+""+`
+// end::charset_options[]
+
+// tag::exec_options[]
+* [[option_exec.color.flag_finished]] *exec.color.flag_finished*
+** descrizione: pass:none[text color for a finished command flag in list of commands]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+default+`
+** valore predefinito: `+lightred+`
-* [[option_weechat.color.chat_nick]] *weechat.color.chat_nick*
-** descrizione: pass:none[text color for nicks in chat window: used in some server messages and as fallback when a nick color is not found; most of times nick color comes from option weechat.color.chat_nick_colors]
+* [[option_exec.color.flag_running]] *exec.color.flag_running*
+** descrizione: pass:none[text color for a running command flag in list of commands]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+lightcyan+`
+** valore predefinito: `+lightgreen+`
-* [[option_weechat.color.chat_nick_colors]] *weechat.color.chat_nick_colors*
-** descrizione: pass:none[colore del testo per i nick (elenco separato da virgole di colori, quello di sfondo è consentito con il formato "fg:bg", ad esempio: "lightred:blue")]
+* [[option_exec.command.default_options]] *exec.command.default_options*
+** descrizione: pass:none[default options for command /exec (see /help exec); example: "-nosh -bg" to run all commands in background (no output), and without using the shell]
** tipo: stringa
** valori: qualsiasi stringa
-** valore predefinito: `+"cyan,magenta,green,brown,lightblue,default,lightcyan,lightmagenta,lightgreen,blue"+`
+** valore predefinito: `+""+`
-* [[option_weechat.color.chat_nick_offline]] *weechat.color.chat_nick_offline*
-** descrizione: pass:none[text color for offline nick (not in nicklist any more); this color is used only if option weechat.look.color_nick_offline is enabled]
-** tipo: colore
-** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+default+`
+* [[option_exec.command.purge_delay]] *exec.command.purge_delay*
+** descrizione: pass:none[delay for purging finished commands (in seconds, 0 = purge commands immediately, -1 = never purge)]
+** tipo: intero
+** valori: -1 .. 25920000
+** valore predefinito: `+0+`
-* [[option_weechat.color.chat_nick_offline_highlight]] *weechat.color.chat_nick_offline_highlight*
-** descrizione: pass:none[text color for offline nick with highlight; this color is used only if option weechat.look.color_nick_offline is enabled]
-** tipo: colore
-** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+default+`
+* [[option_exec.command.shell]] *exec.command.shell*
+** descrizione: pass:none[shell to use with command "/exec -sh"; it can be just the name of shell if it is in PATH (for example "bash") or the absolute path to the shell (for example "/bin/bash"); if value is empty, "sh" is used (note: content is evaluated, see /help eval)]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+"${env:SHELL}"+`
+// end::exec_options[]
-* [[option_weechat.color.chat_nick_offline_highlight_bg]] *weechat.color.chat_nick_offline_highlight_bg*
-** descrizione: pass:none[background color for offline nick with highlight; this color is used only if option weechat.look.color_nick_offline is enabled]
-** tipo: colore
-** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+blue+`
+// tag::fifo_options[]
+* [[option_fifo.file.enabled]] *fifo.file.enabled*
+** descrizione: pass:none[enable FIFO pipe]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+on+`
-* [[option_weechat.color.chat_nick_other]] *weechat.color.chat_nick_other*
-** descrizione: pass:none[colore del testo per gli altri nick nel buffer privato]
-** tipo: colore
-** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+cyan+`
+* [[option_fifo.file.path]] *fifo.file.path*
+** descrizione: pass:none[path for FIFO file; WeeChat PID can be used in path with ${info:pid} (path is evaluated, see function string_eval_path_home in plugin API reference)]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+"${weechat_runtime_dir}/weechat_fifo_${info:pid}"+`
+// end::fifo_options[]
-* [[option_weechat.color.chat_nick_prefix]] *weechat.color.chat_nick_prefix*
-** descrizione: pass:none[colore per il prefisso del nick (stringa visualizzata prima del nick nel prefisso)]
+// tag::fset_options[]
+* [[option_fset.color.default_value]] *fset.color.default_value*
+** descrizione: pass:none[color for default value]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+green+`
+** valore predefinito: `+default+`
-* [[option_weechat.color.chat_nick_self]] *weechat.color.chat_nick_self*
-** descrizione: pass:none[colore del testo per il nick locale nella finestra di chat]
+* [[option_fset.color.default_value_selected]] *fset.color.default_value_selected*
+** descrizione: pass:none[color for default value on the selected line]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** valore predefinito: `+white+`
-* [[option_weechat.color.chat_nick_suffix]] *weechat.color.chat_nick_suffix*
-** descrizione: pass:none[colore per il prefisso del nick (stringa visualizzata dopo il nick nel prefisso)]
+* [[option_fset.color.description]] *fset.color.description*
+** descrizione: pass:none[color for description]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+green+`
+** valore predefinito: `+default+`
-* [[option_weechat.color.chat_prefix_action]] *weechat.color.chat_prefix_action*
-** descrizione: pass:none[colore del testo per il prefisso di azione]
+* [[option_fset.color.description_selected]] *fset.color.description_selected*
+** descrizione: pass:none[color for description on the selected line]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** valore predefinito: `+white+`
-* [[option_weechat.color.chat_prefix_buffer]] *weechat.color.chat_prefix_buffer*
-** descrizione: pass:none[colore del testo per il nome del buffer (prima del prefisso, quando più buffer sono uniti con lo stesso nome)]
-** tipo: colore
-** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+brown+`
-
-* [[option_weechat.color.chat_prefix_buffer_inactive_buffer]] *weechat.color.chat_prefix_buffer_inactive_buffer*
-** descrizione: pass:none[colore del testo per il nome del buffer inattivo (prima del prefisso, quando più buffer sono uniti con lo stesso numero e il buffer non è selezionato)]
+* [[option_fset.color.file]] *fset.color.file*
+** descrizione: pass:none[color for file]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** valore predefinito: `+default+`
-* [[option_weechat.color.chat_prefix_error]] *weechat.color.chat_prefix_error*
-** descrizione: pass:none[colore del testo per il prefisso di errore]
+* [[option_fset.color.file_changed]] *fset.color.file_changed*
+** descrizione: pass:none[color for file if value is changed]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+yellow+`
+** valore predefinito: `+brown+`
-* [[option_weechat.color.chat_prefix_join]] *weechat.color.chat_prefix_join*
-** descrizione: pass:none[colore del testo per il prefisso di entrata]
+* [[option_fset.color.file_changed_selected]] *fset.color.file_changed_selected*
+** descrizione: pass:none[color for file if value is changed on the selected line]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+lightgreen+`
+** valore predefinito: `+yellow+`
-* [[option_weechat.color.chat_prefix_more]] *weechat.color.chat_prefix_more*
-** descrizione: pass:none[text color for "+" when prefix is too long]
+* [[option_fset.color.file_selected]] *fset.color.file_selected*
+** descrizione: pass:none[color for file on the selected line]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+lightmagenta+`
+** valore predefinito: `+white+`
-* [[option_weechat.color.chat_prefix_network]] *weechat.color.chat_prefix_network*
-** descrizione: pass:none[colore del testo per il prefisso di rete]
+* [[option_fset.color.help_default_value]] *fset.color.help_default_value*
+** descrizione: pass:none[color for default value in help bar]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+magenta+`
+** valore predefinito: `+white+`
-* [[option_weechat.color.chat_prefix_quit]] *weechat.color.chat_prefix_quit*
-** descrizione: pass:none[colore del testo per il prefisso di uscita]
+* [[option_fset.color.help_description]] *fset.color.help_description*
+** descrizione: pass:none[color for description in help bar]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+lightred+`
+** valore predefinito: `+default+`
-* [[option_weechat.color.chat_prefix_suffix]] *weechat.color.chat_prefix_suffix*
-** descrizione: pass:none[colore del testo per il suffisso (dopo il prefisso)]
+* [[option_fset.color.help_name]] *fset.color.help_name*
+** descrizione: pass:none[color for name in help bar]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+green+`
+** valore predefinito: `+white+`
-* [[option_weechat.color.chat_read_marker]] *weechat.color.chat_read_marker*
-** descrizione: pass:none[colore del testo per l'evidenziatore di dati non letti]
+* [[option_fset.color.help_quotes]] *fset.color.help_quotes*
+** descrizione: pass:none[color for quotes around string values]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+magenta+`
+** valore predefinito: `+darkgray+`
-* [[option_weechat.color.chat_read_marker_bg]] *weechat.color.chat_read_marker_bg*
-** descrizione: pass:none[colore di sfondo per l'evidenziatore di dati non letti]
+* [[option_fset.color.help_values]] *fset.color.help_values*
+** descrizione: pass:none[color for allowed values]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** valore predefinito: `+default+`
-* [[option_weechat.color.chat_server]] *weechat.color.chat_server*
-** descrizione: pass:none[colore del testo per i nomi dei server]
-** tipo: colore
-** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+brown+`
-
-* [[option_weechat.color.chat_tags]] *weechat.color.chat_tags*
-** descrizione: pass:none[colore del testo per i tago dopo i messaggi (mostrati con il comando /debug tags)]
+* [[option_fset.color.index]] *fset.color.index*
+** descrizione: pass:none[color for index of option]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+red+`
+** valore predefinito: `+cyan+`
-* [[option_weechat.color.chat_text_found]] *weechat.color.chat_text_found*
-** descrizione: pass:none[colore del testo per l'evidenziatore sulle righe per il testo trovato]
+* [[option_fset.color.index_selected]] *fset.color.index_selected*
+** descrizione: pass:none[color for index of option on the selected line]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+yellow+`
+** valore predefinito: `+lightcyan+`
-* [[option_weechat.color.chat_text_found_bg]] *weechat.color.chat_text_found_bg*
-** descrizione: pass:none[colore di sfondo per l'evidenziatore sulle righe per il testo trovato]
+* [[option_fset.color.line_marked_bg1]] *fset.color.line_marked_bg1*
+** descrizione: pass:none[background color for a marked line (used with the first format, see option fset.format.option1)]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+lightmagenta+`
+** valore predefinito: `+default+`
-* [[option_weechat.color.chat_time]] *weechat.color.chat_time*
-** descrizione: pass:none[colore del testo per l'orario nella finestra di chat]
+* [[option_fset.color.line_marked_bg2]] *fset.color.line_marked_bg2*
+** descrizione: pass:none[background color for a marked line (used with the second format, see option fset.format.option2)]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** valore predefinito: `+default+`
-* [[option_weechat.color.chat_time_delimiters]] *weechat.color.chat_time_delimiters*
-** descrizione: pass:none[colore del testo per i delimitator dell'orario]
+* [[option_fset.color.line_selected_bg1]] *fset.color.line_selected_bg1*
+** descrizione: pass:none[background color for the selected line (used with the first format, see option fset.format.option1)]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+brown+`
+** valore predefinito: `+blue+`
-* [[option_weechat.color.chat_value]] *weechat.color.chat_value*
-** descrizione: pass:none[colore del testo per i valori]
+* [[option_fset.color.line_selected_bg2]] *fset.color.line_selected_bg2*
+** descrizione: pass:none[background color for the selected line (used with the second format, see option fset.format.option2)]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+cyan+`
+** valore predefinito: `+red+`
-* [[option_weechat.color.chat_value_null]] *weechat.color.chat_value_null*
-** descrizione: pass:none[text color for null values (undefined)]
+* [[option_fset.color.marked]] *fset.color.marked*
+** descrizione: pass:none[color for mark indicator]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+blue+`
+** valore predefinito: `+brown+`
-* [[option_weechat.color.emphasized]] *weechat.color.emphasized*
-** descrizione: pass:none[text color for emphasized text (for example when searching text); this option is used only if option weechat.look.emphasized_attributes is an empty string (default value)]
+* [[option_fset.color.marked_selected]] *fset.color.marked_selected*
+** descrizione: pass:none[color for mark indicator on the selected line]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** valore predefinito: `+yellow+`
-* [[option_weechat.color.emphasized_bg]] *weechat.color.emphasized_bg*
-** descrizione: pass:none[background color for emphasized text (for example when searching text); used only if option weechat.look.emphasized_attributes is an empty string (default value)]
+* [[option_fset.color.max]] *fset.color.max*
+** descrizione: pass:none[color for max value]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+magenta+`
+** valore predefinito: `+default+`
-* [[option_weechat.color.input_actions]] *weechat.color.input_actions*
-** descrizione: pass:none[colore del testo per le azioni sulla riga di input]
+* [[option_fset.color.max_selected]] *fset.color.max_selected*
+** descrizione: pass:none[color for max value on the selected line]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+lightgreen+`
+** valore predefinito: `+white+`
-* [[option_weechat.color.input_text_not_found]] *weechat.color.input_text_not_found*
-** descrizione: pass:none[colore del testo per la ricerca del testo fallita nella riga di input]
+* [[option_fset.color.min]] *fset.color.min*
+** descrizione: pass:none[color for min value]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+red+`
+** valore predefinito: `+default+`
-* [[option_weechat.color.item_away]] *weechat.color.item_away*
-** descrizione: pass:none[text color for away item]
+* [[option_fset.color.min_selected]] *fset.color.min_selected*
+** descrizione: pass:none[color for min value on the selected line]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+yellow+`
+** valore predefinito: `+white+`
-* [[option_weechat.color.nicklist_away]] *weechat.color.nicklist_away*
-** descrizione: pass:none[colore del testo per i nick assenti]
+* [[option_fset.color.name]] *fset.color.name*
+** descrizione: pass:none[color for name]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+cyan+`
+** valore predefinito: `+default+`
-* [[option_weechat.color.nicklist_group]] *weechat.color.nicklist_group*
-** descrizione: pass:none[colore del testo per i gruppi nella lista nick]
+* [[option_fset.color.name_changed]] *fset.color.name_changed*
+** descrizione: pass:none[color for name if value is changed]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+green+`
+** valore predefinito: `+brown+`
-* [[option_weechat.color.separator]] *weechat.color.separator*
-** descrizione: pass:none[colore per i separatori delle finestre (quando divise) e dei separatori tra le barre (come la lista nick)]
+* [[option_fset.color.name_changed_selected]] *fset.color.name_changed_selected*
+** descrizione: pass:none[color for name if value is changed on the selected line]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+blue+`
+** valore predefinito: `+yellow+`
-* [[option_weechat.color.status_count_highlight]] *weechat.color.status_count_highlight*
-** descrizione: pass:none[colore del testo per il conteggio dei messaggi di notifica nella hotlist (barra di stato)]
+* [[option_fset.color.name_selected]] *fset.color.name_selected*
+** descrizione: pass:none[color for name on the selected line]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+magenta+`
+** valore predefinito: `+white+`
-* [[option_weechat.color.status_count_msg]] *weechat.color.status_count_msg*
-** descrizione: pass:none[colore del testo per il conteggio dei messaggi nella hotlist (barra di stato)]
+* [[option_fset.color.option]] *fset.color.option*
+** descrizione: pass:none[color for option]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+brown+`
+** valore predefinito: `+default+`
-* [[option_weechat.color.status_count_other]] *weechat.color.status_count_other*
-** descrizione: pass:none[colore del testo per il conteggio di altri messaggi nella hotlist (barra di stato)]
+* [[option_fset.color.option_changed]] *fset.color.option_changed*
+** descrizione: pass:none[color for option if value is changed]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+default+`
+** valore predefinito: `+brown+`
-* [[option_weechat.color.status_count_private]] *weechat.color.status_count_private*
-** descrizione: pass:none[colore del testo per il conteggio dei messaggi privati nella hotlist (barra di stato)]
+* [[option_fset.color.option_changed_selected]] *fset.color.option_changed_selected*
+** descrizione: pass:none[color for option if value is changed on the selected line]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+green+`
+** valore predefinito: `+yellow+`
-* [[option_weechat.color.status_data_highlight]] *weechat.color.status_data_highlight*
-** descrizione: pass:none[colore del testo per il buffer con notifica (barra di stato)]
+* [[option_fset.color.option_selected]] *fset.color.option_selected*
+** descrizione: pass:none[color for option on the selected line]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+lightmagenta+`
+** valore predefinito: `+white+`
-* [[option_weechat.color.status_data_msg]] *weechat.color.status_data_msg*
-** descrizione: pass:none[colore del testo per il buffer con nuovi messaggi (barra di stato)]
+* [[option_fset.color.parent_name]] *fset.color.parent_name*
+** descrizione: pass:none[color for name of parent option]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+yellow+`
+** valore predefinito: `+default+`
-* [[option_weechat.color.status_data_other]] *weechat.color.status_data_other*
-** descrizione: pass:none[colore del testo per il buffer con nuovi dati (non messaggi) (barra di stato)]
+* [[option_fset.color.parent_name_selected]] *fset.color.parent_name_selected*
+** descrizione: pass:none[color for name of parent option on the selected line]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+default+`
+** valore predefinito: `+white+`
-* [[option_weechat.color.status_data_private]] *weechat.color.status_data_private*
-** descrizione: pass:none[colore del testo per il buffer con un messaggio privato (barra di stato)]
+* [[option_fset.color.parent_value]] *fset.color.parent_value*
+** descrizione: pass:none[color for value of parent option]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+lightgreen+`
+** valore predefinito: `+cyan+`
-* [[option_weechat.color.status_filter]] *weechat.color.status_filter*
-** descrizione: pass:none[colore del testo per l'indicatore di filtro nella barra di stato]
+* [[option_fset.color.parent_value_selected]] *fset.color.parent_value_selected*
+** descrizione: pass:none[color for value of parent option on the selected line]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+green+`
+** valore predefinito: `+lightcyan+`
-* [[option_weechat.color.status_more]] *weechat.color.status_more*
-** descrizione: pass:none[colore del testo per il buffer con nuovi dati (barra di stato)]
+* [[option_fset.color.quotes]] *fset.color.quotes*
+** descrizione: pass:none[color for quotes around string values]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+yellow+`
+** valore predefinito: `+darkgray+`
-* [[option_weechat.color.status_mouse]] *weechat.color.status_mouse*
-** descrizione: pass:none[text color for mouse indicator in status bar]
+* [[option_fset.color.quotes_changed]] *fset.color.quotes_changed*
+** descrizione: pass:none[color for quotes around string values which are changed]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+green+`
+** valore predefinito: `+default+`
-* [[option_weechat.color.status_name]] *weechat.color.status_name*
-** descrizione: pass:none[colore del testo per il nome del buffer corrente nella barra di stato]
+* [[option_fset.color.quotes_changed_selected]] *fset.color.quotes_changed_selected*
+** descrizione: pass:none[color for quotes around string values which are changed on the selected line]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** valore predefinito: `+white+`
-* [[option_weechat.color.status_name_ssl]] *weechat.color.status_name_ssl*
-** descrizione: pass:none[colore del testo per il nome del buffer corrente nella barra di stato, se i dati sono messi al sicuro con un protocollo come SSL]
+* [[option_fset.color.quotes_selected]] *fset.color.quotes_selected*
+** descrizione: pass:none[color for quotes around string values on the selected line]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+lightgreen+`
+** valore predefinito: `+default+`
-* [[option_weechat.color.status_nicklist_count]] *weechat.color.status_nicklist_count*
-** descrizione: pass:none[text color for number of nicks in nicklist (status bar)]
+* [[option_fset.color.section]] *fset.color.section*
+** descrizione: pass:none[color for section]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** valore predefinito: `+default+`
-* [[option_weechat.color.status_number]] *weechat.color.status_number*
-** descrizione: pass:none[colore del testo per il numero del buffer corrente nella barra di stato]
+* [[option_fset.color.section_changed]] *fset.color.section_changed*
+** descrizione: pass:none[color for section if value is changed]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+yellow+`
+** valore predefinito: `+brown+`
-* [[option_weechat.color.status_time]] *weechat.color.status_time*
-** descrizione: pass:none[colore del testo per l'ora (barra di stato)]
+* [[option_fset.color.section_changed_selected]] *fset.color.section_changed_selected*
+** descrizione: pass:none[color for section if value is changed on the selected line]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+default+`
-
-* [[option_weechat.completion.base_word_until_cursor]] *weechat.completion.base_word_until_cursor*
-** descrizione: pass:none[se abilitata, la parola base da completare termina al carattere prima del cursore; altrimenti la parola base termina al primo spazio dopo il cursore]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+on+`
-
-* [[option_weechat.completion.command_inline]] *weechat.completion.command_inline*
-** descrizione: pass:none[if enabled, the commands inside command line are completed (the command at beginning of line has higher priority and is used first); note: when this option is enabled, there is no more automatic completion of paths beginning with "/" (outside commands arguments)]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+on+`
-
-* [[option_weechat.completion.default_template]] *weechat.completion.default_template*
-** descrizione: pass:none[modello di completamento predefinito (per favore, consulta la documentazione per codici e valori del template: Referenze API per Plugin, funzione "weechat_hook_command")]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+"%(nicks)|%(irc_channels)"+`
-
-* [[option_weechat.completion.nick_add_space]] *weechat.completion.nick_add_space*
-** descrizione: pass:none[aggiungi uno spazio al completamento del nick (quando non è la prima parola sulla riga di comando)]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+on+`
-
-* [[option_weechat.completion.nick_case_sensitive]] *weechat.completion.nick_case_sensitive*
-** descrizione: pass:none[case sensitive completion for nicks]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+off+`
-
-* [[option_weechat.completion.nick_completer]] *weechat.completion.nick_completer*
-** descrizione: pass:none[stringa inserita dopo il completamento del nick (quando il nick è la prima parola sulla riga di comando)]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+": "+`
-
-* [[option_weechat.completion.nick_first_only]] *weechat.completion.nick_first_only*
-** descrizione: pass:none[completa solo con il primo nick trovato]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+off+`
-
-* [[option_weechat.completion.nick_ignore_chars]] *weechat.completion.nick_ignore_chars*
-** descrizione: pass:none[caratteri ignorati per il completamento dei nick]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+"[]`_-^"+`
-
-* [[option_weechat.completion.partial_completion_alert]] *weechat.completion.partial_completion_alert*
-** descrizione: pass:none[send alert (BEL) when a partial completion occurs]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+on+`
-
-* [[option_weechat.completion.partial_completion_command]] *weechat.completion.partial_completion_command*
-** descrizione: pass:none[completa parzialmente i nomi dei comandi (arresta quando vengono trovati più comandi con le stesse lettere)]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+off+`
-
-* [[option_weechat.completion.partial_completion_command_arg]] *weechat.completion.partial_completion_command_arg*
-** descrizione: pass:none[completa parzialmente gli argomenti dei comandi (arresta quando vengono trovati più argomenti con lo stesso prefisso)]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+off+`
-
-* [[option_weechat.completion.partial_completion_count]] *weechat.completion.partial_completion_count*
-** descrizione: pass:none[mostra contatore per ogni completamento parziale nella barra degli oggetti]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+on+`
-
-* [[option_weechat.completion.partial_completion_other]] *weechat.completion.partial_completion_other*
-** descrizione: pass:none[completa parzialmente comandi esterni (arresta quando vengono trovate più parole che iniziano con le stesse lettere)]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+off+`
-
-* [[option_weechat.completion.partial_completion_templates]] *weechat.completion.partial_completion_templates*
-** descrizione: pass:none[comma-separated list of templates for which partial completion is enabled by default (with Tab key instead of shift-Tab); the list of templates is in documentation: plugin API reference, function "weechat_hook_command"]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+"config_options"+`
-
-* [[option_weechat.history.display_default]] *weechat.history.display_default*
-** descrizione: pass:none[numero massimo predefinito di comandi da visualizzare nella cronologia (0 = nessun limite)]
-** tipo: intero
-** valori: 0 .. 2147483647
-** valore predefinito: `+5+`
-
-* [[option_weechat.history.max_buffer_lines_minutes]] *weechat.history.max_buffer_lines_minutes*
-** descrizione: pass:none[maximum number of minutes in history per buffer (0 = unlimited); examples: 1440 = one day, 10080 = one week, 43200 = one month, 525600 = one year; use 0 ONLY if option weechat.history.max_buffer_lines_number is NOT set to 0]
-** tipo: intero
-** valori: 0 .. 2147483647
-** valore predefinito: `+0+`
-
-* [[option_weechat.history.max_buffer_lines_number]] *weechat.history.max_buffer_lines_number*
-** descrizione: pass:none[maximum number of lines in history per buffer (0 = unlimited); use 0 ONLY if option weechat.history.max_buffer_lines_minutes is NOT set to 0]
-** tipo: intero
-** valori: 0 .. 2147483647
-** valore predefinito: `+4096+`
-
-* [[option_weechat.history.max_commands]] *weechat.history.max_commands*
-** descrizione: pass:none[maximum number of user commands in history (0 = unlimited, NOT RECOMMENDED: no limit in memory usage)]
-** tipo: intero
-** valori: 0 .. 2147483647
-** valore predefinito: `+100+`
-
-* [[option_weechat.history.max_visited_buffers]] *weechat.history.max_visited_buffers*
-** descrizione: pass:none[numero massimo di buffer visitati da memorizzare]
-** tipo: intero
-** valori: 0 .. 1000
-** valore predefinito: `+50+`
-
-* [[option_weechat.look.align_end_of_lines]] *weechat.look.align_end_of_lines*
-** descrizione: pass:none[allineamento per la fine delle righe (tutte le righe tranne la prima): iniziano al di sotto di questi dati (data, buffer, prefissio, suffisso, messaggio (predefinito))]
-** tipo: intero
-** valori: time, buffer, prefix, suffix, message
-** valore predefinito: `+message+`
-
-* [[option_weechat.look.align_multiline_words]] *weechat.look.align_multiline_words*
-** descrizione: pass:none[alignment for multiline words according to option weechat.look.align_end_of_lines; if disabled, the multiline words will not be aligned, which can be useful to not break long URLs]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+on+`
-
-* [[option_weechat.look.bar_more_down]] *weechat.look.bar_more_down*
-** descrizione: pass:none[stringa visualizzata quando si può effettuare lo scroll della barra il basso (per le barre che hanno il riempimento "horizontal")]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+"++"+`
-
-* [[option_weechat.look.bar_more_left]] *weechat.look.bar_more_left*
-** descrizione: pass:none[stringa visualizzata quando si può effettuare lo scroll della barra verso sinistra (per le barre che hanno il riempimento "horizontal")]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+"<<"+`
-
-* [[option_weechat.look.bar_more_right]] *weechat.look.bar_more_right*
-** descrizione: pass:none[stringa visualizzata quando si può effettuare lo scroll della barra verso destra (per le barre che hanno il riempimento "horizontal")]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+">>"+`
-
-* [[option_weechat.look.bar_more_up]] *weechat.look.bar_more_up*
-** descrizione: pass:none[stringa visualizzata quando si può effettuare lo scroll della barra verso l'alto (per le barre che hanno il riempimento "horizontal")]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+"--"+`
-
-* [[option_weechat.look.bare_display_exit_on_input]] *weechat.look.bare_display_exit_on_input*
-** descrizione: pass:none[exit the bare display mode on any changes in input]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+on+`
-
-* [[option_weechat.look.bare_display_time_format]] *weechat.look.bare_display_time_format*
-** descrizione: pass:none[time format in bare display mode (see man strftime for date/time specifiers)]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+"%H:%M"+`
-
-* [[option_weechat.look.buffer_auto_renumber]] *weechat.look.buffer_auto_renumber*
-** descrizione: pass:none[automatically renumber buffers to have only consecutive numbers and start with number 1; if disabled, gaps between buffer numbers are allowed and the first buffer can have a number greater than 1]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+on+`
-
-* [[option_weechat.look.buffer_notify_default]] *weechat.look.buffer_notify_default*
-** descrizione: pass:none[livello predefinito di notifica per i buffer (usato per comunicare a WeeChat se il buffer deve essere visualizzato nella hotlist oppure no, a seconda dell'importanza del messaggio): all: tutti i messaggi (predefinito), message=messaggi+notifiche, highlight=solo notifiche, none=non viene mai visualizzato nella hotlist]
-** tipo: intero
-** valori: none, highlight, message, all
-** valore predefinito: `+all+`
-
-* [[option_weechat.look.buffer_position]] *weechat.look.buffer_position*
-** descrizione: pass:none[position of a new buffer: end = after the end of list (number = last number + 1) (default), first_gap = at first available number in the list (after the end of list if no number is available); this option is used only if the buffer has no layout number]
-** tipo: intero
-** valori: end, first_gap
-** valore predefinito: `+end+`
-
-* [[option_weechat.look.buffer_search_case_sensitive]] *weechat.look.buffer_search_case_sensitive*
-** descrizione: pass:none[default text search in buffer: case sensitive or not]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+off+`
-
-* [[option_weechat.look.buffer_search_force_default]] *weechat.look.buffer_search_force_default*
-** descrizione: pass:none[force default values for text search in buffer (instead of using values from last search in buffer)]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+off+`
-
-* [[option_weechat.look.buffer_search_regex]] *weechat.look.buffer_search_regex*
-** descrizione: pass:none[default text search in buffer: if enabled, search POSIX extended regular expression, otherwise search simple string]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+off+`
-
-* [[option_weechat.look.buffer_search_where]] *weechat.look.buffer_search_where*
-** descrizione: pass:none[default text search in buffer: in message, prefix, prefix and message]
-** tipo: intero
-** valori: prefix, message, prefix_message
-** valore predefinito: `+prefix_message+`
-
-* [[option_weechat.look.buffer_time_format]] *weechat.look.buffer_time_format*
-** descrizione: pass:none[time format for each line displayed in buffers (see man strftime for date/time specifiers) (note: content is evaluated, so you can use colors with format "${color:xxx}", see /help eval); for example time using grayscale (requires support of 256 colors): "${color:252}%H${color:245}%M${color:240}%S"]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+"%H:%M:%S"+`
-
-* [[option_weechat.look.buffer_time_same]] *weechat.look.buffer_time_same*
-** descrizione: pass:none[time displayed for a message with same time as previous message: use a space " " to hide time, another string to display this string instead of time, or an empty string to disable feature (display time) (note: content is evaluated, so you can use colors with format "${color:xxx}", see /help eval)]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+""+`
-
-* [[option_weechat.look.chat_space_right]] *weechat.look.chat_space_right*
-** descrizione: pass:none[keep a space on the right side of chat area if there is a bar displayed on the right (for both text and read marker)]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+off+`
-
-* [[option_weechat.look.color_basic_force_bold]] *weechat.look.color_basic_force_bold*
-** descrizione: pass:none[forza l'attributo "bold" per i colori chiari e "darkgray" nei colori di base (questa opzione è disabilitata per default: il grassetto è usato solo se il terminale ha meno di 16 colori)]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+off+`
-
-* [[option_weechat.look.color_inactive_buffer]] *weechat.look.color_inactive_buffer*
-** descrizione: pass:none[usa un colore diverso per le righe nel buffer inattivo (quando la riga viene da un buffer unito non selezionato)]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+on+`
-
-* [[option_weechat.look.color_inactive_message]] *weechat.look.color_inactive_message*
-** descrizione: pass:none[usa un colore diverso per un messaggio inattivo (quando la finestra non è quella corrente, o se la riga viene da un buffer unito non selezionato)]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+on+`
-
-* [[option_weechat.look.color_inactive_prefix]] *weechat.look.color_inactive_prefix*
-** descrizione: pass:none[usa un colore diverso per il prefisso inattivo (quando la finestra non è quella corrente, o se la riga viene da un buffer unito non selezionato)]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+on+`
-
-* [[option_weechat.look.color_inactive_prefix_buffer]] *weechat.look.color_inactive_prefix_buffer*
-** descrizione: pass:none[usa un colore diverso per il nome del buffer inattivo nel prefisso (quando la finestra non è quella corrente, o se la riga viene da un buffer unito non selezionato)]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+on+`
-
-* [[option_weechat.look.color_inactive_time]] *weechat.look.color_inactive_time*
-** descrizione: pass:none[usa un colore diverso per il tempo di inattività (quando la finestra non è quella corrente, o se la riga viene da un buffer unito non selezionato)]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+off+`
-
-* [[option_weechat.look.color_inactive_window]] *weechat.look.color_inactive_window*
-** descrizione: pass:none[usa un colore diverso per le righe nella finestra inattiva (quando la finestra non è quella corrente)]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+on+`
-
-* [[option_weechat.look.color_nick_offline]] *weechat.look.color_nick_offline*
-** descrizione: pass:none[usa un colore diverso per i nick non in linea (non più in lista nick)]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+off+`
-
-* [[option_weechat.look.color_pairs_auto_reset]] *weechat.look.color_pairs_auto_reset*
-** descrizione: pass:none[ripristina automaticamente la tabella delle coppie colore quando il numero di coppie disponibili è minore o uguale a questo numero (-1 = disabilita il ripristino automatico, dunque è necessario "/color reset" quando la tabella è al completo)]
-** tipo: intero
-** valori: -1 .. 256
-** valore predefinito: `+5+`
-
-* [[option_weechat.look.color_real_white]] *weechat.look.color_real_white*
-** descrizione: pass:none[se impostato, usa il colore bianco reale, disabilitato sui terminali con lo sfondo bianco (se non usato, l'opzione dovrebbe essere attivata per visualizzare il bianco reale invece del colore di primo piano predefinito del terminale)]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+off+`
-
-* [[option_weechat.look.command_chars]] *weechat.look.command_chars*
-** descrizione: pass:none[caratteri usati per determinare se la stringa in input è un comando oppure no: l'input deve iniziare con uno di questi caratteri: la barra ("/") è sempre considerata come prefisso per comando (esempio: ".$")]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+""+`
-
-* [[option_weechat.look.command_incomplete]] *weechat.look.command_incomplete*
-** descrizione: pass:none[if set, incomplete and unambiguous commands are allowed, for example /he for /help]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+off+`
-
-* [[option_weechat.look.confirm_quit]] *weechat.look.confirm_quit*
-** descrizione: pass:none[se impostata, il comando /quit deve essere confermato con l'argomento extra "-yes" (consultare /help quit)]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+off+`
-
-* [[option_weechat.look.confirm_upgrade]] *weechat.look.confirm_upgrade*
-** descrizione: pass:none[if set, /upgrade command must be confirmed with extra argument "-yes" (see /help upgrade)]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+off+`
-
-* [[option_weechat.look.day_change]] *weechat.look.day_change*
-** descrizione: pass:none[mostra un messaggio speciale al cambio di data]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+on+`
-
-* [[option_weechat.look.day_change_message_1date]] *weechat.look.day_change_message_1date*
-** descrizione: pass:none[message displayed when the day has changed, with one date displayed (for example at beginning of buffer) (see man strftime for date/time specifiers) (note: content is evaluated, so you can use colors with format "${color:xxx}", see /help eval)]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+"-- %a, %d %b %Y --"+`
-
-* [[option_weechat.look.day_change_message_2dates]] *weechat.look.day_change_message_2dates*
-** descrizione: pass:none[message displayed when the day has changed, with two dates displayed (between two messages); the second date specifiers must start with two "%" because strftime is called two times on this string (see man strftime for date/time specifiers) (note: content is evaluated, so you can use colors with format "${color:xxx}", see /help eval)]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+"-- %%a, %%d %%b %%Y (%a, %d %b %Y) --"+`
-
-* [[option_weechat.look.eat_newline_glitch]] *weechat.look.eat_newline_glitch*
-** descrizione: pass:none[se attivo, eat_newline_glitch verrà impostato a 0; viene usato per non aggiungere il carattere a capo alla fine di ogni riga, al fine di non danneggiare il testo quando viene copiato/incollato da WeeChat in un'altra applicazione (l'opzione è disabilitata per default, dato che può causare seri errori di visualizzazione)]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+off+`
-
-* [[option_weechat.look.emphasized_attributes]] *weechat.look.emphasized_attributes*
-** descrizione: pass:none[attributes for emphasized text: one or more attribute chars ("%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline); if the string is empty, the colors weechat.color.emphasized* are used]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+""+`
-
-* [[option_weechat.look.highlight]] *weechat.look.highlight*
-** descrizione: pass:none[elenco separato da virgole di parole da notificare; confronto non sensibile alle maiuscole (usare "(?-i)" all'inizio delle parole per renderle sensibili alle maiuscole), le parole possono iniziare o terminare con "*" per la corrispondenza parziale; ad esempio: "test,(?-i)*tizio*,flash*"]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+""+`
-
-* [[option_weechat.look.highlight_disable_regex]] *weechat.look.highlight_disable_regex*
-** descrizione: pass:none[POSIX extended regular expression used to prevent any highlight from a message: this option has higher priority over other highlight options (if the string is found in the message, the highlight is disabled and the other options are ignored), regular expression is case insensitive (use "(?-i)" at beginning to make it case sensitive), examples: "<flash.*>", "(?-i)<Flash.*>"]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+""+`
-
-* [[option_weechat.look.highlight_regex]] *weechat.look.highlight_regex*
-** descrizione: pass:none[POSIX extended regular expression used to check if a message has highlight or not, at least one match in string must be surrounded by delimiters (chars different from: alphanumeric, "-", "_" and "|"), regular expression is case insensitive (use "(?-i)" at beginning to make it case sensitive), examples: "flashcode|flashy", "(?-i)FlashCode|flashy"]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+""+`
-
-* [[option_weechat.look.highlight_tags]] *weechat.look.highlight_tags*
-** descrizione: pass:none[comma separated list of tags to highlight; case insensitive comparison; wildcard "*" is allowed in each tag; many tags can be separated by "+" to make a logical "and" between tags; examples: "nick_flashcode" for messages from nick "FlashCode", "irc_notice+nick_toto*" for notices from a nick starting with "toto"]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+""+`
-
-* [[option_weechat.look.hotlist_add_conditions]] *weechat.look.hotlist_add_conditions*
-** descrizione: pass:none[conditions to add a buffer in hotlist (if notify level is OK for the buffer); you can use in these conditions: "window" (current window pointer), "buffer" (buffer pointer to add in hotlist), "priority" (0 = low, 1 = message, 2 = private, 3 = highlight); by default a buffer is added to hotlist if you are away, or if the buffer is not visible on screen (not displayed in any window), or if at least one relay client is connected via the weechat protocol]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+"${away} || ${buffer.num_displayed} == 0 || ${info:relay_client_count,weechat,connected} > 0"+`
-
-* [[option_weechat.look.hotlist_buffer_separator]] *weechat.look.hotlist_buffer_separator*
-** descrizione: pass:none[stringa mostrata tra i buffer nella hotlist]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+", "+`
-
-* [[option_weechat.look.hotlist_count_max]] *weechat.look.hotlist_count_max*
-** descrizione: pass:none[max number of messages count to display in hotlist for a buffer: 0 = never display messages count, other number = display max N messages count (from the highest to lowest priority)]
-** tipo: intero
-** valori: 0 .. 4
-** valore predefinito: `+2+`
-
-* [[option_weechat.look.hotlist_count_min_msg]] *weechat.look.hotlist_count_min_msg*
-** descrizione: pass:none[mostra il conteggio dei messaggi se il numero di messaggi è maggiore o uguale a questo valore]
-** tipo: intero
-** valori: 1 .. 100
-** valore predefinito: `+2+`
-
-* [[option_weechat.look.hotlist_names_count]] *weechat.look.hotlist_names_count*
-** descrizione: pass:none[numero massimo di nomi nella hotlist (0 = nessun nome visualizzato, solo numeri dei buffer)]
-** tipo: intero
-** valori: 0 .. 10000
-** valore predefinito: `+3+`
-
-* [[option_weechat.look.hotlist_names_length]] *weechat.look.hotlist_names_length*
-** descrizione: pass:none[lunghezza massima dei nomi nella hotlist (0 = nessun limite)]
-** tipo: intero
-** valori: 0 .. 32
-** valore predefinito: `+0+`
-
-* [[option_weechat.look.hotlist_names_level]] *weechat.look.hotlist_names_level*
-** descrizione: pass:none[livello per la visualizzazione dei nomi nella hotlist (combinazione di: 1=entrata/uscita, 2=messaggio, 4=privato, 8=notifica, per esempio: 12=privato+notifica)]
-** tipo: intero
-** valori: 1 .. 15
-** valore predefinito: `+12+`
-
-* [[option_weechat.look.hotlist_names_merged_buffers]] *weechat.look.hotlist_names_merged_buffers*
-** descrizione: pass:none[se impostato, forza la visualizzazione dei nomi nella hotlist per i buffer uniti]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+off+`
-
-* [[option_weechat.look.hotlist_prefix]] *weechat.look.hotlist_prefix*
-** descrizione: pass:none[testo mostrato in cima alla hotlist]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+"H: "+`
-
-* [[option_weechat.look.hotlist_remove]] *weechat.look.hotlist_remove*
-** descrizione: pass:none[remove buffers in hotlist: buffer = remove buffer by buffer, merged = remove all visible merged buffers at once]
-** tipo: intero
-** valori: buffer, merged
-** valore predefinito: `+merged+`
-
-* [[option_weechat.look.hotlist_short_names]] *weechat.look.hotlist_short_names*
-** descrizione: pass:none[if set, uses short names to display buffer names in hotlist (start after first "." in name)]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+on+`
-
-* [[option_weechat.look.hotlist_sort]] *weechat.look.hotlist_sort*
-** descrizione: pass:none[sort of hotlist: group_time_*: group by notify level (highlights first) then sort by time, group_number_*: group by notify level (highlights first) then sort by number, number_*: sort by number; asc = ascending sort, desc = descending sort]
-** tipo: intero
-** valori: group_time_asc, group_time_desc, group_number_asc, group_number_desc, number_asc, number_desc
-** valore predefinito: `+group_time_asc+`
-
-* [[option_weechat.look.hotlist_suffix]] *weechat.look.hotlist_suffix*
-** descrizione: pass:none[testo mostrato in fondo alla hotlist]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+""+`
-
-* [[option_weechat.look.hotlist_unique_numbers]] *weechat.look.hotlist_unique_numbers*
-** descrizione: pass:none[mantiene solo numeri univoci nella hotlist (vale solo per gli elementi della hotlist per cui il nome NON viene visualizzato dopo il numero)]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+on+`
-
-* [[option_weechat.look.hotlist_update_on_buffer_switch]] *weechat.look.hotlist_update_on_buffer_switch*
-** descrizione: pass:none[update the hotlist when switching buffers]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+on+`
-
-* [[option_weechat.look.input_cursor_scroll]] *weechat.look.input_cursor_scroll*
-** descrizione: pass:none[numero di caratteri mostrati dopo la fine della riga di input quando si scorre per mostrare la fine riga]
-** tipo: intero
-** valori: 0 .. 100
-** valore predefinito: `+20+`
-
-* [[option_weechat.look.input_share]] *weechat.look.input_share*
-** descrizione: pass:none[condivide comandi, testo o entrambi nell'input per tutti i buffer (resta tuttavia la cronologia locale per ogni buffer)]
-** tipo: intero
-** valori: none, commands, text, all
-** valore predefinito: `+none+`
-
-* [[option_weechat.look.input_share_overwrite]] *weechat.look.input_share_overwrite*
-** descrizione: pass:none[se impostato e con l'input condiviso, sovrascrive sempre l'input nel buffer di destinazione]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+off+`
-
-* [[option_weechat.look.input_undo_max]] *weechat.look.input_undo_max*
-** descrizione: pass:none[numero massimo di righe nella cronologia per buffer (0 = nessun limite)]
-** tipo: intero
-** valori: 0 .. 65535
-** valore predefinito: `+32+`
-
-* [[option_weechat.look.item_away_message]] *weechat.look.item_away_message*
-** descrizione: pass:none[mostra il messaggio di assenza del server nell'elemento barra di away]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+on+`
-
-* [[option_weechat.look.item_buffer_filter]] *weechat.look.item_buffer_filter*
-** descrizione: pass:none[stringa usata per mostrare che alcune righe sono state filtrate nel buffer corrente (elemento barra "buffer_filter")]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+"*"+`
-
-* [[option_weechat.look.item_buffer_zoom]] *weechat.look.item_buffer_zoom*
-** descrizione: pass:none[string used to show zoom on merged buffer (bar item "buffer_zoom")]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+"!"+`
-
-* [[option_weechat.look.item_mouse_status]] *weechat.look.item_mouse_status*
-** descrizione: pass:none[string used to show if mouse is enabled (bar item "mouse_status")]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+"M"+`
-
-* [[option_weechat.look.item_time_format]] *weechat.look.item_time_format*
-** descrizione: pass:none[time format for "time" bar item (see man strftime for date/time specifiers) (note: content is evaluated, so you can use colors with format "${color:xxx}", see /help eval)]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+"%H:%M"+`
-
-* [[option_weechat.look.jump_current_to_previous_buffer]] *weechat.look.jump_current_to_previous_buffer*
-** descrizione: pass:none[passa al buffer visualizzato in precedenza al passaggio del numero di buffer corrente con /buffer *N (dove N è un numero di buffer), per passare facilmente ad un altro buffer, e poi tornare a quello attuale]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+on+`
-
-* [[option_weechat.look.jump_previous_buffer_when_closing]] *weechat.look.jump_previous_buffer_when_closing*
-** descrizione: pass:none[passa al buffer visitato in precedenza alla chiusura di un buffer (se disabilitato, allora passa al buffer numero -1)]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+on+`
-
-* [[option_weechat.look.jump_smart_back_to_buffer]] *weechat.look.jump_smart_back_to_buffer*
-** descrizione: pass:none[torna al buffer iniziale dopo aver raggiunto la fine della hotlist]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+on+`
-
-* [[option_weechat.look.key_bind_safe]] *weechat.look.key_bind_safe*
-** descrizione: pass:none[consente solo l'associazione di tasti "sicuri" (che iniziano con ctrl o alt)]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+on+`
-
-* [[option_weechat.look.key_grab_delay]] *weechat.look.key_grab_delay*
-** descrizione: pass:none[default delay (in milliseconds) to grab a key (using default key alt-k); this delay can be overridden in the /input command (see /help input)]
-** tipo: intero
-** valori: 1 .. 10000
-** valore predefinito: `+800+`
-
-* [[option_weechat.look.mouse]] *weechat.look.mouse*
-** descrizione: pass:none[abilita il supporto del mouse]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+off+`
-
-* [[option_weechat.look.mouse_timer_delay]] *weechat.look.mouse_timer_delay*
-** descrizione: pass:none[ritardo (in millisecondi) per catturare un evento del mouse: WeeChat attende questo ritardo prima di analizzare l'evento]
-** tipo: intero
-** valori: 1 .. 10000
-** valore predefinito: `+100+`
-
-* [[option_weechat.look.nick_color_force]] *weechat.look.nick_color_force*
-** descrizione: pass:none[force color for some nicks: hash computed with nickname to find color will not be used for these nicks (format is: "nick1:color1;nick2:color2"); look up for nicks is with exact case then lower case, so it's possible to use only lower case for nicks in this option; color can include background with the format "text,background", for example "yellow,red"]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+""+`
-
-* [[option_weechat.look.nick_color_hash]] *weechat.look.nick_color_hash*
-** descrizione: pass:none[hash algorithm used to find the color for a nick: djb2 = variant of djb2 (position of letters matters: anagrams of a nick have different color), djb2_32 = variant of djb2 using 32-bit instead of 64-bit integer, sum = sum of letters, sum_32 = sum of letters using 32-bit instead of 64-bit integer]
-** tipo: intero
-** valori: djb2, sum, djb2_32, sum_32
-** valore predefinito: `+djb2+`
-
-* [[option_weechat.look.nick_color_hash_salt]] *weechat.look.nick_color_hash_salt*
-** descrizione: pass:none[salt for the hash algorithm used to find nick colors (the nickname is appended to this salt and the hash algorithm operates on this string); modifying this shuffles nick colors]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+""+`
-
-* [[option_weechat.look.nick_color_stop_chars]] *weechat.look.nick_color_stop_chars*
-** descrizione: pass:none[chars used to stop in nick when computing color with letters of nick (at least one char outside this list must be in string before stopping) (example: nick "|nick|away" with "|" in chars will return color of nick "|nick"); this option has an impact on option weechat.look.nick_color_force, so the nick for the forced color must not contain the chars ignored by this option]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+"_|["+`
-
-* [[option_weechat.look.nick_prefix]] *weechat.look.nick_prefix*
-** descrizione: pass:none[testo da visualizzare prima del nick nel prefisso del messaggio, esempio: "<"]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+""+`
-
-* [[option_weechat.look.nick_suffix]] *weechat.look.nick_suffix*
-** descrizione: pass:none[testo da visualizzare dopo il nick nel prefisso del messaggio, esempio: ">"]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+""+`
-
-* [[option_weechat.look.paste_auto_add_newline]] *weechat.look.paste_auto_add_newline*
-** descrizione: pass:none[automatically add a newline at the end of pasted text if there are at least two lines and if a confirmation is asked]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+on+`
-
-* [[option_weechat.look.paste_bracketed]] *weechat.look.paste_bracketed*
-** descrizione: pass:none[abilita la modalità "bracketed paste" per il terminale (non supportata da tutti i terminali/multiplexer): in questa modalità, il testo incollato viene racchiuso da sequenze di controllo in modo che WeeChat possa differenziare il testo incollato dal testo digitato ("ESC[200~", seguito dal testo incollato, seguito da "ESC[201~")]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+on+`
-
-* [[option_weechat.look.paste_bracketed_timer_delay]] *weechat.look.paste_bracketed_timer_delay*
-** descrizione: pass:none[forza la fine della modalità "bracketed paste" dopo questo ritardo (in secondi) se la sequenza di controllo per la fine del "bracketed paste" ("ESC[201~") non è stata ricevuta in tempo]
-** tipo: intero
-** valori: 1 .. 60
-** valore predefinito: `+10+`
-
-* [[option_weechat.look.paste_max_lines]] *weechat.look.paste_max_lines*
-** descrizione: pass:none[max number of lines for paste without asking user (-1 = disable this feature); this option is used only if the bar item "input_paste" is used in at least one bar (by default it is used in "input" bar)]
-** tipo: intero
-** valori: -1 .. 2147483647
-** valore predefinito: `+1+`
-
-* [[option_weechat.look.prefix_action]] *weechat.look.prefix_action*
-** descrizione: pass:none[prefix for action messages (note: content is evaluated, so you can use colors with format "${color:xxx}", see /help eval)]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+" *"+`
-
-* [[option_weechat.look.prefix_align]] *weechat.look.prefix_align*
-** descrizione: pass:none[allineamento prefisso (none, left, right (predefinito))]
-** tipo: intero
-** valori: none, left, right
-** valore predefinito: `+right+`
-
-* [[option_weechat.look.prefix_align_max]] *weechat.look.prefix_align_max*
-** descrizione: pass:none[dimensione massima prefisso (0 = nessuna dimensione massima)]
-** tipo: intero
-** valori: 0 .. 128
-** valore predefinito: `+0+`
-
-* [[option_weechat.look.prefix_align_min]] *weechat.look.prefix_align_min*
-** descrizione: pass:none[dimensione minima per il prefisso]
-** tipo: intero
-** valori: 0 .. 128
-** valore predefinito: `+0+`
-
-* [[option_weechat.look.prefix_align_more]] *weechat.look.prefix_align_more*
-** descrizione: pass:none[carattere da mostrare se il prefisso è troncato (deve essere esattamente un carattere sullo schermo)]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+"+"+`
-
-* [[option_weechat.look.prefix_align_more_after]] *weechat.look.prefix_align_more_after*
-** descrizione: pass:none[display the truncature char (by default "+") after the text (by replacing the space that should be displayed here); if disabled, the truncature char replaces last char of text]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+on+`
-
-* [[option_weechat.look.prefix_buffer_align]] *weechat.look.prefix_buffer_align*
-** descrizione: pass:none[prefisso di allineamento per il nome del buffer, quando più buffer vengono uniti con lo stesso numero (none (nessuno), left(sinistra), right(destra - predefinito)]
-** tipo: intero
-** valori: none, left, right
-** valore predefinito: `+right+`
-
-* [[option_weechat.look.prefix_buffer_align_max]] *weechat.look.prefix_buffer_align_max*
-** descrizione: pass:none[allineamento del prefisso per nome buffer, quando più buffer sono uniti con lo stesso numero (0 = nessuna dimensione massima)]
-** tipo: intero
-** valori: 0 .. 128
-** valore predefinito: `+0+`
-
-* [[option_weechat.look.prefix_buffer_align_more]] *weechat.look.prefix_buffer_align_more*
-** descrizione: pass:none[carattere da mostrare se il nome del buffer è troncato (quando più buffer vengono uniti con lo stesso numero) (deve essere esattamente un carattere su schermo)]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+"+"+`
-
-* [[option_weechat.look.prefix_buffer_align_more_after]] *weechat.look.prefix_buffer_align_more_after*
-** descrizione: pass:none[display the truncature char (by default "+") after the text (by replacing the space that should be displayed here); if disabled, the truncature char replaces last char of text]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+on+`
-
-* [[option_weechat.look.prefix_error]] *weechat.look.prefix_error*
-** descrizione: pass:none[prefisso per i messaggi di errore (nota: il contenuto viene valutato, per cui è possibile usare colori con il formato "${color:xxx}", consultare /help eval]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+"=!="+`
-
-* [[option_weechat.look.prefix_join]] *weechat.look.prefix_join*
-** descrizione: pass:none[prefix for join messages (note: content is evaluated, so you can use colors with format "${color:xxx}", see /help eval)]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+"-->"+`
-
-* [[option_weechat.look.prefix_network]] *weechat.look.prefix_network*
-** descrizione: pass:none[prefix for network messages (note: content is evaluated, so you can use colors with format "${color:xxx}", see /help eval)]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+"--"+`
-
-* [[option_weechat.look.prefix_quit]] *weechat.look.prefix_quit*
-** descrizione: pass:none[prefix for quit messages (note: content is evaluated, so you can use colors with format "${color:xxx}", see /help eval)]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+"<--"+`
-
-* [[option_weechat.look.prefix_same_nick]] *weechat.look.prefix_same_nick*
-** descrizione: pass:none[prefix displayed for a message with same nick as previous but not next message: use a space " " to hide prefix, another string to display this string instead of prefix, or an empty string to disable feature (display prefix)]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+""+`
-
-* [[option_weechat.look.prefix_same_nick_middle]] *weechat.look.prefix_same_nick_middle*
-** descrizione: pass:none[prefix displayed for a message with same nick as previous and next message: use a space " " to hide prefix, another string to display this string instead of prefix, or an empty string to disable feature (display prefix)]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+""+`
-
-* [[option_weechat.look.prefix_suffix]] *weechat.look.prefix_suffix*
-** descrizione: pass:none[stringa visualizzata dopo il prefisso]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+"|"+`
-
-* [[option_weechat.look.quote_nick_prefix]] *weechat.look.quote_nick_prefix*
-** descrizione: pass:none[text to display before nick when quoting a message (see /help cursor)]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+"<"+`
-
-* [[option_weechat.look.quote_nick_suffix]] *weechat.look.quote_nick_suffix*
-** descrizione: pass:none[text to display after nick when quoting a message (see /help cursor)]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+">"+`
-
-* [[option_weechat.look.quote_time_format]] *weechat.look.quote_time_format*
-** descrizione: pass:none[time format when quoting a message (see /help cursor)]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+"%H:%M:%S"+`
-
-* [[option_weechat.look.read_marker]] *weechat.look.read_marker*
-** descrizione: pass:none[usa segnalibro (riga o carattere) sui buffer per mostrare la prima riga non letta]
-** tipo: intero
-** valori: none, line, char
-** valore predefinito: `+line+`
-
-* [[option_weechat.look.read_marker_always_show]] *weechat.look.read_marker_always_show*
-** descrizione: pass:none[mostra sempre il segnalibro, anche se si trova dopo l'ultima riga del buffer]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+off+`
-
-* [[option_weechat.look.read_marker_string]] *weechat.look.read_marker_string*
-** descrizione: pass:none[stringa usata per tracciare il segnalibro (la stringa viene ripetuta fino a fine riga)]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+"- "+`
-
-* [[option_weechat.look.read_marker_update_on_buffer_switch]] *weechat.look.read_marker_update_on_buffer_switch*
-** descrizione: pass:none[update the read marker when switching buffers]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+on+`
-
-* [[option_weechat.look.save_config_on_exit]] *weechat.look.save_config_on_exit*
-** descrizione: pass:none[salva file di configurazione all'uscita]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+on+`
-
-* [[option_weechat.look.save_config_with_fsync]] *weechat.look.save_config_with_fsync*
-** descrizione: pass:none[use fsync to synchronize the configuration file with the storage device (see man fsync); this is slower but should prevent any data loss in case of power failure during the save of configuration file]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+off+`
-
-* [[option_weechat.look.save_layout_on_exit]] *weechat.look.save_layout_on_exit*
-** descrizione: pass:none[save layout on exit (buffers, windows, or both)]
-** tipo: intero
-** valori: none, buffers, windows, all
-** valore predefinito: `+none+`
-
-* [[option_weechat.look.scroll_amount]] *weechat.look.scroll_amount*
-** descrizione: pass:none[le righe da scorrere con scroll_up e scroll_down]
-** tipo: intero
-** valori: 1 .. 2147483647
-** valore predefinito: `+3+`
-
-* [[option_weechat.look.scroll_bottom_after_switch]] *weechat.look.scroll_bottom_after_switch*
-** descrizione: pass:none[scorri verso il fondo della finestra dopo essere passati ad un altro buffer non ricordare la posizione di scorrimento nelle finestre); lo scorrimento viene eseguito solo per i buffer con contenuto formattato (contenuto non libero)]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+off+`
-
-* [[option_weechat.look.scroll_page_percent]] *weechat.look.scroll_page_percent*
-** descrizione: pass:none[percentuale della schermata da scorrere in alto o in basso (per esempio 100 indica una pagina intera, 50 metà)]
-** tipo: intero
-** valori: 1 .. 100
-** valore predefinito: `+100+`
-
-* [[option_weechat.look.search_text_not_found_alert]] *weechat.look.search_text_not_found_alert*
-** descrizione: pass:none[avvisa l'utente quando il testo cercato non viene trovato nel buffer]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+on+`
-
-* [[option_weechat.look.separator_horizontal]] *weechat.look.separator_horizontal*
-** descrizione: pass:none[char used to draw horizontal separators around bars and windows (empty value will draw a real line with ncurses, but may cause bugs with URL selection under some terminals); width on screen must be exactly one char]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+"-"+`
-
-* [[option_weechat.look.separator_vertical]] *weechat.look.separator_vertical*
-** descrizione: pass:none[char used to draw vertical separators around bars and windows (empty value will draw a real line with ncurses); width on screen must be exactly one char]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+""+`
-
-* [[option_weechat.look.tab_width]] *weechat.look.tab_width*
-** descrizione: pass:none[number of spaces used to display tabs in messages]
-** tipo: intero
-** valori: 1 .. 64
-** valore predefinito: `+1+`
-
-* [[option_weechat.look.time_format]] *weechat.look.time_format*
-** descrizione: pass:none[formato dell'ora per le date convertite in stringhe e mostrate nei messaggi(consultare man strftime per i dettagli su data/ora)]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+"%a, %d %b %Y %T"+`
-
-* [[option_weechat.look.window_auto_zoom]] *weechat.look.window_auto_zoom*
-** descrizione: pass:none[automatically zoom on current window if the terminal becomes too small to display all windows (use alt-z to unzoom windows when the terminal is big enough)]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+off+`
-
-* [[option_weechat.look.window_separator_horizontal]] *weechat.look.window_separator_horizontal*
-** descrizione: pass:none[mostra un separatore orizzontale tra le finestre]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+on+`
-
-* [[option_weechat.look.window_separator_vertical]] *weechat.look.window_separator_vertical*
-** descrizione: pass:none[mostra un separatore verticale tra le finestre]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+on+`
-
-* [[option_weechat.look.window_title]] *weechat.look.window_title*
-** descrizione: pass:none[title for window (terminal for Curses GUI), set on startup; an empty string will keep title unchanged (note: content is evaluated, see /help eval); example: "WeeChat ${info:version}"]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+""+`
-
-* [[option_weechat.look.word_chars_highlight]] *weechat.look.word_chars_highlight*
-** descrizione: pass:none[comma-separated list of chars (or range of chars) that are considered part of words for highlights; each item can be a single char, a range of chars (format: a-z), a class of wide character (for example "alnum", see man wctype); a "!" before the item makes it negative (ie the char is NOT considered part of words); the value "*" matches any char; unicode chars are allowed with the format \u1234, for example \u00A0 for unbreakable space (see /help print for supported formats)]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+"!\u00A0,-,_,|,alnum"+`
-
-* [[option_weechat.look.word_chars_input]] *weechat.look.word_chars_input*
-** descrizione: pass:none[comma-separated list of chars (or range of chars) that are considered part of words for command line; each item can be a single char, a range of chars (format: a-z), a class of wide character (for example "alnum", see man wctype); a "!" before the item makes it negative (ie the char is NOT considered part of words); the value "*" matches any char; unicode chars are allowed with the format \u1234, for example \u00A0 for unbreakable space (see /help print for supported formats)]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+"!\u00A0,-,_,|,alnum"+`
-
-* [[option_weechat.network.connection_timeout]] *weechat.network.connection_timeout*
-** descrizione: pass:none[timeout (in secondi) per la connessione ad un host remoto (eseguita in un processo figlio)]
-** tipo: intero
-** valori: 1 .. 2147483647
-** valore predefinito: `+60+`
-
-* [[option_weechat.network.gnutls_ca_system]] *weechat.network.gnutls_ca_system*
-** descrizione: pass:none[load system's default trusted certificate authorities on startup; this can be turned off to save some memory only if you are not using SSL connections at all]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+on+`
-
-* [[option_weechat.network.gnutls_ca_user]] *weechat.network.gnutls_ca_user*
-** descrizione: pass:none[extra file(s) with certificate authorities; multiple files must be separated by colons (each path is evaluated, see function string_eval_path_home in plugin API reference)]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+""+`
-
-* [[option_weechat.network.gnutls_handshake_timeout]] *weechat.network.gnutls_handshake_timeout*
-** descrizione: pass:none[timeout (in secondi) per l'handshake di gnutls]
-** tipo: intero
-** valori: 1 .. 2147483647
-** valore predefinito: `+30+`
-
-* [[option_weechat.network.proxy_curl]] *weechat.network.proxy_curl*
-** descrizione: pass:none[name of proxy used for download of URLs with Curl (used to download list of scripts and in scripts calling function hook_process); the proxy must be defined with command /proxy]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+""+`
-
-* [[option_weechat.plugin.autoload]] *weechat.plugin.autoload*
-** descrizione: pass:none[comma separated list of plugins to load automatically at startup, "*" means all plugins found, a name beginning with "!" is a negative value to prevent a plugin from being loaded, wildcard "*" is allowed in names (examples: "*" or "*,!lua,!tcl")]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+"*"+`
-
-* [[option_weechat.plugin.extension]] *weechat.plugin.extension*
-** descrizione: pass:none[elenco separato da virgole di estensioni dei nomi file per i plugin]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+".so,.dll"+`
-
-* [[option_weechat.plugin.path]] *weechat.plugin.path*
-** descrizione: pass:none[path for searching plugins (path is evaluated, see function string_eval_path_home in plugin API reference)]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+"${weechat_data_dir}/plugins"+`
-
-* [[option_weechat.plugin.save_config_on_unload]] *weechat.plugin.save_config_on_unload*
-** descrizione: pass:none[salva i file di configurazione allo scaricamento dei plugin]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+on+`
-
-* [[option_weechat.signal.sighup]] *weechat.signal.sighup*
-** descrizione: pass:none[command to execute when the signal is received, multiple commands can be separated by semicolons (note: commands are evaluated, see /help eval)]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+"${if:${info:weechat_headless}?/reload:/quit -yes}"+`
-
-* [[option_weechat.signal.sigquit]] *weechat.signal.sigquit*
-** descrizione: pass:none[command to execute when the signal is received, multiple commands can be separated by semicolons (note: commands are evaluated, see /help eval)]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+"/quit -yes"+`
-
-* [[option_weechat.signal.sigterm]] *weechat.signal.sigterm*
-** descrizione: pass:none[command to execute when the signal is received, multiple commands can be separated by semicolons (note: commands are evaluated, see /help eval)]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+"/quit -yes"+`
-
-* [[option_weechat.signal.sigusr1]] *weechat.signal.sigusr1*
-** descrizione: pass:none[command to execute when the signal is received, multiple commands can be separated by semicolons (note: commands are evaluated, see /help eval)]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+""+`
-
-* [[option_weechat.signal.sigusr2]] *weechat.signal.sigusr2*
-** descrizione: pass:none[command to execute when the signal is received, multiple commands can be separated by semicolons (note: commands are evaluated, see /help eval)]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+""+`
-
-* [[option_weechat.startup.command_after_plugins]] *weechat.startup.command_after_plugins*
-** descrizione: pass:none[command executed when WeeChat starts, after loading plugins; multiple commands can be separated by semicolons (note: commands are evaluated, see /help eval)]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+""+`
-
-* [[option_weechat.startup.command_before_plugins]] *weechat.startup.command_before_plugins*
-** descrizione: pass:none[command executed when WeeChat starts, before loading plugins; multiple commands can be separated by semicolons (note: commands are evaluated, see /help eval)]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+""+`
-
-* [[option_weechat.startup.display_logo]] *weechat.startup.display_logo*
-** descrizione: pass:none[mostra il logo di WeeChat all'avvio]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+on+`
-
-* [[option_weechat.startup.display_version]] *weechat.startup.display_version*
-** descrizione: pass:none[mostra la versione di WeeChat all'avvio]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+on+`
-
-* [[option_weechat.startup.sys_rlimit]] *weechat.startup.sys_rlimit*
-** descrizione: pass:none[imposta limite delle risorse per il processo WeeChat, il formato è: "res1:limit1,res2,limit2"; il nome della risorsa è il componente finale della costante (RLIMIT_XXX) in caratteri minuscoli (consultare man setrlimit per i valori); il limite -1 vuol dire "illimitato"; esempio: imposta dimensione illimitata per il file core e 1GB massimo di memoria virtuale: "core:-1,as:1000000000"]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+""+`
-// end::weechat_options[]
-
-// tag::charset_options[]
-* [[option_charset.default.decode]] *charset.default.decode*
-** descrizione: pass:none[global decoding charset: charset used to decode incoming messages when they are not UTF-8 valid]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+"iso-8859-1"+`
-
-* [[option_charset.default.encode]] *charset.default.encode*
-** descrizione: pass:none[global encoding charset: charset used to encode outgoing messages (if empty, default is UTF-8 because it is the WeeChat internal charset)]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+""+`
-// end::charset_options[]
+** valore predefinito: `+yellow+`
-// tag::logger_options[]
-* [[option_logger.color.backlog_end]] *logger.color.backlog_end*
-** descrizione: pass:none[colore per la riga finale nella cronologia]
+* [[option_fset.color.section_selected]] *fset.color.section_selected*
+** descrizione: pass:none[color for section on the selected line]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+default+`
+** valore predefinito: `+white+`
-* [[option_logger.color.backlog_line]] *logger.color.backlog_line*
-** descrizione: pass:none[color for backlog lines, used only if the option logger.file.color_lines is off]
+* [[option_fset.color.string_values]] *fset.color.string_values*
+** descrizione: pass:none[color for string values]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** valore predefinito: `+default+`
-* [[option_logger.file.auto_log]] *logger.file.auto_log*
-** descrizione: pass:none[automatically save content of buffers to files (unless a buffer disables log); if disabled, logging is disabled on all buffers]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+on+`
-
-* [[option_logger.file.color_lines]] *logger.file.color_lines*
-** descrizione: pass:none[use ANSI color codes in lines written in log files and display backlog lines with these colors]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+off+`
-
-* [[option_logger.file.flush_delay]] *logger.file.flush_delay*
-** descrizione: pass:none[numero di secondi tra il flush (scrittura) dei file di log (0 = scrive sui file di log immediatamente per ogni riga stampata)]
-** tipo: intero
-** valori: 0 .. 3600
-** valore predefinito: `+120+`
-
-* [[option_logger.file.fsync]] *logger.file.fsync*
-** descrizione: pass:none[use fsync to synchronize the log file with the storage device after the flush (see man fsync); this is slower but should prevent any data loss in case of power failure during the save of log file]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+off+`
-
-* [[option_logger.file.info_lines]] *logger.file.info_lines*
-** descrizione: pass:none[scrive una riga informativa nel file di log quando il log inizia o termina per un buffer]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+off+`
-
-* [[option_logger.file.mask]] *logger.file.mask*
-** descrizione: pass:none[default file name mask for log files (format is "directory/to/file" or "file", without first "/" because "path" option is used to build complete path to file); local buffer variables are permitted (you should use only variables that are defined on all buffers, so for example you should NOT use $server nor $channel); date specifiers are permitted (see man strftime)]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+"$plugin.$name.weechatlog"+`
-
-* [[option_logger.file.name_lower_case]] *logger.file.name_lower_case*
-** descrizione: pass:none[usare solo lettere minuscole per i nomi dei file di log]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+on+`
-
-* [[option_logger.file.nick_prefix]] *logger.file.nick_prefix*
-** descrizione: pass:none[testo da scrivere prima del nick nel prefisso del messaggo, esempio: "<"]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+""+`
-
-* [[option_logger.file.nick_suffix]] *logger.file.nick_suffix*
-** descrizione: pass:none[testo da scrivere dopo il nick nel prefisso del messaggo, esempio: "<"]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+""+`
-
-* [[option_logger.file.path]] *logger.file.path*
-** descrizione: pass:none[path for WeeChat log files; date specifiers are permitted (see man strftime) (path is evaluated, see function string_eval_path_home in plugin API reference)]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+"${weechat_data_dir}/logs"+`
-
-* [[option_logger.file.replacement_char]] *logger.file.replacement_char*
-** descrizione: pass:none[carattere di sostituzione per i caratteri speciali nei nomi dei file salvati con la mask (come il delimitatore di directory)]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+"_"+`
-
-* [[option_logger.file.rotation_compression_level]] *logger.file.rotation_compression_level*
-** descrizione: pass:none[compression level for rotated log files (with extension ".1", ".2", etc.), if option logger.file.rotation_compression_type is enabled: 1 = low compression / fast ... 100 = best compression / slow; the value is a percentage converted to 1-9 for gzip and 1-19 for zstd; the default value is recommended, it offers a good compromise between compression and speed]
-** tipo: intero
-** valori: 1 .. 100
-** valore predefinito: `+20+`
-
-* [[option_logger.file.rotation_compression_type]] *logger.file.rotation_compression_type*
-** descrizione: pass:none[compression type for rotated log files; if set to "none", rotated log files are not compressed; WARNING: if rotation was enabled with another type of compression (or no compression), you must first unload the logger plugin, compress files with the new type (or decompress files), then change the option in logger.conf, then load the logger plugin]
-** tipo: intero
-** valori: none, gzip, zstd
-** valore predefinito: `+none+`
-
-* [[option_logger.file.rotation_size_max]] *logger.file.rotation_size_max*
-** descrizione: pass:none[when this size is reached, a rotation of log files is performed: the existing rotated log files are renamed (.1 becomes .2, .2 becomes .3, etc.) and the current file is renamed with extension .1; an integer number with a suffix is allowed: b = bytes (default if no unit given), k = kilobytes, m = megabytes, g = gigabytes, t = terabytes; example: "2g" causes a rotation if the file size is > 2,000,000,000 bytes; if set to "0", no rotation is performed (unlimited log size); WARNING: before changing this option, you should first set the compression type via option logger.file.rotation_compression_type]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+"0"+`
-
-* [[option_logger.file.time_format]] *logger.file.time_format*
-** descrizione: pass:none[data e ora usati nei file di log (consultare man strftime per gli specificatori di data/ora)]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+"%Y-%m-%d %H:%M:%S"+`
-
-* [[option_logger.look.backlog]] *logger.look.backlog*
-** descrizione: pass:none[numero massimo di righe da visualizzare dal file di log alla creazione di un nuovo buffer (0 = nessuna cronologia)]
-** tipo: intero
-** valori: 0 .. 2147483647
-** valore predefinito: `+20+`
-
-* [[option_logger.look.backlog_conditions]] *logger.look.backlog_conditions*
-** descrizione: pass:none[conditions to display the backlog (note: content is evaluated, see /help eval); empty value displays the backlog on all buffers; for example to display backlog on private buffers only: "${type} == private"]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+""+`
-// end::logger_options[]
-
-// tag::exec_options[]
-* [[option_exec.color.flag_finished]] *exec.color.flag_finished*
-** descrizione: pass:none[text color for a finished command flag in list of commands]
+* [[option_fset.color.string_values_selected]] *fset.color.string_values_selected*
+** descrizione: pass:none[color for string values on the selected line]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+lightred+`
+** valore predefinito: `+white+`
-* [[option_exec.color.flag_running]] *exec.color.flag_running*
-** descrizione: pass:none[text color for a running command flag in list of commands]
+* [[option_fset.color.title_count_options]] *fset.color.title_count_options*
+** descrizione: pass:none[color for the count of options found with the current filter in title of buffer]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+lightgreen+`
-
-* [[option_exec.command.default_options]] *exec.command.default_options*
-** descrizione: pass:none[default options for command /exec (see /help exec); example: "-nosh -bg" to run all commands in background (no output), and without using the shell]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+""+`
-
-* [[option_exec.command.purge_delay]] *exec.command.purge_delay*
-** descrizione: pass:none[delay for purging finished commands (in seconds, 0 = purge commands immediately, -1 = never purge)]
-** tipo: intero
-** valori: -1 .. 25920000
-** valore predefinito: `+0+`
-
-* [[option_exec.command.shell]] *exec.command.shell*
-** descrizione: pass:none[shell to use with command "/exec -sh"; it can be just the name of shell if it is in PATH (for example "bash") or the absolute path to the shell (for example "/bin/bash"); if value is empty, "sh" is used (note: content is evaluated, see /help eval)]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+"${env:SHELL}"+`
-// end::exec_options[]
+** valore predefinito: `+cyan+`
-// tag::trigger_options[]
-* [[option_trigger.color.flag_command]] *trigger.color.flag_command*
-** descrizione: pass:none[text color for command flag (in /trigger list)]
+* [[option_fset.color.title_current_option]] *fset.color.title_current_option*
+** descrizione: pass:none[color for current option number in title of buffer]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+lightgreen+`
+** valore predefinito: `+lightcyan+`
-* [[option_trigger.color.flag_conditions]] *trigger.color.flag_conditions*
-** descrizione: pass:none[text color for conditions flag (in /trigger list)]
+* [[option_fset.color.title_filter]] *fset.color.title_filter*
+** descrizione: pass:none[color for filter in title of buffer]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** valore predefinito: `+yellow+`
-* [[option_trigger.color.flag_post_action]] *trigger.color.flag_post_action*
-** descrizione: pass:none[text color for post action flag (in /trigger list)]
+* [[option_fset.color.title_marked_options]] *fset.color.title_marked_options*
+** descrizione: pass:none[color for number of marked options in title of buffer]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+lightblue+`
+** valore predefinito: `+lightgreen+`
-* [[option_trigger.color.flag_regex]] *trigger.color.flag_regex*
-** descrizione: pass:none[text color for regex flag (in /trigger list)]
+* [[option_fset.color.title_sort]] *fset.color.title_sort*
+** descrizione: pass:none[color for sort in title of buffer]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+lightcyan+`
+** valore predefinito: `+white+`
-* [[option_trigger.color.flag_return_code]] *trigger.color.flag_return_code*
-** descrizione: pass:none[text color for return code flag (in /trigger list)]
+* [[option_fset.color.type]] *fset.color.type*
+** descrizione: pass:none[color for type]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+lightmagenta+`
+** valore predefinito: `+green+`
-* [[option_trigger.color.identifier]] *trigger.color.identifier*
-** descrizione: pass:none[text color for trigger context identifier in monitor buffer]
+* [[option_fset.color.type_selected]] *fset.color.type_selected*
+** descrizione: pass:none[color for type on the selected line]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+cyan+`
+** valore predefinito: `+lightgreen+`
-* [[option_trigger.color.regex]] *trigger.color.regex*
-** descrizione: pass:none[text color for regular expressions]
+* [[option_fset.color.unmarked]] *fset.color.unmarked*
+** descrizione: pass:none[color for mark indicator when the option is not marked]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+white+`
+** valore predefinito: `+default+`
-* [[option_trigger.color.replace]] *trigger.color.replace*
-** descrizione: pass:none[text color for replacement text (for regular expressions)]
+* [[option_fset.color.unmarked_selected]] *fset.color.unmarked_selected*
+** descrizione: pass:none[color for mark indicator when the option is not marked on the selected line]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+cyan+`
+** valore predefinito: `+white+`
-* [[option_trigger.color.trigger]] *trigger.color.trigger*
-** descrizione: pass:none[text color for trigger name]
+* [[option_fset.color.value]] *fset.color.value*
+** descrizione: pass:none[color for value]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+green+`
+** valore predefinito: `+cyan+`
-* [[option_trigger.color.trigger_disabled]] *trigger.color.trigger_disabled*
-** descrizione: pass:none[text color for disabled trigger name]
+* [[option_fset.color.value_changed]] *fset.color.value_changed*
+** descrizione: pass:none[color for value changed (different from default)]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+red+`
-
-* [[option_trigger.look.enabled]] *trigger.look.enabled*
-** descrizione: pass:none[enable trigger support]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+on+`
-
-* [[option_trigger.look.monitor_strip_colors]] *trigger.look.monitor_strip_colors*
-** descrizione: pass:none[strip colors in hashtable values displayed on monitor buffer]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+off+`
-// end::trigger_options[]
-
-// tag::spell_options[]
-* [[option_spell.check.commands]] *spell.check.commands*
-** descrizione: pass:none[elenco separato da virgole di comandi per cui il controllo ortografico è abilitato (il controllo ortografico è disabilitato per tutti gli altri comandi)]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+"away,command,cycle,kick,kickban,me,msg,notice,part,query,quit,topic"+`
-
-* [[option_spell.check.default_dict]] *spell.check.default_dict*
-** descrizione: pass:none[default dictionary (or comma separated list of dictionaries) to use when buffer has no dictionary defined (leave blank to disable spell checker on buffers for which you didn't explicitly enabled it)]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+""+`
-
-* [[option_spell.check.during_search]] *spell.check.during_search*
-** descrizione: pass:none[controlla le parole durante la ricerca del testo nel buffer]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+off+`
-
-* [[option_spell.check.enabled]] *spell.check.enabled*
-** descrizione: pass:none[enable spell checker for command line]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+off+`
-
-* [[option_spell.check.real_time]] *spell.check.real_time*
-** descrizione: pass:none[controllo ortografico in tempo reale (più lento, disabilitato per default: le parole vengono controllate solo se seguite da un delimitatore)]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+off+`
-
-* [[option_spell.check.suggestions]] *spell.check.suggestions*
-** descrizione: pass:none[number of suggestions to display in bar item "spell_suggest" for each dictionary set in buffer (-1 = disable suggestions, 0 = display all possible suggestions in all languages)]
-** tipo: intero
-** valori: -1 .. 2147483647
-** valore predefinito: `+-1+`
-
-* [[option_spell.check.word_min_length]] *spell.check.word_min_length*
-** descrizione: pass:none[lunghezza minima per una parola da controllare (0 per controllarle tutte)]
-** tipo: intero
-** valori: 0 .. 2147483647
-** valore predefinito: `+2+`
+** valore predefinito: `+brown+`
-* [[option_spell.color.misspelled]] *spell.color.misspelled*
-** descrizione: pass:none[text color for misspelled words (input bar)]
+* [[option_fset.color.value_changed_selected]] *fset.color.value_changed_selected*
+** descrizione: pass:none[color for value changed (different from default) on the selected line]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+lightred+`
+** valore predefinito: `+yellow+`
-* [[option_spell.color.suggestion]] *spell.color.suggestion*
-** descrizione: pass:none[text color for suggestion on a misspelled word in bar item "spell_suggest"]
+* [[option_fset.color.value_selected]] *fset.color.value_selected*
+** descrizione: pass:none[color for value on the selected line]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+default+`
+** valore predefinito: `+lightcyan+`
-* [[option_spell.color.suggestion_delimiter_dict]] *spell.color.suggestion_delimiter_dict*
-** descrizione: pass:none[text color for delimiters displayed between two dictionaries in bar item "spell_suggest"]
+* [[option_fset.color.value_undef]] *fset.color.value_undef*
+** descrizione: pass:none[color for undefined value]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+cyan+`
+** valore predefinito: `+magenta+`
-* [[option_spell.color.suggestion_delimiter_word]] *spell.color.suggestion_delimiter_word*
-** descrizione: pass:none[text color for delimiters displayed between two words in bar item "spell_suggest"]
+* [[option_fset.color.value_undef_selected]] *fset.color.value_undef_selected*
+** descrizione: pass:none[color for undefined value on the selected line]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+cyan+`
-
-* [[option_spell.look.suggestion_delimiter_dict]] *spell.look.suggestion_delimiter_dict*
-** descrizione: pass:none[delimiter displayed between two dictionaries in bar item "spell_suggest"]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+" / "+`
-
-* [[option_spell.look.suggestion_delimiter_word]] *spell.look.suggestion_delimiter_word*
-** descrizione: pass:none[delimiter displayed between two words in bar item "spell_suggest"]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+","+`
-// end::spell_options[]
-
-// tag::buflist_options[]
-* [[option_buflist.format.buffer]] *buflist.format.buffer*
-** descrizione: pass:none[format of each line with a buffer (note: content is evaluated, see /help buflist); example: standard format for bar item "buflist" and only the buffer number between square brackets for other bar items ("buflist2" and "buflist3"): "${if:${bar_item.name}==buflist?${format_number}${indent}${format_nick_prefix}${color_hotlist}${format_name}:[${number}\]}"]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+"${format_number}${indent}${format_nick_prefix}${color_hotlist}${format_name}"+`
-
-* [[option_buflist.format.buffer_current]] *buflist.format.buffer_current*
-** descrizione: pass:none[format for the line with current buffer (note: content is evaluated, see /help buflist)]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+"${color:,blue}${format_buffer}"+`
-
-* [[option_buflist.format.hotlist]] *buflist.format.hotlist*
-** descrizione: pass:none[format for hotlist (note: content is evaluated, see /help buflist)]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+" ${color:green}(${hotlist}${color:green})"+`
-
-* [[option_buflist.format.hotlist_highlight]] *buflist.format.hotlist_highlight*
-** descrizione: pass:none[format for a buffer with hotlist level "highlight" (note: content is evaluated, see /help buflist)]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+"${color:magenta}"+`
-
-* [[option_buflist.format.hotlist_low]] *buflist.format.hotlist_low*
-** descrizione: pass:none[format for a buffer with hotlist level "low" (note: content is evaluated, see /help buflist)]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+"${color:white}"+`
-
-* [[option_buflist.format.hotlist_message]] *buflist.format.hotlist_message*
-** descrizione: pass:none[format for a buffer with hotlist level "message" (note: content is evaluated, see /help buflist)]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+"${color:brown}"+`
-
-* [[option_buflist.format.hotlist_none]] *buflist.format.hotlist_none*
-** descrizione: pass:none[format for a buffer not in hotlist (note: content is evaluated, see /help buflist)]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+"${color:default}"+`
-
-* [[option_buflist.format.hotlist_private]] *buflist.format.hotlist_private*
-** descrizione: pass:none[format for a buffer with hotlist level "private" (note: content is evaluated, see /help buflist)]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+"${color:green}"+`
-
-* [[option_buflist.format.hotlist_separator]] *buflist.format.hotlist_separator*
-** descrizione: pass:none[separator for counts in hotlist (note: content is evaluated, see /help buflist)]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+"${color:default},"+`
+** valore predefinito: `+lightmagenta+`
-* [[option_buflist.format.indent]] *buflist.format.indent*
-** descrizione: pass:none[string displayed to indent channel and private buffers (note: content is evaluated, see /help buflist)]
+* [[option_fset.format.export_help]] *fset.format.export_help*
+** descrizione: pass:none[format of help line written before each option exported in a file (note: content is evaluated, see /help fset)]
** tipo: stringa
** valori: qualsiasi stringa
-** valore predefinito: `+" "+`
+** valore predefinito: `+"# ${description2}"+`
-* [[option_buflist.format.lag]] *buflist.format.lag*
-** descrizione: pass:none[format for lag on an IRC server buffer (note: content is evaluated, see /help buflist)]
+* [[option_fset.format.export_option]] *fset.format.export_option*
+** descrizione: pass:none[format of each option exported in a file (note: content is evaluated, see /help fset)]
** tipo: stringa
** valori: qualsiasi stringa
-** valore predefinito: `+" ${color:green}[${color:brown}${lag}${color:green}]"+`
+** valore predefinito: `+"/set ${name} ${quoted_value}"+`
-* [[option_buflist.format.name]] *buflist.format.name*
-** descrizione: pass:none[format for buffer name (note: content is evaluated, see /help buflist)]
+* [[option_fset.format.export_option_null]] *fset.format.export_option_null*
+** descrizione: pass:none[format of each option with "null" value exported in a file (note: content is evaluated, see /help fset)]
** tipo: stringa
** valori: qualsiasi stringa
-** valore predefinito: `+"${name}"+`
+** valore predefinito: `+"/unset ${name}"+`
-* [[option_buflist.format.nick_prefix]] *buflist.format.nick_prefix*
-** descrizione: pass:none[format for nick prefix on a channel (note: content is evaluated, see /help buflist)]
+* [[option_fset.format.option1]] *fset.format.option1*
+** descrizione: pass:none[first format of each line, used when option fset.look.format_number is set to 1 (note: content is evaluated, see /help fset); an empty string uses the default format ("${marked} ${name} ${type} ${value2}"), which is without evaluation of string and then much faster; formats can be switched with key ctrl+X]
** tipo: stringa
** valori: qualsiasi stringa
-** valore predefinito: `+"${color_nick_prefix}${nick_prefix}"+`
+** valore predefinito: `+""+`
-* [[option_buflist.format.number]] *buflist.format.number*
-** descrizione: pass:none[format for buffer number, ${number} is the indented number (note: content is evaluated, see /help buflist)]
+* [[option_fset.format.option2]] *fset.format.option2*
+** descrizione: pass:none[second format of each line, used when option fset.look.format_number is set to 2 (note: content is evaluated, see /help fset); an empty string uses the default format ("${marked} ${name} ${type} ${value2}"), which is without evaluation of string and then much faster; formats can be switched with key ctrl+X]
** tipo: stringa
** valori: qualsiasi stringa
-** valore predefinito: `+"${color:green}${number}${if:${number_displayed}?.: }"+`
+** valore predefinito: `+"${marked} ${name} ${type} ${value2}${newline} ${empty_name} ${_default_value}${color:darkgray} -- ${min}..${max}${newline} ${empty_name} ${description}"+`
-* [[option_buflist.format.tls_version]] *buflist.format.tls_version*
-** descrizione: pass:none[format for TLS version on an IRC server buffer (note: content is evaluated, see /help buflist)]
+* [[option_fset.look.auto_refresh]] *fset.look.auto_refresh*
+** descrizione: pass:none[comma separated list of options to automatically refresh on the fset buffer (if opened); "*" means all options (recommended), a name beginning with "!" is a negative value to prevent an option to be refreshed, wildcard "*" is allowed in names (example: "*,!plugin.section.*")]
** tipo: stringa
** valori: qualsiasi stringa
-** valore predefinito: `+" ${color:default}(${if:${tls_version}==TLS1.3?${color:green}:${if:${tls_version}==TLS1.2?${color:yellow}:${color:red}}}${translate:${tls_version}}${color:default})"+`
+** valore predefinito: `+"*"+`
-* [[option_buflist.look.add_newline]] *buflist.look.add_newline*
-** descrizione: pass:none[add newline between the buffers displayed, so each buffer is displayed on a separate line (recommended); if disabled, newlines must be manually added in the formats with "${\n}", and the mouse actions are not possible any more]
+* [[option_fset.look.auto_unmark]] *fset.look.auto_unmark*
+** descrizione: pass:none[automatically unmark all options after an action on marked options or after a refresh]
** tipo: bool
** valori: on, off
-** valore predefinito: `+on+`
-
-* [[option_buflist.look.auto_scroll]] *buflist.look.auto_scroll*
-** descrizione: pass:none[automatically scroll the buflist bar to always see the current buffer (this works only with a bar on the left/right position with a "vertical" filling); this value is the percent number of lines displayed before the current buffer when scrolling (-1 = disable scroll); for example 50 means that after a scroll, the current buffer is at the middle of bar, 0 means on top of bar, 100 means at bottom of bar]
-** tipo: intero
-** valori: -1 .. 100
-** valore predefinito: `+50+`
+** valore predefinito: `+off+`
-* [[option_buflist.look.display_conditions]] *buflist.look.display_conditions*
-** descrizione: pass:none[conditions to display a buffer (note: content is evaluated, see /help buflist); for example to hide server buffers if they are merged with core buffer: "${buffer.hidden}==0 && ((${type}!=server && ${buffer.full_name}!=core.weechat) || ${buffer.active}==1)"]
+* [[option_fset.look.condition_catch_set]] *fset.look.condition_catch_set*
+** descrizione: 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]
** tipo: stringa
** valori: qualsiasi stringa
-** valore predefinito: `+"${buffer.hidden}==0"+`
-
-* [[option_buflist.look.enabled]] *buflist.look.enabled*
-** descrizione: pass:none[enable buflist; it is recommended to use this option instead of just hiding the bar because it also removes some internal hooks that are not needed any more when the bar is hidden; you can also use the command "/buflist toggle" or use the default key alt+shift+b]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+on+`
-
-* [[option_buflist.look.mouse_jump_visited_buffer]] *buflist.look.mouse_jump_visited_buffer*
-** descrizione: pass:none[if enabled, clicks with left/right buttons on the line with current buffer jump to previous/next visited buffer]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+off+`
-
-* [[option_buflist.look.mouse_move_buffer]] *buflist.look.mouse_move_buffer*
-** descrizione: pass:none[if enabled, mouse gestures (drag & drop) move buffers in list]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+on+`
-
-* [[option_buflist.look.mouse_wheel]] *buflist.look.mouse_wheel*
-** descrizione: pass:none[if enabled, mouse wheel up/down actions jump to previous/next buffer in list]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+on+`
-
-* [[option_buflist.look.nick_prefix]] *buflist.look.nick_prefix*
-** descrizione: pass:none[get the nick prefix and its color from nicklist so that ${nick_prefix} can be used in format; this can be slow on buffers with lot of nicks in nicklist, so this option is disabled by default]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+off+`
+** valore predefinito: `+"${count} >= 1"+`
-* [[option_buflist.look.nick_prefix_empty]] *buflist.look.nick_prefix_empty*
-** descrizione: pass:none[when the nick prefix is enabled, display a space instead if there is no nick prefix on the buffer]
+* [[option_fset.look.export_help_default]] *fset.look.export_help_default*
+** descrizione: pass:none[write help for each option exported by default (this can be overridden with arguments "-help" and "-nohelp" for command /fset -export)]
** tipo: bool
** valori: on, off
** valore predefinito: `+on+`
-* [[option_buflist.look.signals_refresh]] *buflist.look.signals_refresh*
-** descrizione: pass:none[comma-separated list of extra signals that are hooked and trigger the refresh of buffers list; this can be useful if some custom variables are used in formats and need specific refresh]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+""+`
-
-* [[option_buflist.look.sort]] *buflist.look.sort*
-** descrizione: pass:none[comma-separated list of fields to sort buffers; each field is a hdata variable of buffer ("var"), a hdata variable of IRC server ("irc_server.var") or a hdata variable of IRC channel ("irc_channel.var"); char "-" can be used before field to reverse order, char "~" can be used to do a case insensitive comparison; example: "-~short_name" for case insensitive and reverse sort on buffer short name (note: the content is evaluated, before being split into fields, but at that time "bar_item" is the only variable that can be used, to distinguish between different buflist items, for example "${bar_item.name}")]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+"number,-active"+`
-
-* [[option_buflist.look.use_items]] *buflist.look.use_items*
-** descrizione: pass:none[number of buflist bar items that can be used; the item names are: "buflist", "buflist2", "buflist3"; be careful, using more than one bar item slows down the display of buffers list]
+* [[option_fset.look.format_number]] *fset.look.format_number*
+** descrizione: pass:none[number of format used to display options; this is dynamically changed by the key ctrl-X on the fset buffer]
** tipo: intero
-** valori: 1 .. 3
+** valori: 1 .. 2
** valore predefinito: `+1+`
-// end::buflist_options[]
-// tag::fifo_options[]
-* [[option_fifo.file.enabled]] *fifo.file.enabled*
-** descrizione: pass:none[enable FIFO pipe]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+on+`
-
-* [[option_fifo.file.path]] *fifo.file.path*
-** descrizione: pass:none[path for FIFO file; WeeChat PID can be used in path with ${info:pid} (path is evaluated, see function string_eval_path_home in plugin API reference)]
+* [[option_fset.look.marked_string]] *fset.look.marked_string*
+** descrizione: pass:none[string displayed when an option is marked (to do an action on multiple options)]
** tipo: stringa
** valori: qualsiasi stringa
-** valore predefinito: `+"${weechat_runtime_dir}/weechat_fifo_${info:pid}"+`
-// end::fifo_options[]
-
-// tag::typing_options[]
-* [[option_typing.look.delay_purge_paused]] *typing.look.delay_purge_paused*
-** descrizione: pass:none[number of seconds after paused status has been set: if reached, the typing status is removed]
-** tipo: intero
-** valori: 1 .. 2147483647
-** valore predefinito: `+30+`
-
-* [[option_typing.look.delay_purge_typing]] *typing.look.delay_purge_typing*
-** descrizione: pass:none[number of seconds after typing status has been set: if reached, the typing status is removed]
-** tipo: intero
-** valori: 1 .. 2147483647
-** valore predefinito: `+6+`
+** valore predefinito: `+"*"+`
-* [[option_typing.look.delay_set_paused]] *typing.look.delay_set_paused*
-** descrizione: pass:none[number of seconds after typing last char: if reached, the typing status becomes "paused" and no more typing signals are sent]
+* [[option_fset.look.scroll_horizontal]] *fset.look.scroll_horizontal*
+** descrizione: pass:none[left/right scroll in fset buffer (percent of width)]
** tipo: intero
-** valori: 1 .. 2147483647
+** valori: 1 .. 100
** valore predefinito: `+10+`
-* [[option_typing.look.enabled_nicks]] *typing.look.enabled_nicks*
-** descrizione: pass:none[typing enabled for other nicks (display typing info for nicks typing in the current buffer)]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+off+`
-
-* [[option_typing.look.enabled_self]] *typing.look.enabled_self*
-** descrizione: pass:none[typing enabled for self messages (send typing info to other users)]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+off+`
-
-* [[option_typing.look.input_min_chars]] *typing.look.input_min_chars*
-** descrizione: pass:none[min number of chars in message to trigger send of typing signals]
-** tipo: intero
-** valori: 1 .. 2147483647
-** valore predefinito: `+4+`
-
-* [[option_typing.look.item_max_length]] *typing.look.item_max_length*
-** descrizione: pass:none[max number of chars displayed in the bar item "typing" (0 = do not truncate content)]
-** tipo: intero
-** valori: 0 .. 2147483647
-** valore predefinito: `+0+`
-// end::typing_options[]
-
-// tag::xfer_options[]
-* [[option_xfer.color.status_aborted]] *xfer.color.status_aborted*
-** descrizione: pass:none[colore del testo per lo status "annullato"]
-** tipo: colore
-** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+lightred+`
-
-* [[option_xfer.color.status_active]] *xfer.color.status_active*
-** descrizione: pass:none[colore del testo per lo status "attivo"]
-** tipo: colore
-** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+lightblue+`
-
-* [[option_xfer.color.status_connecting]] *xfer.color.status_connecting*
-** descrizione: pass:none[colore del testo per lo status "connessione in corso"]
-** tipo: colore
-** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+yellow+`
-
-* [[option_xfer.color.status_done]] *xfer.color.status_done*
-** descrizione: pass:none[colore del testo per lo status "completato"]
-** tipo: colore
-** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+lightgreen+`
-
-* [[option_xfer.color.status_failed]] *xfer.color.status_failed*
-** descrizione: pass:none[colore del testo per lo status "fallito"]
-** tipo: colore
-** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+lightred+`
-
-* [[option_xfer.color.status_waiting]] *xfer.color.status_waiting*
-** descrizione: pass:none[colore del testo per lo status "in attesa"]
-** tipo: colore
-** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+lightcyan+`
-
-* [[option_xfer.color.text]] *xfer.color.text*
-** descrizione: pass:none[colore del testo nel buffer xfer]
-** tipo: colore
-** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+default+`
-
-* [[option_xfer.color.text_bg]] *xfer.color.text_bg*
-** descrizione: pass:none[colore di sfondo del buffer xfer]
-** tipo: colore
-** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+default+`
-
-* [[option_xfer.color.text_selected]] *xfer.color.text_selected*
-** descrizione: pass:none[colore della riga selezionata nel buffer xfer]
-** tipo: colore
-** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+white+`
-
-* [[option_xfer.file.auto_accept_chats]] *xfer.file.auto_accept_chats*
-** descrizione: pass:none[accetta automaticamente le richieste di chat (usare con cautela!)]
+* [[option_fset.look.show_plugins_desc]] *fset.look.show_plugins_desc*
+** descrizione: pass:none[show the plugin description options (plugins.desc.*)]
** tipo: bool
** valori: on, off
** valore predefinito: `+off+`
-* [[option_xfer.file.auto_accept_files]] *xfer.file.auto_accept_files*
-** descrizione: pass:none[accetta automaticamente i file in arrivo (usare con cautela!)]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+off+`
+* [[option_fset.look.sort]] *fset.look.sort*
+** descrizione: 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]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+"~name"+`
-* [[option_xfer.file.auto_accept_nicks]] *xfer.file.auto_accept_nicks*
-** descrizione: pass:none[comma-separated list of nicks for which the incoming files and chats are automatically accepted; format is "server.nick" (for a specific server) or "nick" (for all servers); example: "libera.FlashCode,andrew"]
+* [[option_fset.look.unmarked_string]] *fset.look.unmarked_string*
+** descrizione: pass:none[string displayed when an option is not marked]
** tipo: stringa
** valori: qualsiasi stringa
-** valore predefinito: `+""+`
+** valore predefinito: `+" "+`
-* [[option_xfer.file.auto_check_crc32]] *xfer.file.auto_check_crc32*
-** descrizione: pass:none[automatically check CRC32 file checksum if it is found in the filename (8 hexadecimal chars)]
+* [[option_fset.look.use_color_value]] *fset.look.use_color_value*
+** descrizione: pass:none[use the color to display value of color options]
** tipo: bool
** valori: on, off
** valore predefinito: `+off+`
-* [[option_xfer.file.auto_rename]] *xfer.file.auto_rename*
-** descrizione: pass:none[rinomina i file in ingresso se esistenti (aggiunge ".1", ".2", ...)]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+on+`
-
-* [[option_xfer.file.auto_resume]] *xfer.file.auto_resume*
-** descrizione: pass:none[riprende automaticamente il trasferimento dei file se la connessione all'host viene perduta]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+on+`
-
-* [[option_xfer.file.convert_spaces]] *xfer.file.convert_spaces*
-** descrizione: pass:none[convert spaces to underscores when sending and receiving files]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+on+`
-
-* [[option_xfer.file.download_path]] *xfer.file.download_path*
-** descrizione: pass:none[path for writing incoming files (path is evaluated, see function string_eval_path_home in plugin API reference)]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+"${weechat_data_dir}/xfer"+`
-
-* [[option_xfer.file.download_temporary_suffix]] *xfer.file.download_temporary_suffix*
-** descrizione: pass:none[temporary filename suffix used during the transfer for a file received, it is removed after successful transfer; if empty string, no filename suffix is used during the transfer]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+".part"+`
-
-* [[option_xfer.file.upload_path]] *xfer.file.upload_path*
-** descrizione: pass:none[path for reading files when sending (path is evaluated, see function string_eval_path_home in plugin API reference)]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+"~"+`
-
-* [[option_xfer.file.use_nick_in_filename]] *xfer.file.use_nick_in_filename*
-** descrizione: pass:none[usa il nick remoto come prefisso nel nome del file locale alla ricezione]
+* [[option_fset.look.use_keys]] *fset.look.use_keys*
+** descrizione: pass:none[use keys alt+X in fset buffer to do actions on options; if disabled, only the input is allowed]
** tipo: bool
** valori: on, off
** valore predefinito: `+on+`
-* [[option_xfer.look.auto_open_buffer]] *xfer.look.auto_open_buffer*
-** descrizione: pass:none[apre automaticamente il buffer xfer quando un nuovo xfer viene aggiunto alla lista]
+* [[option_fset.look.use_mute]] *fset.look.use_mute*
+** descrizione: pass:none[use /mute command to set options]
** tipo: bool
** valori: on, off
-** valore predefinito: `+on+`
-
-* [[option_xfer.look.progress_bar_size]] *xfer.look.progress_bar_size*
-** descrizione: pass:none[dimensione barra di avanzamento, in caratteri (se 0, è disabilitata)]
-** tipo: intero
-** valori: 0 .. 256
-** valore predefinito: `+20+`
-
-* [[option_xfer.look.pv_tags]] *xfer.look.pv_tags*
-** descrizione: pass:none[elenco separato da virgole di tag usati nei messaggi privati, ad esempio: "notify_message", "notify_private" o "notify_highlight"]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+"notify_private"+`
-
-* [[option_xfer.network.blocksize]] *xfer.network.blocksize*
-** descrizione: pass:none[dimensione blocco per l'invio dei pacchetti, in byte]
-** tipo: intero
-** valori: 1024 .. 102400
-** valore predefinito: `+65536+`
+** valore predefinito: `+off+`
+// end::fset_options[]
-* [[option_xfer.network.fast_send]] *xfer.network.fast_send*
-** descrizione: pass:none[non attendere ACK all'invio del file]
+// tag::guile_options[]
+* [[option_guile.look.check_license]] *guile.look.check_license*
+** descrizione: pass:none[check the license of scripts when they are loaded: if the license is different from the plugin license, a warning is displayed]
** tipo: bool
** valori: on, off
-** valore predefinito: `+on+`
-
-* [[option_xfer.network.own_ip]] *xfer.network.own_ip*
-** descrizione: pass:none[Indirizzo IP o DNS per l'invio di file/chat (se vuoto, verrà usata l'interfaccia IP locale)]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+""+`
-
-* [[option_xfer.network.port_range]] *xfer.network.port_range*
-** descrizione: pass:none[forza i file in uscita/chat ad usare solo le porte in un dato intervallo (utile per il NAT) (sintassi: una singola porta, es. 5000 o un intervallo di porte, es. 5000-5015. Un valore nullo significa qualsiasi porta, consigliato usare porte maggiori di 1024, perché l'uso di porte inferiori è possibile solo per root)]
-** tipo: stringa
-** valori: qualsiasi stringa
-** valore predefinito: `+""+`
+** valore predefinito: `+off+`
-* [[option_xfer.network.send_ack]] *xfer.network.send_ack*
-** descrizione: pass:none[send acks when receiving files; if disabled, the transfer may freeze if the sender is waiting for acks (for example a WeeChat sending a file with option xfer.network.fast_send set to off); on the other hand, disabling send of acks may prevent a freeze if the acks are not sent immediately to the sender]
+* [[option_guile.look.eval_keep_context]] *guile.look.eval_keep_context*
+** descrizione: pass:none[keep context between two calls to the source code evaluation (option "eval" of script command or info "%s_eval"); a hidden script is used to eval script code; if this option is disabled, this hidden script is unloaded after each eval: this uses less memory, but is slower]
** tipo: bool
** valori: on, off
** valore predefinito: `+on+`
-
-* [[option_xfer.network.speed_limit_recv]] *xfer.network.speed_limit_recv*
-** descrizione: pass:none[speed limit for receiving files, in kilo-bytes by second (0 means no limit)]
-** tipo: intero
-** valori: 0 .. 2147483647
-** valore predefinito: `+0+`
-
-* [[option_xfer.network.speed_limit_send]] *xfer.network.speed_limit_send*
-** descrizione: pass:none[limite di velocità per l'invio dei file, in kb per secondo (0 vuol dire senza limite)]
-** tipo: intero
-** valori: 0 .. 2147483647
-** valore predefinito: `+0+`
-
-* [[option_xfer.network.timeout]] *xfer.network.timeout*
-** descrizione: pass:none[timeout per la richiesta xfer (in secondi)]
-** tipo: intero
-** valori: 5 .. 2147483647
-** valore predefinito: `+300+`
-// end::xfer_options[]
+// end::guile_options[]
// tag::irc_options[]
* [[option_irc.color.input_nick]] *irc.color.input_nick*
@@ -2985,6 +1601,192 @@
** valore predefinito: `+""+`
// end::irc_options[]
+// tag::javascript_options[]
+* [[option_javascript.look.check_license]] *javascript.look.check_license*
+** descrizione: pass:none[check the license of scripts when they are loaded: if the license is different from the plugin license, a warning is displayed]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+off+`
+
+* [[option_javascript.look.eval_keep_context]] *javascript.look.eval_keep_context*
+** descrizione: pass:none[keep context between two calls to the source code evaluation (option "eval" of script command or info "%s_eval"); a hidden script is used to eval script code; if this option is disabled, this hidden script is unloaded after each eval: this uses less memory, but is slower]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+on+`
+// end::javascript_options[]
+
+// tag::logger_options[]
+* [[option_logger.color.backlog_end]] *logger.color.backlog_end*
+** descrizione: pass:none[colore per la riga finale nella cronologia]
+** tipo: colore
+** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** valore predefinito: `+default+`
+
+* [[option_logger.color.backlog_line]] *logger.color.backlog_line*
+** descrizione: pass:none[color for backlog lines, used only if the option logger.file.color_lines is off]
+** tipo: colore
+** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** valore predefinito: `+default+`
+
+* [[option_logger.file.auto_log]] *logger.file.auto_log*
+** descrizione: pass:none[automatically save content of buffers to files (unless a buffer disables log); if disabled, logging is disabled on all buffers]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+on+`
+
+* [[option_logger.file.color_lines]] *logger.file.color_lines*
+** descrizione: pass:none[use ANSI color codes in lines written in log files and display backlog lines with these colors]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+off+`
+
+* [[option_logger.file.flush_delay]] *logger.file.flush_delay*
+** descrizione: pass:none[numero di secondi tra il flush (scrittura) dei file di log (0 = scrive sui file di log immediatamente per ogni riga stampata)]
+** tipo: intero
+** valori: 0 .. 3600
+** valore predefinito: `+120+`
+
+* [[option_logger.file.fsync]] *logger.file.fsync*
+** descrizione: pass:none[use fsync to synchronize the log file with the storage device after the flush (see man fsync); this is slower but should prevent any data loss in case of power failure during the save of log file]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+off+`
+
+* [[option_logger.file.info_lines]] *logger.file.info_lines*
+** descrizione: pass:none[scrive una riga informativa nel file di log quando il log inizia o termina per un buffer]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+off+`
+
+* [[option_logger.file.mask]] *logger.file.mask*
+** descrizione: pass:none[default file name mask for log files (format is "directory/to/file" or "file", without first "/" because "path" option is used to build complete path to file); local buffer variables are permitted (you should use only variables that are defined on all buffers, so for example you should NOT use $server nor $channel); date specifiers are permitted (see man strftime)]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+"$plugin.$name.weechatlog"+`
+
+* [[option_logger.file.name_lower_case]] *logger.file.name_lower_case*
+** descrizione: pass:none[usare solo lettere minuscole per i nomi dei file di log]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+on+`
+
+* [[option_logger.file.nick_prefix]] *logger.file.nick_prefix*
+** descrizione: pass:none[testo da scrivere prima del nick nel prefisso del messaggo, esempio: "<"]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+""+`
+
+* [[option_logger.file.nick_suffix]] *logger.file.nick_suffix*
+** descrizione: pass:none[testo da scrivere dopo il nick nel prefisso del messaggo, esempio: "<"]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+""+`
+
+* [[option_logger.file.path]] *logger.file.path*
+** descrizione: pass:none[path for WeeChat log files; date specifiers are permitted (see man strftime) (path is evaluated, see function string_eval_path_home in plugin API reference)]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+"${weechat_data_dir}/logs"+`
+
+* [[option_logger.file.replacement_char]] *logger.file.replacement_char*
+** descrizione: pass:none[carattere di sostituzione per i caratteri speciali nei nomi dei file salvati con la mask (come il delimitatore di directory)]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+"_"+`
+
+* [[option_logger.file.rotation_compression_level]] *logger.file.rotation_compression_level*
+** descrizione: pass:none[compression level for rotated log files (with extension ".1", ".2", etc.), if option logger.file.rotation_compression_type is enabled: 1 = low compression / fast ... 100 = best compression / slow; the value is a percentage converted to 1-9 for gzip and 1-19 for zstd; the default value is recommended, it offers a good compromise between compression and speed]
+** tipo: intero
+** valori: 1 .. 100
+** valore predefinito: `+20+`
+
+* [[option_logger.file.rotation_compression_type]] *logger.file.rotation_compression_type*
+** descrizione: pass:none[compression type for rotated log files; if set to "none", rotated log files are not compressed; WARNING: if rotation was enabled with another type of compression (or no compression), you must first unload the logger plugin, compress files with the new type (or decompress files), then change the option in logger.conf, then load the logger plugin]
+** tipo: intero
+** valori: none, gzip, zstd
+** valore predefinito: `+none+`
+
+* [[option_logger.file.rotation_size_max]] *logger.file.rotation_size_max*
+** descrizione: pass:none[when this size is reached, a rotation of log files is performed: the existing rotated log files are renamed (.1 becomes .2, .2 becomes .3, etc.) and the current file is renamed with extension .1; an integer number with a suffix is allowed: b = bytes (default if no unit given), k = kilobytes, m = megabytes, g = gigabytes, t = terabytes; example: "2g" causes a rotation if the file size is > 2,000,000,000 bytes; if set to "0", no rotation is performed (unlimited log size); WARNING: before changing this option, you should first set the compression type via option logger.file.rotation_compression_type]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+"0"+`
+
+* [[option_logger.file.time_format]] *logger.file.time_format*
+** descrizione: pass:none[data e ora usati nei file di log (consultare man strftime per gli specificatori di data/ora)]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+"%Y-%m-%d %H:%M:%S"+`
+
+* [[option_logger.look.backlog]] *logger.look.backlog*
+** descrizione: pass:none[numero massimo di righe da visualizzare dal file di log alla creazione di un nuovo buffer (0 = nessuna cronologia)]
+** tipo: intero
+** valori: 0 .. 2147483647
+** valore predefinito: `+20+`
+
+* [[option_logger.look.backlog_conditions]] *logger.look.backlog_conditions*
+** descrizione: pass:none[conditions to display the backlog (note: content is evaluated, see /help eval); empty value displays the backlog on all buffers; for example to display backlog on private buffers only: "${type} == private"]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+""+`
+// end::logger_options[]
+
+// tag::lua_options[]
+* [[option_lua.look.check_license]] *lua.look.check_license*
+** descrizione: pass:none[check the license of scripts when they are loaded: if the license is different from the plugin license, a warning is displayed]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+off+`
+
+* [[option_lua.look.eval_keep_context]] *lua.look.eval_keep_context*
+** descrizione: pass:none[keep context between two calls to the source code evaluation (option "eval" of script command or info "%s_eval"); a hidden script is used to eval script code; if this option is disabled, this hidden script is unloaded after each eval: this uses less memory, but is slower]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+on+`
+// end::lua_options[]
+
+// tag::perl_options[]
+* [[option_perl.look.check_license]] *perl.look.check_license*
+** descrizione: pass:none[check the license of scripts when they are loaded: if the license is different from the plugin license, a warning is displayed]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+off+`
+
+* [[option_perl.look.eval_keep_context]] *perl.look.eval_keep_context*
+** descrizione: pass:none[keep context between two calls to the source code evaluation (option "eval" of script command or info "%s_eval"); a hidden script is used to eval script code; if this option is disabled, this hidden script is unloaded after each eval: this uses less memory, but is slower]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+on+`
+// end::perl_options[]
+
+// tag::php_options[]
+* [[option_php.look.check_license]] *php.look.check_license*
+** descrizione: pass:none[check the license of scripts when they are loaded: if the license is different from the plugin license, a warning is displayed]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+off+`
+
+* [[option_php.look.eval_keep_context]] *php.look.eval_keep_context*
+** descrizione: pass:none[keep context between two calls to the source code evaluation (option "eval" of script command or info "%s_eval"); a hidden script is used to eval script code; if this option is disabled, this hidden script is unloaded after each eval: this uses less memory, but is slower]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+on+`
+// end::php_options[]
+
+// tag::python_options[]
+* [[option_python.look.check_license]] *python.look.check_license*
+** descrizione: pass:none[check the license of scripts when they are loaded: if the license is different from the plugin license, a warning is displayed]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+off+`
+
+* [[option_python.look.eval_keep_context]] *python.look.eval_keep_context*
+** descrizione: pass:none[keep context between two calls to the source code evaluation (option "eval" of script command or info "%s_eval"); a hidden script is used to eval script code; if this option is disabled, this hidden script is unloaded after each eval: this uses less memory, but is slower]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+on+`
+// end::python_options[]
+
// tag::relay_options[]
* [[option_relay.color.client]] *relay.color.client*
** descrizione: pass:none[colore del testo per la descrizione del client]
@@ -3197,90 +1999,6 @@
** valore predefinito: `+""+`
// end::relay_options[]
-// tag::guile_options[]
-* [[option_guile.look.check_license]] *guile.look.check_license*
-** descrizione: pass:none[check the license of scripts when they are loaded: if the license is different from the plugin license, a warning is displayed]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+off+`
-
-* [[option_guile.look.eval_keep_context]] *guile.look.eval_keep_context*
-** descrizione: pass:none[keep context between two calls to the source code evaluation (option "eval" of script command or info "%s_eval"); a hidden script is used to eval script code; if this option is disabled, this hidden script is unloaded after each eval: this uses less memory, but is slower]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+on+`
-// end::guile_options[]
-
-// tag::javascript_options[]
-* [[option_javascript.look.check_license]] *javascript.look.check_license*
-** descrizione: pass:none[check the license of scripts when they are loaded: if the license is different from the plugin license, a warning is displayed]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+off+`
-
-* [[option_javascript.look.eval_keep_context]] *javascript.look.eval_keep_context*
-** descrizione: pass:none[keep context between two calls to the source code evaluation (option "eval" of script command or info "%s_eval"); a hidden script is used to eval script code; if this option is disabled, this hidden script is unloaded after each eval: this uses less memory, but is slower]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+on+`
-// end::javascript_options[]
-
-// tag::lua_options[]
-* [[option_lua.look.check_license]] *lua.look.check_license*
-** descrizione: pass:none[check the license of scripts when they are loaded: if the license is different from the plugin license, a warning is displayed]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+off+`
-
-* [[option_lua.look.eval_keep_context]] *lua.look.eval_keep_context*
-** descrizione: pass:none[keep context between two calls to the source code evaluation (option "eval" of script command or info "%s_eval"); a hidden script is used to eval script code; if this option is disabled, this hidden script is unloaded after each eval: this uses less memory, but is slower]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+on+`
-// end::lua_options[]
-
-// tag::perl_options[]
-* [[option_perl.look.check_license]] *perl.look.check_license*
-** descrizione: pass:none[check the license of scripts when they are loaded: if the license is different from the plugin license, a warning is displayed]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+off+`
-
-* [[option_perl.look.eval_keep_context]] *perl.look.eval_keep_context*
-** descrizione: pass:none[keep context between two calls to the source code evaluation (option "eval" of script command or info "%s_eval"); a hidden script is used to eval script code; if this option is disabled, this hidden script is unloaded after each eval: this uses less memory, but is slower]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+on+`
-// end::perl_options[]
-
-// tag::php_options[]
-* [[option_php.look.check_license]] *php.look.check_license*
-** descrizione: pass:none[check the license of scripts when they are loaded: if the license is different from the plugin license, a warning is displayed]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+off+`
-
-* [[option_php.look.eval_keep_context]] *php.look.eval_keep_context*
-** descrizione: pass:none[keep context between two calls to the source code evaluation (option "eval" of script command or info "%s_eval"); a hidden script is used to eval script code; if this option is disabled, this hidden script is unloaded after each eval: this uses less memory, but is slower]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+on+`
-// end::php_options[]
-
-// tag::python_options[]
-* [[option_python.look.check_license]] *python.look.check_license*
-** descrizione: pass:none[check the license of scripts when they are loaded: if the license is different from the plugin license, a warning is displayed]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+off+`
-
-* [[option_python.look.eval_keep_context]] *python.look.eval_keep_context*
-** descrizione: pass:none[keep context between two calls to the source code evaluation (option "eval" of script command or info "%s_eval"); a hidden script is used to eval script code; if this option is disabled, this hidden script is unloaded after each eval: this uses less memory, but is slower]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+on+`
-// end::python_options[]
-
// tag::ruby_options[]
* [[option_ruby.look.check_license]] *ruby.look.check_license*
** descrizione: pass:none[check the license of scripts when they are loaded: if the license is different from the plugin license, a warning is displayed]
@@ -3295,20 +2013,6 @@
** valore predefinito: `+on+`
// end::ruby_options[]
-// tag::tcl_options[]
-* [[option_tcl.look.check_license]] *tcl.look.check_license*
-** descrizione: pass:none[check the license of scripts when they are loaded: if the license is different from the plugin license, a warning is displayed]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+off+`
-
-* [[option_tcl.look.eval_keep_context]] *tcl.look.eval_keep_context*
-** descrizione: pass:none[keep context between two calls to the source code evaluation (option "eval" of script command or info "%s_eval"); a hidden script is used to eval script code; if this option is disabled, this hidden script is unloaded after each eval: this uses less memory, but is slower]
-** tipo: bool
-** valori: on, off
-** valore predefinito: `+on+`
-// end::tcl_options[]
-
// tag::script_options[]
* [[option_script.color.status_autoloaded]] *script.color.status_autoloaded*
** descrizione: pass:none[colore per lo status "caricato automaticamente" ("a")]
@@ -3557,484 +2261,1780 @@
** valore predefinito: `+"https://weechat.org/files/plugins.xml.gz"+`
// end::script_options[]
-// tag::fset_options[]
-* [[option_fset.color.default_value]] *fset.color.default_value*
-** descrizione: pass:none[color for default value]
-** tipo: colore
-** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+default+`
+// tag::sec_options[]
+* [[option_sec.crypt.cipher]] *sec.crypt.cipher*
+** descrizione: pass:none[cipher used to crypt data (the number after algorithm is the size of the key in bits)]
+** tipo: intero
+** valori: aes128, aes192, aes256
+** valore predefinito: `+aes256+`
-* [[option_fset.color.default_value_selected]] *fset.color.default_value_selected*
-** descrizione: pass:none[color for default value on the selected line]
+* [[option_sec.crypt.hash_algo]] *sec.crypt.hash_algo*
+** descrizione: pass:none[hash algorithm used to check the decrypted data]
+** tipo: intero
+** valori: sha224, sha256, sha384, sha512
+** valore predefinito: `+sha256+`
+
+* [[option_sec.crypt.passphrase_command]] *sec.crypt.passphrase_command*
+** descrizione: pass:none[read the passphrase from the output of this system command (only the first line is used and it must not contain any extra character); this option is used only when reading file sec.conf and if the environment variable "WEECHAT_PASSPHRASE" is not set (the environment variable has higher priority); example with password-store: "/usr/bin/pass show weechat/passphrase"]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+""+`
+
+* [[option_sec.crypt.salt]] *sec.crypt.salt*
+** descrizione: pass:none[use salt when generating key used in encryption (recommended for maximum security); when enabled, the content of crypted data in file sec.conf will be different on each write of the file; if you put the file sec.conf in a version control system, then you can turn off this option to have always same content in file]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+on+`
+// end::sec_options[]
+
+// tag::spell_options[]
+* [[option_spell.check.commands]] *spell.check.commands*
+** descrizione: pass:none[elenco separato da virgole di comandi per cui il controllo ortografico è abilitato (il controllo ortografico è disabilitato per tutti gli altri comandi)]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+"away,command,cycle,kick,kickban,me,msg,notice,part,query,quit,topic"+`
+
+* [[option_spell.check.default_dict]] *spell.check.default_dict*
+** descrizione: pass:none[default dictionary (or comma separated list of dictionaries) to use when buffer has no dictionary defined (leave blank to disable spell checker on buffers for which you didn't explicitly enabled it)]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+""+`
+
+* [[option_spell.check.during_search]] *spell.check.during_search*
+** descrizione: pass:none[controlla le parole durante la ricerca del testo nel buffer]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+off+`
+
+* [[option_spell.check.enabled]] *spell.check.enabled*
+** descrizione: pass:none[enable spell checker for command line]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+off+`
+
+* [[option_spell.check.real_time]] *spell.check.real_time*
+** descrizione: pass:none[controllo ortografico in tempo reale (più lento, disabilitato per default: le parole vengono controllate solo se seguite da un delimitatore)]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+off+`
+
+* [[option_spell.check.suggestions]] *spell.check.suggestions*
+** descrizione: pass:none[number of suggestions to display in bar item "spell_suggest" for each dictionary set in buffer (-1 = disable suggestions, 0 = display all possible suggestions in all languages)]
+** tipo: intero
+** valori: -1 .. 2147483647
+** valore predefinito: `+-1+`
+
+* [[option_spell.check.word_min_length]] *spell.check.word_min_length*
+** descrizione: pass:none[lunghezza minima per una parola da controllare (0 per controllarle tutte)]
+** tipo: intero
+** valori: 0 .. 2147483647
+** valore predefinito: `+2+`
+
+* [[option_spell.color.misspelled]] *spell.color.misspelled*
+** descrizione: pass:none[text color for misspelled words (input bar)]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+white+`
+** valore predefinito: `+lightred+`
-* [[option_fset.color.description]] *fset.color.description*
-** descrizione: pass:none[color for description]
+* [[option_spell.color.suggestion]] *spell.color.suggestion*
+** descrizione: pass:none[text color for suggestion on a misspelled word in bar item "spell_suggest"]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** valore predefinito: `+default+`
-* [[option_fset.color.description_selected]] *fset.color.description_selected*
-** descrizione: pass:none[color for description on the selected line]
+* [[option_spell.color.suggestion_delimiter_dict]] *spell.color.suggestion_delimiter_dict*
+** descrizione: pass:none[text color for delimiters displayed between two dictionaries in bar item "spell_suggest"]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+white+`
+** valore predefinito: `+cyan+`
-* [[option_fset.color.file]] *fset.color.file*
-** descrizione: pass:none[color for file]
+* [[option_spell.color.suggestion_delimiter_word]] *spell.color.suggestion_delimiter_word*
+** descrizione: pass:none[text color for delimiters displayed between two words in bar item "spell_suggest"]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+default+`
+** valore predefinito: `+cyan+`
-* [[option_fset.color.file_changed]] *fset.color.file_changed*
-** descrizione: pass:none[color for file if value is changed]
+* [[option_spell.look.suggestion_delimiter_dict]] *spell.look.suggestion_delimiter_dict*
+** descrizione: pass:none[delimiter displayed between two dictionaries in bar item "spell_suggest"]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+" / "+`
+
+* [[option_spell.look.suggestion_delimiter_word]] *spell.look.suggestion_delimiter_word*
+** descrizione: pass:none[delimiter displayed between two words in bar item "spell_suggest"]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+","+`
+// end::spell_options[]
+
+// tag::tcl_options[]
+* [[option_tcl.look.check_license]] *tcl.look.check_license*
+** descrizione: pass:none[check the license of scripts when they are loaded: if the license is different from the plugin license, a warning is displayed]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+off+`
+
+* [[option_tcl.look.eval_keep_context]] *tcl.look.eval_keep_context*
+** descrizione: pass:none[keep context between two calls to the source code evaluation (option "eval" of script command or info "%s_eval"); a hidden script is used to eval script code; if this option is disabled, this hidden script is unloaded after each eval: this uses less memory, but is slower]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+on+`
+// end::tcl_options[]
+
+// tag::trigger_options[]
+* [[option_trigger.color.flag_command]] *trigger.color.flag_command*
+** descrizione: pass:none[text color for command flag (in /trigger list)]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+brown+`
+** valore predefinito: `+lightgreen+`
-* [[option_fset.color.file_changed_selected]] *fset.color.file_changed_selected*
-** descrizione: pass:none[color for file if value is changed on the selected line]
+* [[option_trigger.color.flag_conditions]] *trigger.color.flag_conditions*
+** descrizione: pass:none[text color for conditions flag (in /trigger list)]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** valore predefinito: `+yellow+`
-* [[option_fset.color.file_selected]] *fset.color.file_selected*
-** descrizione: pass:none[color for file on the selected line]
+* [[option_trigger.color.flag_post_action]] *trigger.color.flag_post_action*
+** descrizione: pass:none[text color for post action flag (in /trigger list)]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+white+`
+** valore predefinito: `+lightblue+`
-* [[option_fset.color.help_default_value]] *fset.color.help_default_value*
-** descrizione: pass:none[color for default value in help bar]
+* [[option_trigger.color.flag_regex]] *trigger.color.flag_regex*
+** descrizione: pass:none[text color for regex flag (in /trigger list)]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+white+`
+** valore predefinito: `+lightcyan+`
-* [[option_fset.color.help_description]] *fset.color.help_description*
-** descrizione: pass:none[color for description in help bar]
+* [[option_trigger.color.flag_return_code]] *trigger.color.flag_return_code*
+** descrizione: pass:none[text color for return code flag (in /trigger list)]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+default+`
+** valore predefinito: `+lightmagenta+`
-* [[option_fset.color.help_name]] *fset.color.help_name*
-** descrizione: pass:none[color for name in help bar]
+* [[option_trigger.color.identifier]] *trigger.color.identifier*
+** descrizione: pass:none[text color for trigger context identifier in monitor buffer]
+** tipo: colore
+** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** valore predefinito: `+cyan+`
+
+* [[option_trigger.color.regex]] *trigger.color.regex*
+** descrizione: pass:none[text color for regular expressions]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** valore predefinito: `+white+`
-* [[option_fset.color.help_quotes]] *fset.color.help_quotes*
-** descrizione: pass:none[color for quotes around string values]
+* [[option_trigger.color.replace]] *trigger.color.replace*
+** descrizione: pass:none[text color for replacement text (for regular expressions)]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+darkgray+`
+** valore predefinito: `+cyan+`
-* [[option_fset.color.help_values]] *fset.color.help_values*
-** descrizione: pass:none[color for allowed values]
+* [[option_trigger.color.trigger]] *trigger.color.trigger*
+** descrizione: pass:none[text color for trigger name]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+default+`
+** valore predefinito: `+green+`
-* [[option_fset.color.index]] *fset.color.index*
-** descrizione: pass:none[color for index of option]
+* [[option_trigger.color.trigger_disabled]] *trigger.color.trigger_disabled*
+** descrizione: pass:none[text color for disabled trigger name]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+cyan+`
+** valore predefinito: `+red+`
-* [[option_fset.color.index_selected]] *fset.color.index_selected*
-** descrizione: pass:none[color for index of option on the selected line]
+* [[option_trigger.look.enabled]] *trigger.look.enabled*
+** descrizione: pass:none[enable trigger support]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+on+`
+
+* [[option_trigger.look.monitor_strip_colors]] *trigger.look.monitor_strip_colors*
+** descrizione: pass:none[strip colors in hashtable values displayed on monitor buffer]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+off+`
+// end::trigger_options[]
+
+// tag::typing_options[]
+* [[option_typing.look.delay_purge_paused]] *typing.look.delay_purge_paused*
+** descrizione: pass:none[number of seconds after paused status has been set: if reached, the typing status is removed]
+** tipo: intero
+** valori: 1 .. 2147483647
+** valore predefinito: `+30+`
+
+* [[option_typing.look.delay_purge_typing]] *typing.look.delay_purge_typing*
+** descrizione: pass:none[number of seconds after typing status has been set: if reached, the typing status is removed]
+** tipo: intero
+** valori: 1 .. 2147483647
+** valore predefinito: `+6+`
+
+* [[option_typing.look.delay_set_paused]] *typing.look.delay_set_paused*
+** descrizione: pass:none[number of seconds after typing last char: if reached, the typing status becomes "paused" and no more typing signals are sent]
+** tipo: intero
+** valori: 1 .. 2147483647
+** valore predefinito: `+10+`
+
+* [[option_typing.look.enabled_nicks]] *typing.look.enabled_nicks*
+** descrizione: pass:none[typing enabled for other nicks (display typing info for nicks typing in the current buffer)]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+off+`
+
+* [[option_typing.look.enabled_self]] *typing.look.enabled_self*
+** descrizione: pass:none[typing enabled for self messages (send typing info to other users)]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+off+`
+
+* [[option_typing.look.input_min_chars]] *typing.look.input_min_chars*
+** descrizione: pass:none[min number of chars in message to trigger send of typing signals]
+** tipo: intero
+** valori: 1 .. 2147483647
+** valore predefinito: `+4+`
+
+* [[option_typing.look.item_max_length]] *typing.look.item_max_length*
+** descrizione: pass:none[max number of chars displayed in the bar item "typing" (0 = do not truncate content)]
+** tipo: intero
+** valori: 0 .. 2147483647
+** valore predefinito: `+0+`
+// end::typing_options[]
+
+// tag::weechat_options[]
+* [[option_weechat.color.bar_more]] *weechat.color.bar_more*
+** descrizione: pass:none[text color for "+" when scrolling bars]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+lightcyan+`
+** valore predefinito: `+lightmagenta+`
-* [[option_fset.color.line_marked_bg1]] *fset.color.line_marked_bg1*
-** descrizione: pass:none[background color for a marked line (used with the first format, see option fset.format.option1)]
+* [[option_weechat.color.chat]] *weechat.color.chat*
+** descrizione: pass:none[colore del testo per la chat]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** valore predefinito: `+default+`
-* [[option_fset.color.line_marked_bg2]] *fset.color.line_marked_bg2*
-** descrizione: pass:none[background color for a marked line (used with the second format, see option fset.format.option2)]
+* [[option_weechat.color.chat_bg]] *weechat.color.chat_bg*
+** descrizione: pass:none[colore di sfondo per la chat]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** valore predefinito: `+default+`
-* [[option_fset.color.line_selected_bg1]] *fset.color.line_selected_bg1*
-** descrizione: pass:none[background color for the selected line (used with the first format, see option fset.format.option1)]
+* [[option_weechat.color.chat_buffer]] *weechat.color.chat_buffer*
+** descrizione: pass:none[colore del testo per i nomi dei buffer]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+blue+`
+** valore predefinito: `+white+`
-* [[option_fset.color.line_selected_bg2]] *fset.color.line_selected_bg2*
-** descrizione: pass:none[background color for the selected line (used with the second format, see option fset.format.option2)]
+* [[option_weechat.color.chat_channel]] *weechat.color.chat_channel*
+** descrizione: pass:none[colore del testo per i nomi dei canali]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+red+`
+** valore predefinito: `+white+`
-* [[option_fset.color.marked]] *fset.color.marked*
-** descrizione: pass:none[color for mark indicator]
+* [[option_weechat.color.chat_day_change]] *weechat.color.chat_day_change*
+** descrizione: pass:none[colore del testo per i messaggi mostrati al cambio di data]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+brown+`
+** valore predefinito: `+cyan+`
-* [[option_fset.color.marked_selected]] *fset.color.marked_selected*
-** descrizione: pass:none[color for mark indicator on the selected line]
+* [[option_weechat.color.chat_delimiters]] *weechat.color.chat_delimiters*
+** descrizione: pass:none[colore del testo per i delimitatori]
+** tipo: colore
+** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** valore predefinito: `+green+`
+
+* [[option_weechat.color.chat_highlight]] *weechat.color.chat_highlight*
+** descrizione: pass:none[colore del testo per il prefisso di notifica]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** valore predefinito: `+yellow+`
-* [[option_fset.color.max]] *fset.color.max*
-** descrizione: pass:none[color for max value]
+* [[option_weechat.color.chat_highlight_bg]] *weechat.color.chat_highlight_bg*
+** descrizione: pass:none[colore di sfondo per il prefisso di notifica]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+default+`
+** valore predefinito: `+magenta+`
-* [[option_fset.color.max_selected]] *fset.color.max_selected*
-** descrizione: pass:none[color for max value on the selected line]
+* [[option_weechat.color.chat_host]] *weechat.color.chat_host*
+** descrizione: pass:none[colore del testo per i nomi host]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+white+`
+** valore predefinito: `+cyan+`
-* [[option_fset.color.min]] *fset.color.min*
-** descrizione: pass:none[color for min value]
+* [[option_weechat.color.chat_inactive_buffer]] *weechat.color.chat_inactive_buffer*
+** descrizione: pass:none[colore del testo per la chat quando la riga è inattiva (il buffer è unito con altri buffer e non è selezionato)]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** valore predefinito: `+default+`
-* [[option_fset.color.min_selected]] *fset.color.min_selected*
-** descrizione: pass:none[color for min value on the selected line]
+* [[option_weechat.color.chat_inactive_window]] *weechat.color.chat_inactive_window*
+** descrizione: pass:none[colore del testo per la chat quando la finestra è inattiva (nessuna finestra attiva selezionata)]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+white+`
+** valore predefinito: `+default+`
-* [[option_fset.color.name]] *fset.color.name*
-** descrizione: pass:none[color for name]
+* [[option_weechat.color.chat_nick]] *weechat.color.chat_nick*
+** descrizione: pass:none[text color for nicks in chat window: used in some server messages and as fallback when a nick color is not found; most of times nick color comes from option weechat.color.chat_nick_colors]
+** tipo: colore
+** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** valore predefinito: `+lightcyan+`
+
+* [[option_weechat.color.chat_nick_colors]] *weechat.color.chat_nick_colors*
+** descrizione: pass:none[colore del testo per i nick (elenco separato da virgole di colori, quello di sfondo è consentito con il formato "fg:bg", ad esempio: "lightred:blue")]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+"cyan,magenta,green,brown,lightblue,default,lightcyan,lightmagenta,lightgreen,blue"+`
+
+* [[option_weechat.color.chat_nick_offline]] *weechat.color.chat_nick_offline*
+** descrizione: pass:none[text color for offline nick (not in nicklist any more); this color is used only if option weechat.look.color_nick_offline is enabled]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** valore predefinito: `+default+`
-* [[option_fset.color.name_changed]] *fset.color.name_changed*
-** descrizione: pass:none[color for name if value is changed]
+* [[option_weechat.color.chat_nick_offline_highlight]] *weechat.color.chat_nick_offline_highlight*
+** descrizione: pass:none[text color for offline nick with highlight; this color is used only if option weechat.look.color_nick_offline is enabled]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+brown+`
+** valore predefinito: `+default+`
-* [[option_fset.color.name_changed_selected]] *fset.color.name_changed_selected*
-** descrizione: pass:none[color for name if value is changed on the selected line]
+* [[option_weechat.color.chat_nick_offline_highlight_bg]] *weechat.color.chat_nick_offline_highlight_bg*
+** descrizione: pass:none[background color for offline nick with highlight; this color is used only if option weechat.look.color_nick_offline is enabled]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+yellow+`
+** valore predefinito: `+blue+`
-* [[option_fset.color.name_selected]] *fset.color.name_selected*
-** descrizione: pass:none[color for name on the selected line]
+* [[option_weechat.color.chat_nick_other]] *weechat.color.chat_nick_other*
+** descrizione: pass:none[colore del testo per gli altri nick nel buffer privato]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+white+`
+** valore predefinito: `+cyan+`
-* [[option_fset.color.option]] *fset.color.option*
-** descrizione: pass:none[color for option]
+* [[option_weechat.color.chat_nick_prefix]] *weechat.color.chat_nick_prefix*
+** descrizione: pass:none[colore per il prefisso del nick (stringa visualizzata prima del nick nel prefisso)]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+default+`
+** valore predefinito: `+green+`
-* [[option_fset.color.option_changed]] *fset.color.option_changed*
-** descrizione: pass:none[color for option if value is changed]
+* [[option_weechat.color.chat_nick_self]] *weechat.color.chat_nick_self*
+** descrizione: pass:none[colore del testo per il nick locale nella finestra di chat]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+brown+`
+** valore predefinito: `+white+`
-* [[option_fset.color.option_changed_selected]] *fset.color.option_changed_selected*
-** descrizione: pass:none[color for option if value is changed on the selected line]
+* [[option_weechat.color.chat_nick_suffix]] *weechat.color.chat_nick_suffix*
+** descrizione: pass:none[colore per il prefisso del nick (stringa visualizzata dopo il nick nel prefisso)]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+yellow+`
+** valore predefinito: `+green+`
-* [[option_fset.color.option_selected]] *fset.color.option_selected*
-** descrizione: pass:none[color for option on the selected line]
+* [[option_weechat.color.chat_prefix_action]] *weechat.color.chat_prefix_action*
+** descrizione: pass:none[colore del testo per il prefisso di azione]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** valore predefinito: `+white+`
-* [[option_fset.color.parent_name]] *fset.color.parent_name*
-** descrizione: pass:none[color for name of parent option]
+* [[option_weechat.color.chat_prefix_buffer]] *weechat.color.chat_prefix_buffer*
+** descrizione: pass:none[colore del testo per il nome del buffer (prima del prefisso, quando più buffer sono uniti con lo stesso nome)]
+** tipo: colore
+** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** valore predefinito: `+brown+`
+
+* [[option_weechat.color.chat_prefix_buffer_inactive_buffer]] *weechat.color.chat_prefix_buffer_inactive_buffer*
+** descrizione: pass:none[colore del testo per il nome del buffer inattivo (prima del prefisso, quando più buffer sono uniti con lo stesso numero e il buffer non è selezionato)]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** valore predefinito: `+default+`
-* [[option_fset.color.parent_name_selected]] *fset.color.parent_name_selected*
-** descrizione: pass:none[color for name of parent option on the selected line]
+* [[option_weechat.color.chat_prefix_error]] *weechat.color.chat_prefix_error*
+** descrizione: pass:none[colore del testo per il prefisso di errore]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+white+`
+** valore predefinito: `+yellow+`
-* [[option_fset.color.parent_value]] *fset.color.parent_value*
-** descrizione: pass:none[color for value of parent option]
+* [[option_weechat.color.chat_prefix_join]] *weechat.color.chat_prefix_join*
+** descrizione: pass:none[colore del testo per il prefisso di entrata]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+cyan+`
+** valore predefinito: `+lightgreen+`
-* [[option_fset.color.parent_value_selected]] *fset.color.parent_value_selected*
-** descrizione: pass:none[color for value of parent option on the selected line]
+* [[option_weechat.color.chat_prefix_more]] *weechat.color.chat_prefix_more*
+** descrizione: pass:none[text color for "+" when prefix is too long]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+lightcyan+`
+** valore predefinito: `+lightmagenta+`
-* [[option_fset.color.quotes]] *fset.color.quotes*
-** descrizione: pass:none[color for quotes around string values]
+* [[option_weechat.color.chat_prefix_network]] *weechat.color.chat_prefix_network*
+** descrizione: pass:none[colore del testo per il prefisso di rete]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+darkgray+`
+** valore predefinito: `+magenta+`
-* [[option_fset.color.quotes_changed]] *fset.color.quotes_changed*
-** descrizione: pass:none[color for quotes around string values which are changed]
+* [[option_weechat.color.chat_prefix_quit]] *weechat.color.chat_prefix_quit*
+** descrizione: pass:none[colore del testo per il prefisso di uscita]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+default+`
+** valore predefinito: `+lightred+`
-* [[option_fset.color.quotes_changed_selected]] *fset.color.quotes_changed_selected*
-** descrizione: pass:none[color for quotes around string values which are changed on the selected line]
+* [[option_weechat.color.chat_prefix_suffix]] *weechat.color.chat_prefix_suffix*
+** descrizione: pass:none[colore del testo per il suffisso (dopo il prefisso)]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+white+`
+** valore predefinito: `+green+`
-* [[option_fset.color.quotes_selected]] *fset.color.quotes_selected*
-** descrizione: pass:none[color for quotes around string values on the selected line]
+* [[option_weechat.color.chat_read_marker]] *weechat.color.chat_read_marker*
+** descrizione: pass:none[colore del testo per l'evidenziatore di dati non letti]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+default+`
+** valore predefinito: `+magenta+`
-* [[option_fset.color.section]] *fset.color.section*
-** descrizione: pass:none[color for section]
+* [[option_weechat.color.chat_read_marker_bg]] *weechat.color.chat_read_marker_bg*
+** descrizione: pass:none[colore di sfondo per l'evidenziatore di dati non letti]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** valore predefinito: `+default+`
-* [[option_fset.color.section_changed]] *fset.color.section_changed*
-** descrizione: pass:none[color for section if value is changed]
+* [[option_weechat.color.chat_server]] *weechat.color.chat_server*
+** descrizione: pass:none[colore del testo per i nomi dei server]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** valore predefinito: `+brown+`
-* [[option_fset.color.section_changed_selected]] *fset.color.section_changed_selected*
-** descrizione: pass:none[color for section if value is changed on the selected line]
+* [[option_weechat.color.chat_tags]] *weechat.color.chat_tags*
+** descrizione: pass:none[colore del testo per i tago dopo i messaggi (mostrati con il comando /debug tags)]
+** tipo: colore
+** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** valore predefinito: `+red+`
+
+* [[option_weechat.color.chat_text_found]] *weechat.color.chat_text_found*
+** descrizione: pass:none[colore del testo per l'evidenziatore sulle righe per il testo trovato]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** valore predefinito: `+yellow+`
-* [[option_fset.color.section_selected]] *fset.color.section_selected*
-** descrizione: pass:none[color for section on the selected line]
+* [[option_weechat.color.chat_text_found_bg]] *weechat.color.chat_text_found_bg*
+** descrizione: pass:none[colore di sfondo per l'evidenziatore sulle righe per il testo trovato]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+white+`
+** valore predefinito: `+lightmagenta+`
-* [[option_fset.color.string_values]] *fset.color.string_values*
-** descrizione: pass:none[color for string values]
+* [[option_weechat.color.chat_time]] *weechat.color.chat_time*
+** descrizione: pass:none[colore del testo per l'orario nella finestra di chat]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** valore predefinito: `+default+`
-* [[option_fset.color.string_values_selected]] *fset.color.string_values_selected*
-** descrizione: pass:none[color for string values on the selected line]
+* [[option_weechat.color.chat_time_delimiters]] *weechat.color.chat_time_delimiters*
+** descrizione: pass:none[colore del testo per i delimitator dell'orario]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+white+`
+** valore predefinito: `+brown+`
-* [[option_fset.color.title_count_options]] *fset.color.title_count_options*
-** descrizione: pass:none[color for the count of options found with the current filter in title of buffer]
+* [[option_weechat.color.chat_value]] *weechat.color.chat_value*
+** descrizione: pass:none[colore del testo per i valori]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** valore predefinito: `+cyan+`
-* [[option_fset.color.title_current_option]] *fset.color.title_current_option*
-** descrizione: pass:none[color for current option number in title of buffer]
+* [[option_weechat.color.chat_value_null]] *weechat.color.chat_value_null*
+** descrizione: pass:none[text color for null values (undefined)]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+lightcyan+`
+** valore predefinito: `+blue+`
-* [[option_fset.color.title_filter]] *fset.color.title_filter*
-** descrizione: pass:none[color for filter in title of buffer]
+* [[option_weechat.color.emphasized]] *weechat.color.emphasized*
+** descrizione: pass:none[text color for emphasized text (for example when searching text); this option is used only if option weechat.look.emphasized_attributes is an empty string (default value)]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** valore predefinito: `+yellow+`
-* [[option_fset.color.title_marked_options]] *fset.color.title_marked_options*
-** descrizione: pass:none[color for number of marked options in title of buffer]
+* [[option_weechat.color.emphasized_bg]] *weechat.color.emphasized_bg*
+** descrizione: pass:none[background color for emphasized text (for example when searching text); used only if option weechat.look.emphasized_attributes is an empty string (default value)]
+** tipo: colore
+** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** valore predefinito: `+magenta+`
+
+* [[option_weechat.color.input_actions]] *weechat.color.input_actions*
+** descrizione: pass:none[colore del testo per le azioni sulla riga di input]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** valore predefinito: `+lightgreen+`
-* [[option_fset.color.title_sort]] *fset.color.title_sort*
-** descrizione: pass:none[color for sort in title of buffer]
+* [[option_weechat.color.input_text_not_found]] *weechat.color.input_text_not_found*
+** descrizione: pass:none[colore del testo per la ricerca del testo fallita nella riga di input]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+white+`
+** valore predefinito: `+red+`
-* [[option_fset.color.type]] *fset.color.type*
-** descrizione: pass:none[color for type]
+* [[option_weechat.color.item_away]] *weechat.color.item_away*
+** descrizione: pass:none[text color for away item]
+** tipo: colore
+** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** valore predefinito: `+yellow+`
+
+* [[option_weechat.color.nicklist_away]] *weechat.color.nicklist_away*
+** descrizione: pass:none[colore del testo per i nick assenti]
+** tipo: colore
+** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** valore predefinito: `+cyan+`
+
+* [[option_weechat.color.nicklist_group]] *weechat.color.nicklist_group*
+** descrizione: pass:none[colore del testo per i gruppi nella lista nick]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** valore predefinito: `+green+`
-* [[option_fset.color.type_selected]] *fset.color.type_selected*
-** descrizione: pass:none[color for type on the selected line]
+* [[option_weechat.color.separator]] *weechat.color.separator*
+** descrizione: pass:none[colore per i separatori delle finestre (quando divise) e dei separatori tra le barre (come la lista nick)]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+lightgreen+`
+** valore predefinito: `+blue+`
-* [[option_fset.color.unmarked]] *fset.color.unmarked*
-** descrizione: pass:none[color for mark indicator when the option is not marked]
+* [[option_weechat.color.status_count_highlight]] *weechat.color.status_count_highlight*
+** descrizione: pass:none[colore del testo per il conteggio dei messaggi di notifica nella hotlist (barra di stato)]
+** tipo: colore
+** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** valore predefinito: `+magenta+`
+
+* [[option_weechat.color.status_count_msg]] *weechat.color.status_count_msg*
+** descrizione: pass:none[colore del testo per il conteggio dei messaggi nella hotlist (barra di stato)]
+** tipo: colore
+** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** valore predefinito: `+brown+`
+
+* [[option_weechat.color.status_count_other]] *weechat.color.status_count_other*
+** descrizione: pass:none[colore del testo per il conteggio di altri messaggi nella hotlist (barra di stato)]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** valore predefinito: `+default+`
-* [[option_fset.color.unmarked_selected]] *fset.color.unmarked_selected*
-** descrizione: pass:none[color for mark indicator when the option is not marked on the selected line]
+* [[option_weechat.color.status_count_private]] *weechat.color.status_count_private*
+** descrizione: pass:none[colore del testo per il conteggio dei messaggi privati nella hotlist (barra di stato)]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+white+`
+** valore predefinito: `+green+`
-* [[option_fset.color.value]] *fset.color.value*
-** descrizione: pass:none[color for value]
+* [[option_weechat.color.status_data_highlight]] *weechat.color.status_data_highlight*
+** descrizione: pass:none[colore del testo per il buffer con notifica (barra di stato)]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+cyan+`
+** valore predefinito: `+lightmagenta+`
-* [[option_fset.color.value_changed]] *fset.color.value_changed*
-** descrizione: pass:none[color for value changed (different from default)]
+* [[option_weechat.color.status_data_msg]] *weechat.color.status_data_msg*
+** descrizione: pass:none[colore del testo per il buffer con nuovi messaggi (barra di stato)]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+brown+`
+** valore predefinito: `+yellow+`
-* [[option_fset.color.value_changed_selected]] *fset.color.value_changed_selected*
-** descrizione: pass:none[color for value changed (different from default) on the selected line]
+* [[option_weechat.color.status_data_other]] *weechat.color.status_data_other*
+** descrizione: pass:none[colore del testo per il buffer con nuovi dati (non messaggi) (barra di stato)]
+** tipo: colore
+** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** valore predefinito: `+default+`
+
+* [[option_weechat.color.status_data_private]] *weechat.color.status_data_private*
+** descrizione: pass:none[colore del testo per il buffer con un messaggio privato (barra di stato)]
+** tipo: colore
+** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** valore predefinito: `+lightgreen+`
+
+* [[option_weechat.color.status_filter]] *weechat.color.status_filter*
+** descrizione: pass:none[colore del testo per l'indicatore di filtro nella barra di stato]
+** tipo: colore
+** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** valore predefinito: `+green+`
+
+* [[option_weechat.color.status_more]] *weechat.color.status_more*
+** descrizione: pass:none[colore del testo per il buffer con nuovi dati (barra di stato)]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** valore predefinito: `+yellow+`
-* [[option_fset.color.value_selected]] *fset.color.value_selected*
-** descrizione: pass:none[color for value on the selected line]
+* [[option_weechat.color.status_mouse]] *weechat.color.status_mouse*
+** descrizione: pass:none[text color for mouse indicator in status bar]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+lightcyan+`
+** valore predefinito: `+green+`
-* [[option_fset.color.value_undef]] *fset.color.value_undef*
-** descrizione: pass:none[color for undefined value]
+* [[option_weechat.color.status_name]] *weechat.color.status_name*
+** descrizione: pass:none[colore del testo per il nome del buffer corrente nella barra di stato]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+magenta+`
+** valore predefinito: `+white+`
-* [[option_fset.color.value_undef_selected]] *fset.color.value_undef_selected*
-** descrizione: pass:none[color for undefined value on the selected line]
+* [[option_weechat.color.status_name_ssl]] *weechat.color.status_name_ssl*
+** descrizione: pass:none[colore del testo per il nome del buffer corrente nella barra di stato, se i dati sono messi al sicuro con un protocollo come SSL]
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** valore predefinito: `+lightmagenta+`
+** valore predefinito: `+lightgreen+`
-* [[option_fset.format.export_help]] *fset.format.export_help*
-** descrizione: pass:none[format of help line written before each option exported in a file (note: content is evaluated, see /help fset)]
+* [[option_weechat.color.status_nicklist_count]] *weechat.color.status_nicklist_count*
+** descrizione: pass:none[text color for number of nicks in nicklist (status bar)]
+** tipo: colore
+** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** valore predefinito: `+default+`
+
+* [[option_weechat.color.status_number]] *weechat.color.status_number*
+** descrizione: pass:none[colore del testo per il numero del buffer corrente nella barra di stato]
+** tipo: colore
+** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** valore predefinito: `+yellow+`
+
+* [[option_weechat.color.status_time]] *weechat.color.status_time*
+** descrizione: pass:none[colore del testo per l'ora (barra di stato)]
+** tipo: colore
+** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** valore predefinito: `+default+`
+
+* [[option_weechat.completion.base_word_until_cursor]] *weechat.completion.base_word_until_cursor*
+** descrizione: pass:none[se abilitata, la parola base da completare termina al carattere prima del cursore; altrimenti la parola base termina al primo spazio dopo il cursore]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+on+`
+
+* [[option_weechat.completion.command_inline]] *weechat.completion.command_inline*
+** descrizione: pass:none[if enabled, the commands inside command line are completed (the command at beginning of line has higher priority and is used first); note: when this option is enabled, there is no more automatic completion of paths beginning with "/" (outside commands arguments)]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+on+`
+
+* [[option_weechat.completion.default_template]] *weechat.completion.default_template*
+** descrizione: pass:none[modello di completamento predefinito (per favore, consulta la documentazione per codici e valori del template: Referenze API per Plugin, funzione "weechat_hook_command")]
** tipo: stringa
** valori: qualsiasi stringa
-** valore predefinito: `+"# ${description2}"+`
+** valore predefinito: `+"%(nicks)|%(irc_channels)"+`
-* [[option_fset.format.export_option]] *fset.format.export_option*
-** descrizione: pass:none[format of each option exported in a file (note: content is evaluated, see /help fset)]
+* [[option_weechat.completion.nick_add_space]] *weechat.completion.nick_add_space*
+** descrizione: pass:none[aggiungi uno spazio al completamento del nick (quando non è la prima parola sulla riga di comando)]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+on+`
+
+* [[option_weechat.completion.nick_case_sensitive]] *weechat.completion.nick_case_sensitive*
+** descrizione: pass:none[case sensitive completion for nicks]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+off+`
+
+* [[option_weechat.completion.nick_completer]] *weechat.completion.nick_completer*
+** descrizione: pass:none[stringa inserita dopo il completamento del nick (quando il nick è la prima parola sulla riga di comando)]
** tipo: stringa
** valori: qualsiasi stringa
-** valore predefinito: `+"/set ${name} ${quoted_value}"+`
+** valore predefinito: `+": "+`
-* [[option_fset.format.export_option_null]] *fset.format.export_option_null*
-** descrizione: pass:none[format of each option with "null" value exported in a file (note: content is evaluated, see /help fset)]
+* [[option_weechat.completion.nick_first_only]] *weechat.completion.nick_first_only*
+** descrizione: pass:none[completa solo con il primo nick trovato]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+off+`
+
+* [[option_weechat.completion.nick_ignore_chars]] *weechat.completion.nick_ignore_chars*
+** descrizione: pass:none[caratteri ignorati per il completamento dei nick]
** tipo: stringa
** valori: qualsiasi stringa
-** valore predefinito: `+"/unset ${name}"+`
+** valore predefinito: `+"[]`_-^"+`
-* [[option_fset.format.option1]] *fset.format.option1*
-** descrizione: pass:none[first format of each line, used when option fset.look.format_number is set to 1 (note: content is evaluated, see /help fset); an empty string uses the default format ("${marked} ${name} ${type} ${value2}"), which is without evaluation of string and then much faster; formats can be switched with key ctrl+X]
+* [[option_weechat.completion.partial_completion_alert]] *weechat.completion.partial_completion_alert*
+** descrizione: pass:none[send alert (BEL) when a partial completion occurs]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+on+`
+
+* [[option_weechat.completion.partial_completion_command]] *weechat.completion.partial_completion_command*
+** descrizione: pass:none[completa parzialmente i nomi dei comandi (arresta quando vengono trovati più comandi con le stesse lettere)]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+off+`
+
+* [[option_weechat.completion.partial_completion_command_arg]] *weechat.completion.partial_completion_command_arg*
+** descrizione: pass:none[completa parzialmente gli argomenti dei comandi (arresta quando vengono trovati più argomenti con lo stesso prefisso)]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+off+`
+
+* [[option_weechat.completion.partial_completion_count]] *weechat.completion.partial_completion_count*
+** descrizione: pass:none[mostra contatore per ogni completamento parziale nella barra degli oggetti]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+on+`
+
+* [[option_weechat.completion.partial_completion_other]] *weechat.completion.partial_completion_other*
+** descrizione: pass:none[completa parzialmente comandi esterni (arresta quando vengono trovate più parole che iniziano con le stesse lettere)]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+off+`
+
+* [[option_weechat.completion.partial_completion_templates]] *weechat.completion.partial_completion_templates*
+** descrizione: pass:none[comma-separated list of templates for which partial completion is enabled by default (with Tab key instead of shift-Tab); the list of templates is in documentation: plugin API reference, function "weechat_hook_command"]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+"config_options"+`
+
+* [[option_weechat.history.display_default]] *weechat.history.display_default*
+** descrizione: pass:none[numero massimo predefinito di comandi da visualizzare nella cronologia (0 = nessun limite)]
+** tipo: intero
+** valori: 0 .. 2147483647
+** valore predefinito: `+5+`
+
+* [[option_weechat.history.max_buffer_lines_minutes]] *weechat.history.max_buffer_lines_minutes*
+** descrizione: pass:none[maximum number of minutes in history per buffer (0 = unlimited); examples: 1440 = one day, 10080 = one week, 43200 = one month, 525600 = one year; use 0 ONLY if option weechat.history.max_buffer_lines_number is NOT set to 0]
+** tipo: intero
+** valori: 0 .. 2147483647
+** valore predefinito: `+0+`
+
+* [[option_weechat.history.max_buffer_lines_number]] *weechat.history.max_buffer_lines_number*
+** descrizione: pass:none[maximum number of lines in history per buffer (0 = unlimited); use 0 ONLY if option weechat.history.max_buffer_lines_minutes is NOT set to 0]
+** tipo: intero
+** valori: 0 .. 2147483647
+** valore predefinito: `+4096+`
+
+* [[option_weechat.history.max_commands]] *weechat.history.max_commands*
+** descrizione: pass:none[maximum number of user commands in history (0 = unlimited, NOT RECOMMENDED: no limit in memory usage)]
+** tipo: intero
+** valori: 0 .. 2147483647
+** valore predefinito: `+100+`
+
+* [[option_weechat.history.max_visited_buffers]] *weechat.history.max_visited_buffers*
+** descrizione: pass:none[numero massimo di buffer visitati da memorizzare]
+** tipo: intero
+** valori: 0 .. 1000
+** valore predefinito: `+50+`
+
+* [[option_weechat.look.align_end_of_lines]] *weechat.look.align_end_of_lines*
+** descrizione: pass:none[allineamento per la fine delle righe (tutte le righe tranne la prima): iniziano al di sotto di questi dati (data, buffer, prefissio, suffisso, messaggio (predefinito))]
+** tipo: intero
+** valori: time, buffer, prefix, suffix, message
+** valore predefinito: `+message+`
+
+* [[option_weechat.look.align_multiline_words]] *weechat.look.align_multiline_words*
+** descrizione: pass:none[alignment for multiline words according to option weechat.look.align_end_of_lines; if disabled, the multiline words will not be aligned, which can be useful to not break long URLs]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+on+`
+
+* [[option_weechat.look.bar_more_down]] *weechat.look.bar_more_down*
+** descrizione: pass:none[stringa visualizzata quando si può effettuare lo scroll della barra il basso (per le barre che hanno il riempimento "horizontal")]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+"++"+`
+
+* [[option_weechat.look.bar_more_left]] *weechat.look.bar_more_left*
+** descrizione: pass:none[stringa visualizzata quando si può effettuare lo scroll della barra verso sinistra (per le barre che hanno il riempimento "horizontal")]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+"<<"+`
+
+* [[option_weechat.look.bar_more_right]] *weechat.look.bar_more_right*
+** descrizione: pass:none[stringa visualizzata quando si può effettuare lo scroll della barra verso destra (per le barre che hanno il riempimento "horizontal")]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+">>"+`
+
+* [[option_weechat.look.bar_more_up]] *weechat.look.bar_more_up*
+** descrizione: pass:none[stringa visualizzata quando si può effettuare lo scroll della barra verso l'alto (per le barre che hanno il riempimento "horizontal")]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+"--"+`
+
+* [[option_weechat.look.bare_display_exit_on_input]] *weechat.look.bare_display_exit_on_input*
+** descrizione: pass:none[exit the bare display mode on any changes in input]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+on+`
+
+* [[option_weechat.look.bare_display_time_format]] *weechat.look.bare_display_time_format*
+** descrizione: pass:none[time format in bare display mode (see man strftime for date/time specifiers)]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+"%H:%M"+`
+
+* [[option_weechat.look.buffer_auto_renumber]] *weechat.look.buffer_auto_renumber*
+** descrizione: pass:none[automatically renumber buffers to have only consecutive numbers and start with number 1; if disabled, gaps between buffer numbers are allowed and the first buffer can have a number greater than 1]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+on+`
+
+* [[option_weechat.look.buffer_notify_default]] *weechat.look.buffer_notify_default*
+** descrizione: pass:none[livello predefinito di notifica per i buffer (usato per comunicare a WeeChat se il buffer deve essere visualizzato nella hotlist oppure no, a seconda dell'importanza del messaggio): all: tutti i messaggi (predefinito), message=messaggi+notifiche, highlight=solo notifiche, none=non viene mai visualizzato nella hotlist]
+** tipo: intero
+** valori: none, highlight, message, all
+** valore predefinito: `+all+`
+
+* [[option_weechat.look.buffer_position]] *weechat.look.buffer_position*
+** descrizione: pass:none[position of a new buffer: end = after the end of list (number = last number + 1) (default), first_gap = at first available number in the list (after the end of list if no number is available); this option is used only if the buffer has no layout number]
+** tipo: intero
+** valori: end, first_gap
+** valore predefinito: `+end+`
+
+* [[option_weechat.look.buffer_search_case_sensitive]] *weechat.look.buffer_search_case_sensitive*
+** descrizione: pass:none[default text search in buffer: case sensitive or not]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+off+`
+
+* [[option_weechat.look.buffer_search_force_default]] *weechat.look.buffer_search_force_default*
+** descrizione: pass:none[force default values for text search in buffer (instead of using values from last search in buffer)]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+off+`
+
+* [[option_weechat.look.buffer_search_regex]] *weechat.look.buffer_search_regex*
+** descrizione: pass:none[default text search in buffer: if enabled, search POSIX extended regular expression, otherwise search simple string]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+off+`
+
+* [[option_weechat.look.buffer_search_where]] *weechat.look.buffer_search_where*
+** descrizione: pass:none[default text search in buffer: in message, prefix, prefix and message]
+** tipo: intero
+** valori: prefix, message, prefix_message
+** valore predefinito: `+prefix_message+`
+
+* [[option_weechat.look.buffer_time_format]] *weechat.look.buffer_time_format*
+** descrizione: pass:none[time format for each line displayed in buffers (see man strftime for date/time specifiers) (note: content is evaluated, so you can use colors with format "${color:xxx}", see /help eval); for example time using grayscale (requires support of 256 colors): "${color:252}%H${color:245}%M${color:240}%S"]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+"%H:%M:%S"+`
+
+* [[option_weechat.look.buffer_time_same]] *weechat.look.buffer_time_same*
+** descrizione: pass:none[time displayed for a message with same time as previous message: use a space " " to hide time, another string to display this string instead of time, or an empty string to disable feature (display time) (note: content is evaluated, so you can use colors with format "${color:xxx}", see /help eval)]
** tipo: stringa
** valori: qualsiasi stringa
** valore predefinito: `+""+`
-* [[option_fset.format.option2]] *fset.format.option2*
-** descrizione: pass:none[second format of each line, used when option fset.look.format_number is set to 2 (note: content is evaluated, see /help fset); an empty string uses the default format ("${marked} ${name} ${type} ${value2}"), which is without evaluation of string and then much faster; formats can be switched with key ctrl+X]
+* [[option_weechat.look.chat_space_right]] *weechat.look.chat_space_right*
+** descrizione: pass:none[keep a space on the right side of chat area if there is a bar displayed on the right (for both text and read marker)]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+off+`
+
+* [[option_weechat.look.color_basic_force_bold]] *weechat.look.color_basic_force_bold*
+** descrizione: pass:none[forza l'attributo "bold" per i colori chiari e "darkgray" nei colori di base (questa opzione è disabilitata per default: il grassetto è usato solo se il terminale ha meno di 16 colori)]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+off+`
+
+* [[option_weechat.look.color_inactive_buffer]] *weechat.look.color_inactive_buffer*
+** descrizione: pass:none[usa un colore diverso per le righe nel buffer inattivo (quando la riga viene da un buffer unito non selezionato)]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+on+`
+
+* [[option_weechat.look.color_inactive_message]] *weechat.look.color_inactive_message*
+** descrizione: pass:none[usa un colore diverso per un messaggio inattivo (quando la finestra non è quella corrente, o se la riga viene da un buffer unito non selezionato)]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+on+`
+
+* [[option_weechat.look.color_inactive_prefix]] *weechat.look.color_inactive_prefix*
+** descrizione: pass:none[usa un colore diverso per il prefisso inattivo (quando la finestra non è quella corrente, o se la riga viene da un buffer unito non selezionato)]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+on+`
+
+* [[option_weechat.look.color_inactive_prefix_buffer]] *weechat.look.color_inactive_prefix_buffer*
+** descrizione: pass:none[usa un colore diverso per il nome del buffer inattivo nel prefisso (quando la finestra non è quella corrente, o se la riga viene da un buffer unito non selezionato)]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+on+`
+
+* [[option_weechat.look.color_inactive_time]] *weechat.look.color_inactive_time*
+** descrizione: pass:none[usa un colore diverso per il tempo di inattività (quando la finestra non è quella corrente, o se la riga viene da un buffer unito non selezionato)]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+off+`
+
+* [[option_weechat.look.color_inactive_window]] *weechat.look.color_inactive_window*
+** descrizione: pass:none[usa un colore diverso per le righe nella finestra inattiva (quando la finestra non è quella corrente)]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+on+`
+
+* [[option_weechat.look.color_nick_offline]] *weechat.look.color_nick_offline*
+** descrizione: pass:none[usa un colore diverso per i nick non in linea (non più in lista nick)]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+off+`
+
+* [[option_weechat.look.color_pairs_auto_reset]] *weechat.look.color_pairs_auto_reset*
+** descrizione: pass:none[ripristina automaticamente la tabella delle coppie colore quando il numero di coppie disponibili è minore o uguale a questo numero (-1 = disabilita il ripristino automatico, dunque è necessario "/color reset" quando la tabella è al completo)]
+** tipo: intero
+** valori: -1 .. 256
+** valore predefinito: `+5+`
+
+* [[option_weechat.look.color_real_white]] *weechat.look.color_real_white*
+** descrizione: pass:none[se impostato, usa il colore bianco reale, disabilitato sui terminali con lo sfondo bianco (se non usato, l'opzione dovrebbe essere attivata per visualizzare il bianco reale invece del colore di primo piano predefinito del terminale)]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+off+`
+
+* [[option_weechat.look.command_chars]] *weechat.look.command_chars*
+** descrizione: pass:none[caratteri usati per determinare se la stringa in input è un comando oppure no: l'input deve iniziare con uno di questi caratteri: la barra ("/") è sempre considerata come prefisso per comando (esempio: ".$")]
** tipo: stringa
** valori: qualsiasi stringa
-** valore predefinito: `+"${marked} ${name} ${type} ${value2}${newline} ${empty_name} ${_default_value}${color:darkgray} -- ${min}..${max}${newline} ${empty_name} ${description}"+`
+** valore predefinito: `+""+`
-* [[option_fset.look.auto_refresh]] *fset.look.auto_refresh*
-** descrizione: pass:none[comma separated list of options to automatically refresh on the fset buffer (if opened); "*" means all options (recommended), a name beginning with "!" is a negative value to prevent an option to be refreshed, wildcard "*" is allowed in names (example: "*,!plugin.section.*")]
+* [[option_weechat.look.command_incomplete]] *weechat.look.command_incomplete*
+** descrizione: pass:none[if set, incomplete and unambiguous commands are allowed, for example /he for /help]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+off+`
+
+* [[option_weechat.look.confirm_quit]] *weechat.look.confirm_quit*
+** descrizione: pass:none[se impostata, il comando /quit deve essere confermato con l'argomento extra "-yes" (consultare /help quit)]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+off+`
+
+* [[option_weechat.look.confirm_upgrade]] *weechat.look.confirm_upgrade*
+** descrizione: pass:none[if set, /upgrade command must be confirmed with extra argument "-yes" (see /help upgrade)]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+off+`
+
+* [[option_weechat.look.day_change]] *weechat.look.day_change*
+** descrizione: pass:none[mostra un messaggio speciale al cambio di data]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+on+`
+
+* [[option_weechat.look.day_change_message_1date]] *weechat.look.day_change_message_1date*
+** descrizione: pass:none[message displayed when the day has changed, with one date displayed (for example at beginning of buffer) (see man strftime for date/time specifiers) (note: content is evaluated, so you can use colors with format "${color:xxx}", see /help eval)]
** tipo: stringa
** valori: qualsiasi stringa
-** valore predefinito: `+"*"+`
+** valore predefinito: `+"-- %a, %d %b %Y --"+`
-* [[option_fset.look.auto_unmark]] *fset.look.auto_unmark*
-** descrizione: pass:none[automatically unmark all options after an action on marked options or after a refresh]
+* [[option_weechat.look.day_change_message_2dates]] *weechat.look.day_change_message_2dates*
+** descrizione: pass:none[message displayed when the day has changed, with two dates displayed (between two messages); the second date specifiers must start with two "%" because strftime is called two times on this string (see man strftime for date/time specifiers) (note: content is evaluated, so you can use colors with format "${color:xxx}", see /help eval)]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+"-- %%a, %%d %%b %%Y (%a, %d %b %Y) --"+`
+
+* [[option_weechat.look.eat_newline_glitch]] *weechat.look.eat_newline_glitch*
+** descrizione: pass:none[se attivo, eat_newline_glitch verrà impostato a 0; viene usato per non aggiungere il carattere a capo alla fine di ogni riga, al fine di non danneggiare il testo quando viene copiato/incollato da WeeChat in un'altra applicazione (l'opzione è disabilitata per default, dato che può causare seri errori di visualizzazione)]
** tipo: bool
** valori: on, off
** valore predefinito: `+off+`
-* [[option_fset.look.condition_catch_set]] *fset.look.condition_catch_set*
-** descrizione: 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]
+* [[option_weechat.look.emphasized_attributes]] *weechat.look.emphasized_attributes*
+** descrizione: pass:none[attributes for emphasized text: one or more attribute chars ("%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline); if the string is empty, the colors weechat.color.emphasized* are used]
** tipo: stringa
** valori: qualsiasi stringa
-** valore predefinito: `+"${count} >= 1"+`
+** valore predefinito: `+""+`
-* [[option_fset.look.export_help_default]] *fset.look.export_help_default*
-** descrizione: pass:none[write help for each option exported by default (this can be overridden with arguments "-help" and "-nohelp" for command /fset -export)]
+* [[option_weechat.look.highlight]] *weechat.look.highlight*
+** descrizione: pass:none[elenco separato da virgole di parole da notificare; confronto non sensibile alle maiuscole (usare "(?-i)" all'inizio delle parole per renderle sensibili alle maiuscole), le parole possono iniziare o terminare con "*" per la corrispondenza parziale; ad esempio: "test,(?-i)*tizio*,flash*"]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+""+`
+
+* [[option_weechat.look.highlight_disable_regex]] *weechat.look.highlight_disable_regex*
+** descrizione: pass:none[POSIX extended regular expression used to prevent any highlight from a message: this option has higher priority over other highlight options (if the string is found in the message, the highlight is disabled and the other options are ignored), regular expression is case insensitive (use "(?-i)" at beginning to make it case sensitive), examples: "<flash.*>", "(?-i)<Flash.*>"]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+""+`
+
+* [[option_weechat.look.highlight_regex]] *weechat.look.highlight_regex*
+** descrizione: pass:none[POSIX extended regular expression used to check if a message has highlight or not, at least one match in string must be surrounded by delimiters (chars different from: alphanumeric, "-", "_" and "|"), regular expression is case insensitive (use "(?-i)" at beginning to make it case sensitive), examples: "flashcode|flashy", "(?-i)FlashCode|flashy"]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+""+`
+
+* [[option_weechat.look.highlight_tags]] *weechat.look.highlight_tags*
+** descrizione: pass:none[comma separated list of tags to highlight; case insensitive comparison; wildcard "*" is allowed in each tag; many tags can be separated by "+" to make a logical "and" between tags; examples: "nick_flashcode" for messages from nick "FlashCode", "irc_notice+nick_toto*" for notices from a nick starting with "toto"]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+""+`
+
+* [[option_weechat.look.hotlist_add_conditions]] *weechat.look.hotlist_add_conditions*
+** descrizione: pass:none[conditions to add a buffer in hotlist (if notify level is OK for the buffer); you can use in these conditions: "window" (current window pointer), "buffer" (buffer pointer to add in hotlist), "priority" (0 = low, 1 = message, 2 = private, 3 = highlight); by default a buffer is added to hotlist if you are away, or if the buffer is not visible on screen (not displayed in any window), or if at least one relay client is connected via the weechat protocol]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+"${away} || ${buffer.num_displayed} == 0 || ${info:relay_client_count,weechat,connected} > 0"+`
+
+* [[option_weechat.look.hotlist_buffer_separator]] *weechat.look.hotlist_buffer_separator*
+** descrizione: pass:none[stringa mostrata tra i buffer nella hotlist]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+", "+`
+
+* [[option_weechat.look.hotlist_count_max]] *weechat.look.hotlist_count_max*
+** descrizione: pass:none[max number of messages count to display in hotlist for a buffer: 0 = never display messages count, other number = display max N messages count (from the highest to lowest priority)]
+** tipo: intero
+** valori: 0 .. 4
+** valore predefinito: `+2+`
+
+* [[option_weechat.look.hotlist_count_min_msg]] *weechat.look.hotlist_count_min_msg*
+** descrizione: pass:none[mostra il conteggio dei messaggi se il numero di messaggi è maggiore o uguale a questo valore]
+** tipo: intero
+** valori: 1 .. 100
+** valore predefinito: `+2+`
+
+* [[option_weechat.look.hotlist_names_count]] *weechat.look.hotlist_names_count*
+** descrizione: pass:none[numero massimo di nomi nella hotlist (0 = nessun nome visualizzato, solo numeri dei buffer)]
+** tipo: intero
+** valori: 0 .. 10000
+** valore predefinito: `+3+`
+
+* [[option_weechat.look.hotlist_names_length]] *weechat.look.hotlist_names_length*
+** descrizione: pass:none[lunghezza massima dei nomi nella hotlist (0 = nessun limite)]
+** tipo: intero
+** valori: 0 .. 32
+** valore predefinito: `+0+`
+
+* [[option_weechat.look.hotlist_names_level]] *weechat.look.hotlist_names_level*
+** descrizione: pass:none[livello per la visualizzazione dei nomi nella hotlist (combinazione di: 1=entrata/uscita, 2=messaggio, 4=privato, 8=notifica, per esempio: 12=privato+notifica)]
+** tipo: intero
+** valori: 1 .. 15
+** valore predefinito: `+12+`
+
+* [[option_weechat.look.hotlist_names_merged_buffers]] *weechat.look.hotlist_names_merged_buffers*
+** descrizione: pass:none[se impostato, forza la visualizzazione dei nomi nella hotlist per i buffer uniti]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+off+`
+
+* [[option_weechat.look.hotlist_prefix]] *weechat.look.hotlist_prefix*
+** descrizione: pass:none[testo mostrato in cima alla hotlist]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+"H: "+`
+
+* [[option_weechat.look.hotlist_remove]] *weechat.look.hotlist_remove*
+** descrizione: pass:none[remove buffers in hotlist: buffer = remove buffer by buffer, merged = remove all visible merged buffers at once]
+** tipo: intero
+** valori: buffer, merged
+** valore predefinito: `+merged+`
+
+* [[option_weechat.look.hotlist_short_names]] *weechat.look.hotlist_short_names*
+** descrizione: pass:none[if set, uses short names to display buffer names in hotlist (start after first "." in name)]
** tipo: bool
** valori: on, off
** valore predefinito: `+on+`
-* [[option_fset.look.format_number]] *fset.look.format_number*
-** descrizione: pass:none[number of format used to display options; this is dynamically changed by the key ctrl-X on the fset buffer]
+* [[option_weechat.look.hotlist_sort]] *weechat.look.hotlist_sort*
+** descrizione: pass:none[sort of hotlist: group_time_*: group by notify level (highlights first) then sort by time, group_number_*: group by notify level (highlights first) then sort by number, number_*: sort by number; asc = ascending sort, desc = descending sort]
** tipo: intero
-** valori: 1 .. 2
-** valore predefinito: `+1+`
+** valori: group_time_asc, group_time_desc, group_number_asc, group_number_desc, number_asc, number_desc
+** valore predefinito: `+group_time_asc+`
-* [[option_fset.look.marked_string]] *fset.look.marked_string*
-** descrizione: pass:none[string displayed when an option is marked (to do an action on multiple options)]
+* [[option_weechat.look.hotlist_suffix]] *weechat.look.hotlist_suffix*
+** descrizione: pass:none[testo mostrato in fondo alla hotlist]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+""+`
+
+* [[option_weechat.look.hotlist_unique_numbers]] *weechat.look.hotlist_unique_numbers*
+** descrizione: pass:none[mantiene solo numeri univoci nella hotlist (vale solo per gli elementi della hotlist per cui il nome NON viene visualizzato dopo il numero)]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+on+`
+
+* [[option_weechat.look.hotlist_update_on_buffer_switch]] *weechat.look.hotlist_update_on_buffer_switch*
+** descrizione: pass:none[update the hotlist when switching buffers]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+on+`
+
+* [[option_weechat.look.input_cursor_scroll]] *weechat.look.input_cursor_scroll*
+** descrizione: pass:none[numero di caratteri mostrati dopo la fine della riga di input quando si scorre per mostrare la fine riga]
+** tipo: intero
+** valori: 0 .. 100
+** valore predefinito: `+20+`
+
+* [[option_weechat.look.input_share]] *weechat.look.input_share*
+** descrizione: pass:none[condivide comandi, testo o entrambi nell'input per tutti i buffer (resta tuttavia la cronologia locale per ogni buffer)]
+** tipo: intero
+** valori: none, commands, text, all
+** valore predefinito: `+none+`
+
+* [[option_weechat.look.input_share_overwrite]] *weechat.look.input_share_overwrite*
+** descrizione: pass:none[se impostato e con l'input condiviso, sovrascrive sempre l'input nel buffer di destinazione]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+off+`
+
+* [[option_weechat.look.input_undo_max]] *weechat.look.input_undo_max*
+** descrizione: pass:none[numero massimo di righe nella cronologia per buffer (0 = nessun limite)]
+** tipo: intero
+** valori: 0 .. 65535
+** valore predefinito: `+32+`
+
+* [[option_weechat.look.item_away_message]] *weechat.look.item_away_message*
+** descrizione: pass:none[mostra il messaggio di assenza del server nell'elemento barra di away]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+on+`
+
+* [[option_weechat.look.item_buffer_filter]] *weechat.look.item_buffer_filter*
+** descrizione: pass:none[stringa usata per mostrare che alcune righe sono state filtrate nel buffer corrente (elemento barra "buffer_filter")]
** tipo: stringa
** valori: qualsiasi stringa
** valore predefinito: `+"*"+`
-* [[option_fset.look.scroll_horizontal]] *fset.look.scroll_horizontal*
-** descrizione: pass:none[left/right scroll in fset buffer (percent of width)]
+* [[option_weechat.look.item_buffer_zoom]] *weechat.look.item_buffer_zoom*
+** descrizione: pass:none[string used to show zoom on merged buffer (bar item "buffer_zoom")]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+"!"+`
+
+* [[option_weechat.look.item_mouse_status]] *weechat.look.item_mouse_status*
+** descrizione: pass:none[string used to show if mouse is enabled (bar item "mouse_status")]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+"M"+`
+
+* [[option_weechat.look.item_time_format]] *weechat.look.item_time_format*
+** descrizione: pass:none[time format for "time" bar item (see man strftime for date/time specifiers) (note: content is evaluated, so you can use colors with format "${color:xxx}", see /help eval)]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+"%H:%M"+`
+
+* [[option_weechat.look.jump_current_to_previous_buffer]] *weechat.look.jump_current_to_previous_buffer*
+** descrizione: pass:none[passa al buffer visualizzato in precedenza al passaggio del numero di buffer corrente con /buffer *N (dove N è un numero di buffer), per passare facilmente ad un altro buffer, e poi tornare a quello attuale]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+on+`
+
+* [[option_weechat.look.jump_previous_buffer_when_closing]] *weechat.look.jump_previous_buffer_when_closing*
+** descrizione: pass:none[passa al buffer visitato in precedenza alla chiusura di un buffer (se disabilitato, allora passa al buffer numero -1)]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+on+`
+
+* [[option_weechat.look.jump_smart_back_to_buffer]] *weechat.look.jump_smart_back_to_buffer*
+** descrizione: pass:none[torna al buffer iniziale dopo aver raggiunto la fine della hotlist]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+on+`
+
+* [[option_weechat.look.key_bind_safe]] *weechat.look.key_bind_safe*
+** descrizione: pass:none[consente solo l'associazione di tasti "sicuri" (che iniziano con ctrl o alt)]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+on+`
+
+* [[option_weechat.look.key_grab_delay]] *weechat.look.key_grab_delay*
+** descrizione: pass:none[default delay (in milliseconds) to grab a key (using default key alt-k); this delay can be overridden in the /input command (see /help input)]
** tipo: intero
-** valori: 1 .. 100
+** valori: 1 .. 10000
+** valore predefinito: `+800+`
+
+* [[option_weechat.look.mouse]] *weechat.look.mouse*
+** descrizione: pass:none[abilita il supporto del mouse]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+off+`
+
+* [[option_weechat.look.mouse_timer_delay]] *weechat.look.mouse_timer_delay*
+** descrizione: pass:none[ritardo (in millisecondi) per catturare un evento del mouse: WeeChat attende questo ritardo prima di analizzare l'evento]
+** tipo: intero
+** valori: 1 .. 10000
+** valore predefinito: `+100+`
+
+* [[option_weechat.look.nick_color_force]] *weechat.look.nick_color_force*
+** descrizione: pass:none[force color for some nicks: hash computed with nickname to find color will not be used for these nicks (format is: "nick1:color1;nick2:color2"); look up for nicks is with exact case then lower case, so it's possible to use only lower case for nicks in this option; color can include background with the format "text,background", for example "yellow,red"]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+""+`
+
+* [[option_weechat.look.nick_color_hash]] *weechat.look.nick_color_hash*
+** descrizione: pass:none[hash algorithm used to find the color for a nick: djb2 = variant of djb2 (position of letters matters: anagrams of a nick have different color), djb2_32 = variant of djb2 using 32-bit instead of 64-bit integer, sum = sum of letters, sum_32 = sum of letters using 32-bit instead of 64-bit integer]
+** tipo: intero
+** valori: djb2, sum, djb2_32, sum_32
+** valore predefinito: `+djb2+`
+
+* [[option_weechat.look.nick_color_hash_salt]] *weechat.look.nick_color_hash_salt*
+** descrizione: pass:none[salt for the hash algorithm used to find nick colors (the nickname is appended to this salt and the hash algorithm operates on this string); modifying this shuffles nick colors]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+""+`
+
+* [[option_weechat.look.nick_color_stop_chars]] *weechat.look.nick_color_stop_chars*
+** descrizione: pass:none[chars used to stop in nick when computing color with letters of nick (at least one char outside this list must be in string before stopping) (example: nick "|nick|away" with "|" in chars will return color of nick "|nick"); this option has an impact on option weechat.look.nick_color_force, so the nick for the forced color must not contain the chars ignored by this option]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+"_|["+`
+
+* [[option_weechat.look.nick_prefix]] *weechat.look.nick_prefix*
+** descrizione: pass:none[testo da visualizzare prima del nick nel prefisso del messaggio, esempio: "<"]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+""+`
+
+* [[option_weechat.look.nick_suffix]] *weechat.look.nick_suffix*
+** descrizione: pass:none[testo da visualizzare dopo il nick nel prefisso del messaggio, esempio: ">"]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+""+`
+
+* [[option_weechat.look.paste_auto_add_newline]] *weechat.look.paste_auto_add_newline*
+** descrizione: pass:none[automatically add a newline at the end of pasted text if there are at least two lines and if a confirmation is asked]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+on+`
+
+* [[option_weechat.look.paste_bracketed]] *weechat.look.paste_bracketed*
+** descrizione: pass:none[abilita la modalità "bracketed paste" per il terminale (non supportata da tutti i terminali/multiplexer): in questa modalità, il testo incollato viene racchiuso da sequenze di controllo in modo che WeeChat possa differenziare il testo incollato dal testo digitato ("ESC[200~", seguito dal testo incollato, seguito da "ESC[201~")]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+on+`
+
+* [[option_weechat.look.paste_bracketed_timer_delay]] *weechat.look.paste_bracketed_timer_delay*
+** descrizione: pass:none[forza la fine della modalità "bracketed paste" dopo questo ritardo (in secondi) se la sequenza di controllo per la fine del "bracketed paste" ("ESC[201~") non è stata ricevuta in tempo]
+** tipo: intero
+** valori: 1 .. 60
** valore predefinito: `+10+`
-* [[option_fset.look.show_plugins_desc]] *fset.look.show_plugins_desc*
-** descrizione: pass:none[show the plugin description options (plugins.desc.*)]
+* [[option_weechat.look.paste_max_lines]] *weechat.look.paste_max_lines*
+** descrizione: pass:none[max number of lines for paste without asking user (-1 = disable this feature); this option is used only if the bar item "input_paste" is used in at least one bar (by default it is used in "input" bar)]
+** tipo: intero
+** valori: -1 .. 2147483647
+** valore predefinito: `+1+`
+
+* [[option_weechat.look.prefix_action]] *weechat.look.prefix_action*
+** descrizione: pass:none[prefix for action messages (note: content is evaluated, so you can use colors with format "${color:xxx}", see /help eval)]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+" *"+`
+
+* [[option_weechat.look.prefix_align]] *weechat.look.prefix_align*
+** descrizione: pass:none[allineamento prefisso (none, left, right (predefinito))]
+** tipo: intero
+** valori: none, left, right
+** valore predefinito: `+right+`
+
+* [[option_weechat.look.prefix_align_max]] *weechat.look.prefix_align_max*
+** descrizione: pass:none[dimensione massima prefisso (0 = nessuna dimensione massima)]
+** tipo: intero
+** valori: 0 .. 128
+** valore predefinito: `+0+`
+
+* [[option_weechat.look.prefix_align_min]] *weechat.look.prefix_align_min*
+** descrizione: pass:none[dimensione minima per il prefisso]
+** tipo: intero
+** valori: 0 .. 128
+** valore predefinito: `+0+`
+
+* [[option_weechat.look.prefix_align_more]] *weechat.look.prefix_align_more*
+** descrizione: pass:none[carattere da mostrare se il prefisso è troncato (deve essere esattamente un carattere sullo schermo)]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+"+"+`
+
+* [[option_weechat.look.prefix_align_more_after]] *weechat.look.prefix_align_more_after*
+** descrizione: pass:none[display the truncature char (by default "+") after the text (by replacing the space that should be displayed here); if disabled, the truncature char replaces last char of text]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+on+`
+
+* [[option_weechat.look.prefix_buffer_align]] *weechat.look.prefix_buffer_align*
+** descrizione: pass:none[prefisso di allineamento per il nome del buffer, quando più buffer vengono uniti con lo stesso numero (none (nessuno), left(sinistra), right(destra - predefinito)]
+** tipo: intero
+** valori: none, left, right
+** valore predefinito: `+right+`
+
+* [[option_weechat.look.prefix_buffer_align_max]] *weechat.look.prefix_buffer_align_max*
+** descrizione: pass:none[allineamento del prefisso per nome buffer, quando più buffer sono uniti con lo stesso numero (0 = nessuna dimensione massima)]
+** tipo: intero
+** valori: 0 .. 128
+** valore predefinito: `+0+`
+
+* [[option_weechat.look.prefix_buffer_align_more]] *weechat.look.prefix_buffer_align_more*
+** descrizione: pass:none[carattere da mostrare se il nome del buffer è troncato (quando più buffer vengono uniti con lo stesso numero) (deve essere esattamente un carattere su schermo)]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+"+"+`
+
+* [[option_weechat.look.prefix_buffer_align_more_after]] *weechat.look.prefix_buffer_align_more_after*
+** descrizione: pass:none[display the truncature char (by default "+") after the text (by replacing the space that should be displayed here); if disabled, the truncature char replaces last char of text]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+on+`
+
+* [[option_weechat.look.prefix_error]] *weechat.look.prefix_error*
+** descrizione: pass:none[prefisso per i messaggi di errore (nota: il contenuto viene valutato, per cui è possibile usare colori con il formato "${color:xxx}", consultare /help eval]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+"=!="+`
+
+* [[option_weechat.look.prefix_join]] *weechat.look.prefix_join*
+** descrizione: pass:none[prefix for join messages (note: content is evaluated, so you can use colors with format "${color:xxx}", see /help eval)]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+"-->"+`
+
+* [[option_weechat.look.prefix_network]] *weechat.look.prefix_network*
+** descrizione: pass:none[prefix for network messages (note: content is evaluated, so you can use colors with format "${color:xxx}", see /help eval)]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+"--"+`
+
+* [[option_weechat.look.prefix_quit]] *weechat.look.prefix_quit*
+** descrizione: pass:none[prefix for quit messages (note: content is evaluated, so you can use colors with format "${color:xxx}", see /help eval)]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+"<--"+`
+
+* [[option_weechat.look.prefix_same_nick]] *weechat.look.prefix_same_nick*
+** descrizione: pass:none[prefix displayed for a message with same nick as previous but not next message: use a space " " to hide prefix, another string to display this string instead of prefix, or an empty string to disable feature (display prefix)]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+""+`
+
+* [[option_weechat.look.prefix_same_nick_middle]] *weechat.look.prefix_same_nick_middle*
+** descrizione: pass:none[prefix displayed for a message with same nick as previous and next message: use a space " " to hide prefix, another string to display this string instead of prefix, or an empty string to disable feature (display prefix)]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+""+`
+
+* [[option_weechat.look.prefix_suffix]] *weechat.look.prefix_suffix*
+** descrizione: pass:none[stringa visualizzata dopo il prefisso]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+"|"+`
+
+* [[option_weechat.look.quote_nick_prefix]] *weechat.look.quote_nick_prefix*
+** descrizione: pass:none[text to display before nick when quoting a message (see /help cursor)]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+"<"+`
+
+* [[option_weechat.look.quote_nick_suffix]] *weechat.look.quote_nick_suffix*
+** descrizione: pass:none[text to display after nick when quoting a message (see /help cursor)]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+">"+`
+
+* [[option_weechat.look.quote_time_format]] *weechat.look.quote_time_format*
+** descrizione: pass:none[time format when quoting a message (see /help cursor)]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+"%H:%M:%S"+`
+
+* [[option_weechat.look.read_marker]] *weechat.look.read_marker*
+** descrizione: pass:none[usa segnalibro (riga o carattere) sui buffer per mostrare la prima riga non letta]
+** tipo: intero
+** valori: none, line, char
+** valore predefinito: `+line+`
+
+* [[option_weechat.look.read_marker_always_show]] *weechat.look.read_marker_always_show*
+** descrizione: pass:none[mostra sempre il segnalibro, anche se si trova dopo l'ultima riga del buffer]
** tipo: bool
** valori: on, off
** valore predefinito: `+off+`
-* [[option_fset.look.sort]] *fset.look.sort*
-** descrizione: 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]
+* [[option_weechat.look.read_marker_string]] *weechat.look.read_marker_string*
+** descrizione: pass:none[stringa usata per tracciare il segnalibro (la stringa viene ripetuta fino a fine riga)]
** tipo: stringa
** valori: qualsiasi stringa
-** valore predefinito: `+"~name"+`
+** valore predefinito: `+"- "+`
-* [[option_fset.look.unmarked_string]] *fset.look.unmarked_string*
-** descrizione: pass:none[string displayed when an option is not marked]
+* [[option_weechat.look.read_marker_update_on_buffer_switch]] *weechat.look.read_marker_update_on_buffer_switch*
+** descrizione: pass:none[update the read marker when switching buffers]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+on+`
+
+* [[option_weechat.look.save_config_on_exit]] *weechat.look.save_config_on_exit*
+** descrizione: pass:none[salva file di configurazione all'uscita]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+on+`
+
+* [[option_weechat.look.save_config_with_fsync]] *weechat.look.save_config_with_fsync*
+** descrizione: pass:none[use fsync to synchronize the configuration file with the storage device (see man fsync); this is slower but should prevent any data loss in case of power failure during the save of configuration file]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+off+`
+
+* [[option_weechat.look.save_layout_on_exit]] *weechat.look.save_layout_on_exit*
+** descrizione: pass:none[save layout on exit (buffers, windows, or both)]
+** tipo: intero
+** valori: none, buffers, windows, all
+** valore predefinito: `+none+`
+
+* [[option_weechat.look.scroll_amount]] *weechat.look.scroll_amount*
+** descrizione: pass:none[le righe da scorrere con scroll_up e scroll_down]
+** tipo: intero
+** valori: 1 .. 2147483647
+** valore predefinito: `+3+`
+
+* [[option_weechat.look.scroll_bottom_after_switch]] *weechat.look.scroll_bottom_after_switch*
+** descrizione: pass:none[scorri verso il fondo della finestra dopo essere passati ad un altro buffer non ricordare la posizione di scorrimento nelle finestre); lo scorrimento viene eseguito solo per i buffer con contenuto formattato (contenuto non libero)]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+off+`
+
+* [[option_weechat.look.scroll_page_percent]] *weechat.look.scroll_page_percent*
+** descrizione: pass:none[percentuale della schermata da scorrere in alto o in basso (per esempio 100 indica una pagina intera, 50 metà)]
+** tipo: intero
+** valori: 1 .. 100
+** valore predefinito: `+100+`
+
+* [[option_weechat.look.search_text_not_found_alert]] *weechat.look.search_text_not_found_alert*
+** descrizione: pass:none[avvisa l'utente quando il testo cercato non viene trovato nel buffer]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+on+`
+
+* [[option_weechat.look.separator_horizontal]] *weechat.look.separator_horizontal*
+** descrizione: pass:none[char used to draw horizontal separators around bars and windows (empty value will draw a real line with ncurses, but may cause bugs with URL selection under some terminals); width on screen must be exactly one char]
** tipo: stringa
** valori: qualsiasi stringa
-** valore predefinito: `+" "+`
+** valore predefinito: `+"-"+`
-* [[option_fset.look.use_color_value]] *fset.look.use_color_value*
-** descrizione: pass:none[use the color to display value of color options]
+* [[option_weechat.look.separator_vertical]] *weechat.look.separator_vertical*
+** descrizione: pass:none[char used to draw vertical separators around bars and windows (empty value will draw a real line with ncurses); width on screen must be exactly one char]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+""+`
+
+* [[option_weechat.look.tab_width]] *weechat.look.tab_width*
+** descrizione: pass:none[number of spaces used to display tabs in messages]
+** tipo: intero
+** valori: 1 .. 64
+** valore predefinito: `+1+`
+
+* [[option_weechat.look.time_format]] *weechat.look.time_format*
+** descrizione: pass:none[formato dell'ora per le date convertite in stringhe e mostrate nei messaggi(consultare man strftime per i dettagli su data/ora)]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+"%a, %d %b %Y %T"+`
+
+* [[option_weechat.look.window_auto_zoom]] *weechat.look.window_auto_zoom*
+** descrizione: pass:none[automatically zoom on current window if the terminal becomes too small to display all windows (use alt-z to unzoom windows when the terminal is big enough)]
** tipo: bool
** valori: on, off
** valore predefinito: `+off+`
-* [[option_fset.look.use_keys]] *fset.look.use_keys*
-** descrizione: pass:none[use keys alt+X in fset buffer to do actions on options; if disabled, only the input is allowed]
+* [[option_weechat.look.window_separator_horizontal]] *weechat.look.window_separator_horizontal*
+** descrizione: pass:none[mostra un separatore orizzontale tra le finestre]
** tipo: bool
** valori: on, off
** valore predefinito: `+on+`
-* [[option_fset.look.use_mute]] *fset.look.use_mute*
-** descrizione: pass:none[use /mute command to set options]
+* [[option_weechat.look.window_separator_vertical]] *weechat.look.window_separator_vertical*
+** descrizione: pass:none[mostra un separatore verticale tra le finestre]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+on+`
+
+* [[option_weechat.look.window_title]] *weechat.look.window_title*
+** descrizione: pass:none[title for window (terminal for Curses GUI), set on startup; an empty string will keep title unchanged (note: content is evaluated, see /help eval); example: "WeeChat ${info:version}"]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+""+`
+
+* [[option_weechat.look.word_chars_highlight]] *weechat.look.word_chars_highlight*
+** descrizione: pass:none[comma-separated list of chars (or range of chars) that are considered part of words for highlights; each item can be a single char, a range of chars (format: a-z), a class of wide character (for example "alnum", see man wctype); a "!" before the item makes it negative (ie the char is NOT considered part of words); the value "*" matches any char; unicode chars are allowed with the format \u1234, for example \u00A0 for unbreakable space (see /help print for supported formats)]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+"!\u00A0,-,_,|,alnum"+`
+
+* [[option_weechat.look.word_chars_input]] *weechat.look.word_chars_input*
+** descrizione: pass:none[comma-separated list of chars (or range of chars) that are considered part of words for command line; each item can be a single char, a range of chars (format: a-z), a class of wide character (for example "alnum", see man wctype); a "!" before the item makes it negative (ie the char is NOT considered part of words); the value "*" matches any char; unicode chars are allowed with the format \u1234, for example \u00A0 for unbreakable space (see /help print for supported formats)]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+"!\u00A0,-,_,|,alnum"+`
+
+* [[option_weechat.network.connection_timeout]] *weechat.network.connection_timeout*
+** descrizione: pass:none[timeout (in secondi) per la connessione ad un host remoto (eseguita in un processo figlio)]
+** tipo: intero
+** valori: 1 .. 2147483647
+** valore predefinito: `+60+`
+
+* [[option_weechat.network.gnutls_ca_system]] *weechat.network.gnutls_ca_system*
+** descrizione: pass:none[load system's default trusted certificate authorities on startup; this can be turned off to save some memory only if you are not using SSL connections at all]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+on+`
+
+* [[option_weechat.network.gnutls_ca_user]] *weechat.network.gnutls_ca_user*
+** descrizione: pass:none[extra file(s) with certificate authorities; multiple files must be separated by colons (each path is evaluated, see function string_eval_path_home in plugin API reference)]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+""+`
+
+* [[option_weechat.network.gnutls_handshake_timeout]] *weechat.network.gnutls_handshake_timeout*
+** descrizione: pass:none[timeout (in secondi) per l'handshake di gnutls]
+** tipo: intero
+** valori: 1 .. 2147483647
+** valore predefinito: `+30+`
+
+* [[option_weechat.network.proxy_curl]] *weechat.network.proxy_curl*
+** descrizione: pass:none[name of proxy used for download of URLs with Curl (used to download list of scripts and in scripts calling function hook_process); the proxy must be defined with command /proxy]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+""+`
+
+* [[option_weechat.plugin.autoload]] *weechat.plugin.autoload*
+** descrizione: pass:none[comma separated list of plugins to load automatically at startup, "*" means all plugins found, a name beginning with "!" is a negative value to prevent a plugin from being loaded, wildcard "*" is allowed in names (examples: "*" or "*,!lua,!tcl")]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+"*"+`
+
+* [[option_weechat.plugin.extension]] *weechat.plugin.extension*
+** descrizione: pass:none[elenco separato da virgole di estensioni dei nomi file per i plugin]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+".so,.dll"+`
+
+* [[option_weechat.plugin.path]] *weechat.plugin.path*
+** descrizione: pass:none[path for searching plugins (path is evaluated, see function string_eval_path_home in plugin API reference)]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+"${weechat_data_dir}/plugins"+`
+
+* [[option_weechat.plugin.save_config_on_unload]] *weechat.plugin.save_config_on_unload*
+** descrizione: pass:none[salva i file di configurazione allo scaricamento dei plugin]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+on+`
+
+* [[option_weechat.signal.sighup]] *weechat.signal.sighup*
+** descrizione: pass:none[command to execute when the signal is received, multiple commands can be separated by semicolons (note: commands are evaluated, see /help eval)]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+"${if:${info:weechat_headless}?/reload:/quit -yes}"+`
+
+* [[option_weechat.signal.sigquit]] *weechat.signal.sigquit*
+** descrizione: pass:none[command to execute when the signal is received, multiple commands can be separated by semicolons (note: commands are evaluated, see /help eval)]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+"/quit -yes"+`
+
+* [[option_weechat.signal.sigterm]] *weechat.signal.sigterm*
+** descrizione: pass:none[command to execute when the signal is received, multiple commands can be separated by semicolons (note: commands are evaluated, see /help eval)]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+"/quit -yes"+`
+
+* [[option_weechat.signal.sigusr1]] *weechat.signal.sigusr1*
+** descrizione: pass:none[command to execute when the signal is received, multiple commands can be separated by semicolons (note: commands are evaluated, see /help eval)]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+""+`
+
+* [[option_weechat.signal.sigusr2]] *weechat.signal.sigusr2*
+** descrizione: pass:none[command to execute when the signal is received, multiple commands can be separated by semicolons (note: commands are evaluated, see /help eval)]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+""+`
+
+* [[option_weechat.startup.command_after_plugins]] *weechat.startup.command_after_plugins*
+** descrizione: pass:none[command executed when WeeChat starts, after loading plugins; multiple commands can be separated by semicolons (note: commands are evaluated, see /help eval)]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+""+`
+
+* [[option_weechat.startup.command_before_plugins]] *weechat.startup.command_before_plugins*
+** descrizione: pass:none[command executed when WeeChat starts, before loading plugins; multiple commands can be separated by semicolons (note: commands are evaluated, see /help eval)]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+""+`
+
+* [[option_weechat.startup.display_logo]] *weechat.startup.display_logo*
+** descrizione: pass:none[mostra il logo di WeeChat all'avvio]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+on+`
+
+* [[option_weechat.startup.display_version]] *weechat.startup.display_version*
+** descrizione: pass:none[mostra la versione di WeeChat all'avvio]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+on+`
+
+* [[option_weechat.startup.sys_rlimit]] *weechat.startup.sys_rlimit*
+** descrizione: pass:none[imposta limite delle risorse per il processo WeeChat, il formato è: "res1:limit1,res2,limit2"; il nome della risorsa è il componente finale della costante (RLIMIT_XXX) in caratteri minuscoli (consultare man setrlimit per i valori); il limite -1 vuol dire "illimitato"; esempio: imposta dimensione illimitata per il file core e 1GB massimo di memoria virtuale: "core:-1,as:1000000000"]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+""+`
+// end::weechat_options[]
+
+// tag::xfer_options[]
+* [[option_xfer.color.status_aborted]] *xfer.color.status_aborted*
+** descrizione: pass:none[colore del testo per lo status "annullato"]
+** tipo: colore
+** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** valore predefinito: `+lightred+`
+
+* [[option_xfer.color.status_active]] *xfer.color.status_active*
+** descrizione: pass:none[colore del testo per lo status "attivo"]
+** tipo: colore
+** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** valore predefinito: `+lightblue+`
+
+* [[option_xfer.color.status_connecting]] *xfer.color.status_connecting*
+** descrizione: pass:none[colore del testo per lo status "connessione in corso"]
+** tipo: colore
+** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** valore predefinito: `+yellow+`
+
+* [[option_xfer.color.status_done]] *xfer.color.status_done*
+** descrizione: pass:none[colore del testo per lo status "completato"]
+** tipo: colore
+** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** valore predefinito: `+lightgreen+`
+
+* [[option_xfer.color.status_failed]] *xfer.color.status_failed*
+** descrizione: pass:none[colore del testo per lo status "fallito"]
+** tipo: colore
+** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** valore predefinito: `+lightred+`
+
+* [[option_xfer.color.status_waiting]] *xfer.color.status_waiting*
+** descrizione: pass:none[colore del testo per lo status "in attesa"]
+** tipo: colore
+** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** valore predefinito: `+lightcyan+`
+
+* [[option_xfer.color.text]] *xfer.color.text*
+** descrizione: pass:none[colore del testo nel buffer xfer]
+** tipo: colore
+** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** valore predefinito: `+default+`
+
+* [[option_xfer.color.text_bg]] *xfer.color.text_bg*
+** descrizione: pass:none[colore di sfondo del buffer xfer]
+** tipo: colore
+** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** valore predefinito: `+default+`
+
+* [[option_xfer.color.text_selected]] *xfer.color.text_selected*
+** descrizione: pass:none[colore della riga selezionata nel buffer xfer]
+** tipo: colore
+** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** valore predefinito: `+white+`
+
+* [[option_xfer.file.auto_accept_chats]] *xfer.file.auto_accept_chats*
+** descrizione: pass:none[accetta automaticamente le richieste di chat (usare con cautela!)]
** tipo: bool
** valori: on, off
** valore predefinito: `+off+`
-// end::fset_options[]
+
+* [[option_xfer.file.auto_accept_files]] *xfer.file.auto_accept_files*
+** descrizione: pass:none[accetta automaticamente i file in arrivo (usare con cautela!)]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+off+`
+
+* [[option_xfer.file.auto_accept_nicks]] *xfer.file.auto_accept_nicks*
+** descrizione: pass:none[comma-separated list of nicks for which the incoming files and chats are automatically accepted; format is "server.nick" (for a specific server) or "nick" (for all servers); example: "libera.FlashCode,andrew"]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+""+`
+
+* [[option_xfer.file.auto_check_crc32]] *xfer.file.auto_check_crc32*
+** descrizione: pass:none[automatically check CRC32 file checksum if it is found in the filename (8 hexadecimal chars)]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+off+`
+
+* [[option_xfer.file.auto_rename]] *xfer.file.auto_rename*
+** descrizione: pass:none[rinomina i file in ingresso se esistenti (aggiunge ".1", ".2", ...)]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+on+`
+
+* [[option_xfer.file.auto_resume]] *xfer.file.auto_resume*
+** descrizione: pass:none[riprende automaticamente il trasferimento dei file se la connessione all'host viene perduta]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+on+`
+
+* [[option_xfer.file.convert_spaces]] *xfer.file.convert_spaces*
+** descrizione: pass:none[convert spaces to underscores when sending and receiving files]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+on+`
+
+* [[option_xfer.file.download_path]] *xfer.file.download_path*
+** descrizione: pass:none[path for writing incoming files (path is evaluated, see function string_eval_path_home in plugin API reference)]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+"${weechat_data_dir}/xfer"+`
+
+* [[option_xfer.file.download_temporary_suffix]] *xfer.file.download_temporary_suffix*
+** descrizione: pass:none[temporary filename suffix used during the transfer for a file received, it is removed after successful transfer; if empty string, no filename suffix is used during the transfer]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+".part"+`
+
+* [[option_xfer.file.upload_path]] *xfer.file.upload_path*
+** descrizione: pass:none[path for reading files when sending (path is evaluated, see function string_eval_path_home in plugin API reference)]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+"~"+`
+
+* [[option_xfer.file.use_nick_in_filename]] *xfer.file.use_nick_in_filename*
+** descrizione: pass:none[usa il nick remoto come prefisso nel nome del file locale alla ricezione]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+on+`
+
+* [[option_xfer.look.auto_open_buffer]] *xfer.look.auto_open_buffer*
+** descrizione: pass:none[apre automaticamente il buffer xfer quando un nuovo xfer viene aggiunto alla lista]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+on+`
+
+* [[option_xfer.look.progress_bar_size]] *xfer.look.progress_bar_size*
+** descrizione: pass:none[dimensione barra di avanzamento, in caratteri (se 0, è disabilitata)]
+** tipo: intero
+** valori: 0 .. 256
+** valore predefinito: `+20+`
+
+* [[option_xfer.look.pv_tags]] *xfer.look.pv_tags*
+** descrizione: pass:none[elenco separato da virgole di tag usati nei messaggi privati, ad esempio: "notify_message", "notify_private" o "notify_highlight"]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+"notify_private"+`
+
+* [[option_xfer.network.blocksize]] *xfer.network.blocksize*
+** descrizione: pass:none[dimensione blocco per l'invio dei pacchetti, in byte]
+** tipo: intero
+** valori: 1024 .. 102400
+** valore predefinito: `+65536+`
+
+* [[option_xfer.network.fast_send]] *xfer.network.fast_send*
+** descrizione: pass:none[non attendere ACK all'invio del file]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+on+`
+
+* [[option_xfer.network.own_ip]] *xfer.network.own_ip*
+** descrizione: pass:none[Indirizzo IP o DNS per l'invio di file/chat (se vuoto, verrà usata l'interfaccia IP locale)]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+""+`
+
+* [[option_xfer.network.port_range]] *xfer.network.port_range*
+** descrizione: pass:none[forza i file in uscita/chat ad usare solo le porte in un dato intervallo (utile per il NAT) (sintassi: una singola porta, es. 5000 o un intervallo di porte, es. 5000-5015. Un valore nullo significa qualsiasi porta, consigliato usare porte maggiori di 1024, perché l'uso di porte inferiori è possibile solo per root)]
+** tipo: stringa
+** valori: qualsiasi stringa
+** valore predefinito: `+""+`
+
+* [[option_xfer.network.send_ack]] *xfer.network.send_ack*
+** descrizione: pass:none[send acks when receiving files; if disabled, the transfer may freeze if the sender is waiting for acks (for example a WeeChat sending a file with option xfer.network.fast_send set to off); on the other hand, disabling send of acks may prevent a freeze if the acks are not sent immediately to the sender]
+** tipo: bool
+** valori: on, off
+** valore predefinito: `+on+`
+
+* [[option_xfer.network.speed_limit_recv]] *xfer.network.speed_limit_recv*
+** descrizione: pass:none[speed limit for receiving files, in kilo-bytes by second (0 means no limit)]
+** tipo: intero
+** valori: 0 .. 2147483647
+** valore predefinito: `+0+`
+
+* [[option_xfer.network.speed_limit_send]] *xfer.network.speed_limit_send*
+** descrizione: pass:none[limite di velocità per l'invio dei file, in kb per secondo (0 vuol dire senza limite)]
+** tipo: intero
+** valori: 0 .. 2147483647
+** valore predefinito: `+0+`
+
+* [[option_xfer.network.timeout]] *xfer.network.timeout*
+** descrizione: pass:none[timeout per la richiesta xfer (in secondi)]
+** tipo: intero
+** valori: 5 .. 2147483647
+** valore predefinito: `+300+`
+// end::xfer_options[]
diff --git a/doc/ja/includes/autogen_user_commands.ja.adoc b/doc/ja/includes/autogen_user_commands.ja.adoc
index 8f6e0a6ec..c2f775252 100644
--- a/doc/ja/includes/autogen_user_commands.ja.adoc
+++ b/doc/ja/includes/autogen_user_commands.ja.adoc
@@ -1076,11 +1076,13 @@ target: マスクに一致するものだけを返す
add <alias> [<command>[;<command>...]]
addcompletion <completion> <alias> [<command>[;<command>...]]
del <alias> [<alias>...]
+ rename <alias> <new_alias>
list: list aliases (without argument, this list is displayed)
add: add an alias
addcompletion: add an alias with a custom completion
del: delete an alias
+ rename: rename an alias
completion: completion for alias: by default completion is done with target command
note: you can use %%command to use completion of an existing command
alias: name of alias
@@ -1101,6 +1103,8 @@ Examples:
/alias add split /window splith
alias /hello to say "hello" on all channels but not on #weechat:
/alias add hello /allchan -exclude=#weechat hello
+ rename alias "hello" to "Hello":
+ /alias rename hello Hello
alias /forcejoin to send IRC command "forcejoin" with completion of /sajoin:
/alias addcompletion %%sajoin forcejoin /quote forcejoin
----
diff --git a/doc/ja/includes/autogen_user_default_aliases.ja.adoc b/doc/ja/includes/autogen_user_default_aliases.ja.adoc
index b18113255..87391af00 100644
--- a/doc/ja/includes/autogen_user_default_aliases.ja.adoc
+++ b/doc/ja/includes/autogen_user_default_aliases.ja.adoc
@@ -8,37 +8,37 @@
|===
| 別名 | コマンド | 補完
-| /AAWAY | /allserv /away | -
-| /ANICK | /allserv /nick | -
-| /BEEP | /print -beep | -
-| /BYE | /quit | -
-| /C | /buffer clear | -
-| /CL | /buffer clear | -
-| /CLOSE | /buffer close | -
-| /CHAT | /dcc chat | -
-| /EXIT | /quit | -
-| /IG | /ignore | -
-| /J | /join | -
-| /K | /kick | -
-| /KB | /kickban | -
-| /LEAVE | /part | -
-| /M | /msg | -
-| /MUB | /unban * | -
-| /MSGBUF | /command -buffer $1 * /input send $2- | %(buffers_plugins_names)
-| /N | /names | -
-| /Q | /query | -
-| /REDRAW | /window refresh | -
-| /SAY | /msg * | -
-| /SIGNOFF | /quit | -
-| /T | /topic | -
-| /UB | /unban | -
-| /UMODE | /mode $nick | -
-| /V | /command core version | -
-| /W | /who | -
-| /WC | /window close | -
-| /WI | /whois | -
-| /WII | /whois $1 $1 | -
-| /WM | /window merge | -
-| /WW | /whowas | -
+| /aaway | /allserv /away | -
+| /anick | /allserv /nick | -
+| /beep | /print -beep | -
+| /bye | /quit | -
+| /c | /buffer clear | -
+| /cl | /buffer clear | -
+| /close | /buffer close | -
+| /chat | /dcc chat | -
+| /exit | /quit | -
+| /ig | /ignore | -
+| /j | /join | -
+| /k | /kick | -
+| /kb | /kickban | -
+| /leave | /part | -
+| /m | /msg | -
+| /mub | /unban * | -
+| /msgbuf | /command -buffer $1 * /input send $2- | %(buffers_plugins_names)
+| /n | /names | -
+| /q | /query | -
+| /redraw | /window refresh | -
+| /say | /msg * | -
+| /signoff | /quit | -
+| /t | /topic | -
+| /ub | /unban | -
+| /umode | /mode $nick | -
+| /v | /command core version | -
+| /w | /who | -
+| /wc | /window close | -
+| /wi | /whois | -
+| /wii | /whois $1 $1 | -
+| /wm | /window merge | -
+| /ww | /whowas | -
|===
// end::default_aliases[]
diff --git a/doc/ja/includes/autogen_user_options.ja.adoc b/doc/ja/includes/autogen_user_options.ja.adoc
index 413241fe4..a53133857 100644
--- a/doc/ja/includes/autogen_user_options.ja.adoc
+++ b/doc/ja/includes/autogen_user_options.ja.adoc
@@ -3,2109 +3,725 @@
// DO NOT EDIT BY HAND!
//
-// tag::sec_options[]
-* [[option_sec.crypt.cipher]] *sec.crypt.cipher*
-** 説明: pass:none[データの暗号化を行う暗号鍵 (アルゴリズムの後ろに書かれた数は鍵のビット数)]
-** タイプ: 整数
-** 値: aes128, aes192, aes256
-** デフォルト値: `+aes256+`
+// tag::buflist_options[]
+* [[option_buflist.format.buffer]] *buflist.format.buffer*
+** 説明: pass:none[各バッファの表示書式 (注意: 値は評価されます、/help buflist を参照してください); 例: バー要素 "buflist" は標準書式、それ以外のバー要素 ("buflist2" や "buflist3") は角括弧内にバッファ番号を入れた書式: "${if:${bar_item.name}==buflist?${format_number}${indent}${format_nick_prefix}${color_hotlist}${format_name}:[${number}\]}"]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+"${format_number}${indent}${format_nick_prefix}${color_hotlist}${format_name}"+`
-* [[option_sec.crypt.hash_algo]] *sec.crypt.hash_algo*
-** 説明: pass:none[復号化データをチェックするハッシュアルゴリズム]
-** タイプ: 整数
-** 値: sha224, sha256, sha384, sha512
-** デフォルト値: `+sha256+`
+* [[option_buflist.format.buffer_current]] *buflist.format.buffer_current*
+** 説明: pass:none[現在のバッファの表示書式 (注意: 値は評価されます、/help eval を参照してください)]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+"${color:,blue}${format_buffer}"+`
-* [[option_sec.crypt.passphrase_command]] *sec.crypt.passphrase_command*
-** 説明: pass:none[read the passphrase from the output of this system command (only the first line is used and it must not contain any extra character); this option is used only when reading file sec.conf and if the environment variable "WEECHAT_PASSPHRASE" is not set (the environment variable has higher priority); example with password-store: "/usr/bin/pass show weechat/passphrase"]
+* [[option_buflist.format.hotlist]] *buflist.format.hotlist*
+** 説明: pass:none[ホットリストの表示書式 (注意: 値は評価されます、/help eval を参照してください)]
** タイプ: 文字列
** 値: 未制約文字列
-** デフォルト値: `+""+`
+** デフォルト値: `+" ${color:green}(${hotlist}${color:green})"+`
-* [[option_sec.crypt.salt]] *sec.crypt.salt*
-** 説明: pass:none[暗号化に利用する鍵を生成する場合は salt を利用してください (安全措置を厳重にするため); 有効化した場合、sec.conf ファイルに含まれる暗号化されたデータの内容はファイル書き込みの度に違うものになります; sec.conf ファイルをバージョン管理システムで管理している場合、常に同じ内容が書き込まれるようにこのオプションを無効化してください]
+* [[option_buflist.format.hotlist_highlight]] *buflist.format.hotlist_highlight*
+** 説明: pass:none[ホットリストレベルが "highlight" のバッファの表示書式 (注意: 値は評価されます、/help eval を参照してください)]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+"${color:magenta}"+`
+
+* [[option_buflist.format.hotlist_low]] *buflist.format.hotlist_low*
+** 説明: pass:none[ホットリストレベルが "low" のバッファの表示書式 (注意: 値は評価されます、/help eval を参照してください)]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+"${color:white}"+`
+
+* [[option_buflist.format.hotlist_message]] *buflist.format.hotlist_message*
+** 説明: pass:none[ホットリストレベルが "message" のバッファの表示書式 (注意: 値は評価されます、/help eval を参照してください)]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+"${color:brown}"+`
+
+* [[option_buflist.format.hotlist_none]] *buflist.format.hotlist_none*
+** 説明: pass:none[ホットリストにないバッファの表示書式 (注意: 値は評価されます、/help eval を参照してください)]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+"${color:default}"+`
+
+* [[option_buflist.format.hotlist_private]] *buflist.format.hotlist_private*
+** 説明: pass:none[ホットリストレベルが "private" のバッファの表示書式 (注意: 値は評価されます、/help eval を参照してください)]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+"${color:green}"+`
+
+* [[option_buflist.format.hotlist_separator]] *buflist.format.hotlist_separator*
+** 説明: pass:none[ホットリスト内のカウンタを示す区切り文字 (注意: 値は評価されます、/help eval を参照してください)]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+"${color:default},"+`
+
+* [[option_buflist.format.indent]] *buflist.format.indent*
+** 説明: pass:none[indent チャンネルとプライベートバッファに表示される文字列 (注意: 値は評価されます、/help buflist を参照してください)]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+" "+`
+
+* [[option_buflist.format.lag]] *buflist.format.lag*
+** 説明: pass:none[IRC サーババッファの遅延時間の表示書式 (注意: 値は評価されます、/help eval を参照してください)]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+" ${color:green}[${color:brown}${lag}${color:green}]"+`
+
+* [[option_buflist.format.name]] *buflist.format.name*
+** 説明: pass:none[バッファ名の書式 (注意: 値は評価されます、/help buflist を参照してください)]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+"${name}"+`
+
+* [[option_buflist.format.nick_prefix]] *buflist.format.nick_prefix*
+** 説明: pass:none[チャンネルにおけるニックネームプレフィックス書式 (注意: 値は評価されます、/help buflist を参照してください)]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+"${color_nick_prefix}${nick_prefix}"+`
+
+* [[option_buflist.format.number]] *buflist.format.number*
+** 説明: pass:none[バッファ番号の表示書式、${number} はインデント済み番号です (注意: 値は評価されます、/help eval を参照してください)]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+"${color:green}${number}${if:${number_displayed}?.: }"+`
+
+* [[option_buflist.format.tls_version]] *buflist.format.tls_version*
+** 説明: pass:none[format for TLS version on an IRC server buffer (note: content is evaluated, see /help buflist)]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+" ${color:default}(${if:${tls_version}==TLS1.3?${color:green}:${if:${tls_version}==TLS1.2?${color:yellow}:${color:red}}}${translate:${tls_version}}${color:default})"+`
+
+* [[option_buflist.look.add_newline]] *buflist.look.add_newline*
+** 説明: pass:none[バッファリスト内に表示されたバッファ同士の間に改行を追加します。こうすることで、各バッファが 1 行ごとに表示されます (推奨); これを無効化する場合には、表示書式に改行 "${\n}" を追加しなければいけません。さらに、マウス操作はできなくなります]
** タイプ: ブール
** 値: on, off
** デフォルト値: `+on+`
-// end::sec_options[]
-// tag::weechat_options[]
-* [[option_weechat.color.bar_more]] *weechat.color.bar_more*
-** 説明: pass:none[バーをスクロールする際の "+" のテキスト色]
-** タイプ: 色
-** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+lightmagenta+`
+* [[option_buflist.look.auto_scroll]] *buflist.look.auto_scroll*
+** 説明: pass:none[現在のバッファが常にバーの中に表示されるように自動的にバッファリストバーをスクロールします (この機能はフィリングが "vertical" に設定された左右にあるバーでのみ機能します); 設定値は現在のバーよりも前に表示される行数のパーセント値です (-1 = 自動スクロールを無効化); 例えば値を 50 に設定した場合、現在のバッファがバーの中央に位置するように自動スクロールされます。0 に設定した場合はバーの最初、100 に設定した場合はバーの最後を意味します]
+** タイプ: 整数
+** 値: -1 .. 100
+** デフォルト値: `+50+`
-* [[option_weechat.color.chat]] *weechat.color.chat*
-** 説明: pass:none[チャットのテキスト色]
-** タイプ: 色
-** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+default+`
+* [[option_buflist.look.display_conditions]] *buflist.look.display_conditions*
+** 説明: pass:none[バッファの表示条件 (注意: 値は評価されます、/help eval を参照してください); サーババッファがコアバッファにマージされている場合にサーババッファを隠す例: "${buffer.hidden}==0 && ((${type}!=server && ${buffer.full_name}!=core.weechat) || ${buffer.active}==1)"]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+"${buffer.hidden}==0"+`
-* [[option_weechat.color.chat_bg]] *weechat.color.chat_bg*
-** 説明: pass:none[チャットの背景色]
-** タイプ: 色
-** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+default+`
+* [[option_buflist.look.enabled]] *buflist.look.enabled*
+** 説明: pass:none[enable buflist; it is recommended to use this option instead of just hiding the bar because it also removes some internal hooks that are not needed any more when the bar is hidden; you can also use the command "/buflist toggle" or use the default key alt+shift+b]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+on+`
-* [[option_weechat.color.chat_buffer]] *weechat.color.chat_buffer*
-** 説明: pass:none[バッファ名のテキスト色]
-** タイプ: 色
-** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+white+`
+* [[option_buflist.look.mouse_jump_visited_buffer]] *buflist.look.mouse_jump_visited_buffer*
+** 説明: pass:none[有効の場合、現在のバッファを示す行で左または右ボタンをクリックすることで一つ前または次の訪問済みバッファに移動します]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+off+`
-* [[option_weechat.color.chat_channel]] *weechat.color.chat_channel*
-** 説明: pass:none[チャンネル名のテキスト色]
-** タイプ: 色
-** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+white+`
+* [[option_buflist.look.mouse_move_buffer]] *buflist.look.mouse_move_buffer*
+** 説明: pass:none[有効の場合、リスト内でマウスジェスチャ (ドラッグ & ドロップ) することでバッファを移動します]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+on+`
-* [[option_weechat.color.chat_day_change]] *weechat.color.chat_day_change*
-** 説明: pass:none[日付が変わった時に表示されるメッセージのテキスト色]
-** タイプ: 色
-** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+cyan+`
+* [[option_buflist.look.mouse_wheel]] *buflist.look.mouse_wheel*
+** 説明: pass:none[有効の場合、マウスのホイールアップまたはダウンすることでリスト内の一つ前または次のバッファに移動します]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+on+`
-* [[option_weechat.color.chat_delimiters]] *weechat.color.chat_delimiters*
-** 説明: pass:none[区切りのテキスト色]
-** タイプ: 色
-** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+green+`
+* [[option_buflist.look.nick_prefix]] *buflist.look.nick_prefix*
+** 説明: pass:none[ニックネームリスト内のニックネームのプレフィックスと色を取得します。このオプションを有効化することで、書式内で ${nick_prefix} を使えるようになります。しかしながら、ニックネームリスト内に多くのニックネームがある場合に動作が遅くなる可能性がありますので、このオプションはデフォルトで無効化されています]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+off+`
-* [[option_weechat.color.chat_highlight]] *weechat.color.chat_highlight*
-** 説明: pass:none[ハイライトされたプレフィックスのテキスト色]
-** タイプ: 色
-** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+yellow+`
+* [[option_buflist.look.nick_prefix_empty]] *buflist.look.nick_prefix_empty*
+** 説明: pass:none[ニックネームプレフィックスが有効化された状態で、そのバッファで対象のニックネームにプレフィックスが付かない場合に、プレフィックスの代わりに空白を表示します]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+on+`
-* [[option_weechat.color.chat_highlight_bg]] *weechat.color.chat_highlight_bg*
-** 説明: pass:none[ハイライトされたプレフィックスの背景色]
-** タイプ: 色
-** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+magenta+`
+* [[option_buflist.look.signals_refresh]] *buflist.look.signals_refresh*
+** 説明: pass:none[フックされてバッファの再読込トリガになる追加シグナルのコンマ区切りリスト; これは一部のカスタム変数が書式内で使われており、明示的に再読込が必要な場合に便利です]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+""+`
-* [[option_weechat.color.chat_host]] *weechat.color.chat_host*
-** 説明: pass:none[ホスト名のテキスト色]
-** タイプ: 色
-** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+cyan+`
+* [[option_buflist.look.sort]] *buflist.look.sort*
+** 説明: pass:none[comma-separated list of fields to sort buffers; each field is a hdata variable of buffer ("var"), a hdata variable of IRC server ("irc_server.var") or a hdata variable of IRC channel ("irc_channel.var"); char "-" can be used before field to reverse order, char "~" can be used to do a case insensitive comparison; example: "-~short_name" for case insensitive and reverse sort on buffer short name (note: the content is evaluated, before being split into fields, but at that time "bar_item" is the only variable that can be used, to distinguish between different buflist items, for example "${bar_item.name}")]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+"number,-active"+`
-* [[option_weechat.color.chat_inactive_buffer]] *weechat.color.chat_inactive_buffer*
-** 説明: pass:none[行へのフォーカスがなくなった場合の (バッファが他のバッファとマージされていて選択されていない場合の) のチャットのテキスト色]
-** タイプ: 色
-** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+default+`
+* [[option_buflist.look.use_items]] *buflist.look.use_items*
+** 説明: pass:none[number of buflist bar items that can be used; the item names are: "buflist", "buflist2", "buflist3"; be careful, using more than one bar item slows down the display of buffers list]
+** タイプ: 整数
+** 値: 1 .. 3
+** デフォルト値: `+1+`
+// end::buflist_options[]
-* [[option_weechat.color.chat_inactive_window]] *weechat.color.chat_inactive_window*
-** 説明: pass:none[ウィンドウへのフォーカスがなくなった場合 (選択されていないウィンドウ) のチャットのテキスト色]
+// tag::charset_options[]
+* [[option_charset.default.decode]] *charset.default.decode*
+** 説明: pass:none[グローバルデコード文字セット: 不正な UTF-8 メッセージを受信した場合にこれをデコードする文字セット]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+"iso-8859-1"+`
+
+* [[option_charset.default.encode]] *charset.default.encode*
+** 説明: pass:none[グローバルエンコード文字セット: 送信メッセージをエンコードする文字セット (空の場合、UTF-8 でエンコードされます。UTF-8 は WeeChat の内部文字セットです)]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+""+`
+// end::charset_options[]
+
+// tag::exec_options[]
+* [[option_exec.color.flag_finished]] *exec.color.flag_finished*
+** 説明: pass:none[コマンドリストで使う実行完了コマンドのフラグに対するテキスト色]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+default+`
+** デフォルト値: `+lightred+`
-* [[option_weechat.color.chat_nick]] *weechat.color.chat_nick*
-** 説明: pass:none[チャットウィンドウのニックネームのテキスト色: 一部のサーバメッセージおよびニックネーム色が見つからない場合の代替色として使われます; 多くの場合、ニックネーム色を指定するには weechat.color.chat_nick_colors オプションを使うと良いでしょう]
+* [[option_exec.color.flag_running]] *exec.color.flag_running*
+** 説明: pass:none[コマンドリストで使う実行中コマンドのフラグに対するテキスト色]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+lightcyan+`
+** デフォルト値: `+lightgreen+`
-* [[option_weechat.color.chat_nick_colors]] *weechat.color.chat_nick_colors*
-** 説明: pass:none[ニックネームのテキスト色 (コンマ区切りの色リスト、背景色は以下の書式で指定: "fg:bg"、例: "lightred:blue")]
+* [[option_exec.command.default_options]] *exec.command.default_options*
+** 説明: pass:none[/exec コマンドのデフォルトオプション (/help exec を参照してください); 例: "-nosh -bg" は全てのコマンドをバックグラウンドで実行し (出力なし)、シェルを使わない]
** タイプ: 文字列
** 値: 未制約文字列
-** デフォルト値: `+"cyan,magenta,green,brown,lightblue,default,lightcyan,lightmagenta,lightgreen,blue"+`
+** デフォルト値: `+""+`
-* [[option_weechat.color.chat_nick_offline]] *weechat.color.chat_nick_offline*
-** 説明: pass:none[オフラインのニックネームのテキスト色 (ニックネームリストにも表示されない); この色はオプション weechat.look.color_nick_offline が有効化されている場合にのみ使われます]
-** タイプ: 色
-** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+default+`
+* [[option_exec.command.purge_delay]] *exec.command.purge_delay*
+** 説明: pass:none[接続を切ったクライアントを追い出すまでの遅延時間 (秒単位、0 = すぐにクライアントを追い出す、-1 = 追い出さない)]
+** タイプ: 整数
+** 値: -1 .. 25920000
+** デフォルト値: `+0+`
-* [[option_weechat.color.chat_nick_offline_highlight]] *weechat.color.chat_nick_offline_highlight*
-** 説明: pass:none[ハイライトされたオフラインのニックネームのテキスト色; この色はオプション weechat.look.color_nick_offline が有効化されている場合にのみ使われます]
-** タイプ: 色
-** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+default+`
+* [[option_exec.command.shell]] *exec.command.shell*
+** 説明: pass:none[shell to use with command "/exec -sh"; it can be just the name of shell if it is in PATH (for example "bash") or the absolute path to the shell (for example "/bin/bash"); if value is empty, "sh" is used (note: content is evaluated, see /help eval)]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+"${env:SHELL}"+`
+// end::exec_options[]
-* [[option_weechat.color.chat_nick_offline_highlight_bg]] *weechat.color.chat_nick_offline_highlight_bg*
-** 説明: pass:none[ハイライトされたオフラインのニックネームの背景色; この色はオプション weechat.look.color_nick_offline が有効化されている場合にのみ使われます]
-** タイプ: 色
-** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+blue+`
+// tag::fifo_options[]
+* [[option_fifo.file.enabled]] *fifo.file.enabled*
+** 説明: pass:none[FIFO パイプの有効化]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+on+`
-* [[option_weechat.color.chat_nick_other]] *weechat.color.chat_nick_other*
-** 説明: pass:none[プライベートバッファ内の他のニックネームのテキスト色]
-** タイプ: 色
-** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+cyan+`
+* [[option_fifo.file.path]] *fifo.file.path*
+** 説明: pass:none[path for FIFO file; WeeChat PID can be used in path with ${info:pid} (path is evaluated, see function string_eval_path_home in plugin API reference)]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+"${weechat_runtime_dir}/weechat_fifo_${info:pid}"+`
+// end::fifo_options[]
-* [[option_weechat.color.chat_nick_prefix]] *weechat.color.chat_nick_prefix*
-** 説明: pass:none[ニックネームプレフィックスの色 (プレフィックス中のニックネームの前に表示される文字列)]
+// tag::fset_options[]
+* [[option_fset.color.default_value]] *fset.color.default_value*
+** 説明: pass:none[デフォルト値を意味するテキスト色]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+green+`
+** デフォルト値: `+default+`
-* [[option_weechat.color.chat_nick_self]] *weechat.color.chat_nick_self*
-** 説明: pass:none[チャットウィンドウ内のローカルニックネームのテキスト色]
+* [[option_fset.color.default_value_selected]] *fset.color.default_value_selected*
+** 説明: pass:none[デフォルト値を意味するテキスト色 (選択行に表示される場合)]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** デフォルト値: `+white+`
-* [[option_weechat.color.chat_nick_suffix]] *weechat.color.chat_nick_suffix*
-** 説明: pass:none[ニックネームサフィックスの色 (プレフィックス中のニックネームの後に表示される文字列)]
+* [[option_fset.color.description]] *fset.color.description*
+** 説明: pass:none[オプション説明文のテキスト色]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+green+`
+** デフォルト値: `+default+`
-* [[option_weechat.color.chat_prefix_action]] *weechat.color.chat_prefix_action*
-** 説明: pass:none[アクションプレフィックスのテキスト色]
+* [[option_fset.color.description_selected]] *fset.color.description_selected*
+** 説明: pass:none[オプション説明文のテキスト色 (選択行に表示される場合)]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** デフォルト値: `+white+`
-* [[option_weechat.color.chat_prefix_buffer]] *weechat.color.chat_prefix_buffer*
-** 説明: pass:none[バッファ名のテキスト色 (多くのバッファが同じ番号を持つものにマージされている場合は、プレフィックスの前)]
-** タイプ: 色
-** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+brown+`
-
-* [[option_weechat.color.chat_prefix_buffer_inactive_buffer]] *weechat.color.chat_prefix_buffer_inactive_buffer*
-** 説明: pass:none[非アクティブバッファ名のテキスト色 (多くのバッファが同じ番号を持つものにマージされ、バッファが選択されていない場合は、プレフィックスの前)]
+* [[option_fset.color.file]] *fset.color.file*
+** 説明: pass:none[ファイルのテキスト色]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** デフォルト値: `+default+`
-* [[option_weechat.color.chat_prefix_error]] *weechat.color.chat_prefix_error*
-** 説明: pass:none[エラープレフィックスのテキスト色]
+* [[option_fset.color.file_changed]] *fset.color.file_changed*
+** 説明: pass:none[ファイルのテキスト色 (値が変更されている場合)]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+yellow+`
+** デフォルト値: `+brown+`
-* [[option_weechat.color.chat_prefix_join]] *weechat.color.chat_prefix_join*
-** 説明: pass:none[join プレフィックスのテキスト色]
+* [[option_fset.color.file_changed_selected]] *fset.color.file_changed_selected*
+** 説明: pass:none[ファイルのテキスト色 (値が変更されており、選択行に表示される場合)]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+lightgreen+`
+** デフォルト値: `+yellow+`
-* [[option_weechat.color.chat_prefix_more]] *weechat.color.chat_prefix_more*
-** 説明: pass:none[プレフィックスが長すぎる場合の "+" のテキスト色]
+* [[option_fset.color.file_selected]] *fset.color.file_selected*
+** 説明: pass:none[ファイルのテキスト色 (選択行に表示される場合)]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+lightmagenta+`
+** デフォルト値: `+white+`
-* [[option_weechat.color.chat_prefix_network]] *weechat.color.chat_prefix_network*
-** 説明: pass:none[ネットワークプレフィックスのテキスト色]
+* [[option_fset.color.help_default_value]] *fset.color.help_default_value*
+** 説明: pass:none[デフォルト値を意味する色 (ヘルプバー内に表示される場合)]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+magenta+`
+** デフォルト値: `+white+`
-* [[option_weechat.color.chat_prefix_quit]] *weechat.color.chat_prefix_quit*
-** 説明: pass:none[quit プレフィックスのテキスト色]
+* [[option_fset.color.help_description]] *fset.color.help_description*
+** 説明: pass:none[オプション説明文のテキスト色 (ヘルプバー内に表示される場合)]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+lightred+`
+** デフォルト値: `+default+`
-* [[option_weechat.color.chat_prefix_suffix]] *weechat.color.chat_prefix_suffix*
-** 説明: pass:none[サフィックスのテキスト色 (プレフィックスの後ろ)]
+* [[option_fset.color.help_name]] *fset.color.help_name*
+** 説明: pass:none[オプション名のテキスト色 (ヘルプバー内に表示される場合)]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+green+`
+** デフォルト値: `+white+`
-* [[option_weechat.color.chat_read_marker]] *weechat.color.chat_read_marker*
-** 説明: pass:none[未読データマーカーのテキスト色]
+* [[option_fset.color.help_quotes]] *fset.color.help_quotes*
+** 説明: pass:none[文字列値を囲む引用符のテキスト色]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+magenta+`
+** デフォルト値: `+darkgray+`
-* [[option_weechat.color.chat_read_marker_bg]] *weechat.color.chat_read_marker_bg*
-** 説明: pass:none[未読データマーカーの背景色]
+* [[option_fset.color.help_values]] *fset.color.help_values*
+** 説明: pass:none[利用可能な値のテキスト色]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** デフォルト値: `+default+`
-* [[option_weechat.color.chat_server]] *weechat.color.chat_server*
-** 説明: pass:none[サーバ名のテキスト色]
-** タイプ: 色
-** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+brown+`
-
-* [[option_weechat.color.chat_tags]] *weechat.color.chat_tags*
-** 説明: pass:none[メッセージの後ろのタグのテキスト色 (/debug tags コマンドで表示)]
+* [[option_fset.color.index]] *fset.color.index*
+** 説明: pass:none[オプションインデックスのテキスト色]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+red+`
+** デフォルト値: `+cyan+`
-* [[option_weechat.color.chat_text_found]] *weechat.color.chat_text_found*
-** 説明: pass:none[テキスト検索にヒットした行のマーカーのテキスト色]
+* [[option_fset.color.index_selected]] *fset.color.index_selected*
+** 説明: pass:none[オプションインデックスのテキスト色 (選択行に表示される場合)]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+yellow+`
+** デフォルト値: `+lightcyan+`
-* [[option_weechat.color.chat_text_found_bg]] *weechat.color.chat_text_found_bg*
-** 説明: pass:none[テキスト検索にヒットした行のマーカーの背景色]
+* [[option_fset.color.line_marked_bg1]] *fset.color.line_marked_bg1*
+** 説明: pass:none[マーク済み行の背景色 (1 番目の書式と一緒に使われます、fset.format.option1 を参照してください)]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+lightmagenta+`
+** デフォルト値: `+default+`
-* [[option_weechat.color.chat_time]] *weechat.color.chat_time*
-** 説明: pass:none[チャットウィンドウ内の時間のテキスト色]
+* [[option_fset.color.line_marked_bg2]] *fset.color.line_marked_bg2*
+** 説明: pass:none[マーク済み行の背景色 (2 番目の書式と一緒に使われます、fset.format.option2 を参照してください)]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** デフォルト値: `+default+`
-* [[option_weechat.color.chat_time_delimiters]] *weechat.color.chat_time_delimiters*
-** 説明: pass:none[時間区切りのテキスト色]
+* [[option_fset.color.line_selected_bg1]] *fset.color.line_selected_bg1*
+** 説明: pass:none[選択行の背景色 (1 番目の書式と一緒に使われます、fset.format.option1 を参照してください)]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+brown+`
+** デフォルト値: `+blue+`
-* [[option_weechat.color.chat_value]] *weechat.color.chat_value*
-** 説明: pass:none[値のテキスト色]
+* [[option_fset.color.line_selected_bg2]] *fset.color.line_selected_bg2*
+** 説明: pass:none[選択行の背景色 (2 番目の書式と一緒に使われます、fset.format.option2 を参照してください)]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+cyan+`
+** デフォルト値: `+red+`
-* [[option_weechat.color.chat_value_null]] *weechat.color.chat_value_null*
-** 説明: pass:none[値が null (未定義) の場合のテキスト色]
+* [[option_fset.color.marked]] *fset.color.marked*
+** 説明: pass:none[マークのテキスト色]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+blue+`
+** デフォルト値: `+brown+`
-* [[option_weechat.color.emphasized]] *weechat.color.emphasized*
-** 説明: pass:none[強調テキストの色 (テキスト検索する際など); このオプションは weechat.look.emphasized_attributes オプションが空文字列 (デフォルト値) の場合のみ使われます]
+* [[option_fset.color.marked_selected]] *fset.color.marked_selected*
+** 説明: pass:none[マークのテキスト色 (選択行に表示される場合)]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** デフォルト値: `+yellow+`
-* [[option_weechat.color.emphasized_bg]] *weechat.color.emphasized_bg*
-** 説明: pass:none[強調テキストの背景色 (テキスト検索する際など); このオプションは weechat.look.emphasized_attributes オプションが空文字列 (デフォルト値) の場合のみ使われます]
+* [[option_fset.color.max]] *fset.color.max*
+** 説明: pass:none[最大値を意味するテキスト色]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+magenta+`
+** デフォルト値: `+default+`
-* [[option_weechat.color.input_actions]] *weechat.color.input_actions*
-** 説明: pass:none[入力がアクションの場合のテキスト色]
+* [[option_fset.color.max_selected]] *fset.color.max_selected*
+** 説明: pass:none[最大値を意味するテキスト色 (選択行に表示される場合)]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+lightgreen+`
+** デフォルト値: `+white+`
-* [[option_weechat.color.input_text_not_found]] *weechat.color.input_text_not_found*
-** 説明: pass:none[入力行のテキスト検索に失敗した場合のテキスト色]
+* [[option_fset.color.min]] *fset.color.min*
+** 説明: pass:none[最小値を意味するテキスト色]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+red+`
+** デフォルト値: `+default+`
-* [[option_weechat.color.item_away]] *weechat.color.item_away*
-** 説明: pass:none[離席要素のテキスト色]
+* [[option_fset.color.min_selected]] *fset.color.min_selected*
+** 説明: pass:none[最小値を意味するテキスト色 (選択行に表示される場合)]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+yellow+`
+** デフォルト値: `+white+`
-* [[option_weechat.color.nicklist_away]] *weechat.color.nicklist_away*
-** 説明: pass:none[離席状態のニックネームのテキスト色]
+* [[option_fset.color.name]] *fset.color.name*
+** 説明: pass:none[完全なオプション名のテキスト色]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+cyan+`
+** デフォルト値: `+default+`
-* [[option_weechat.color.nicklist_group]] *weechat.color.nicklist_group*
-** 説明: pass:none[ニックネームリスト内のグループのテキスト色]
+* [[option_fset.color.name_changed]] *fset.color.name_changed*
+** 説明: pass:none[完全なオプション名のテキスト色 (値が変更されている場合)]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+green+`
+** デフォルト値: `+brown+`
-* [[option_weechat.color.separator]] *weechat.color.separator*
-** 説明: pass:none[ウィンドウセパレータ (分割時) とバーセパレータ (ニックネームリスト等) の色]
+* [[option_fset.color.name_changed_selected]] *fset.color.name_changed_selected*
+** 説明: pass:none[完全なオプション名のテキスト色 (値が変更されており、選択行に表示される場合)]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+blue+`
+** デフォルト値: `+yellow+`
-* [[option_weechat.color.status_count_highlight]] *weechat.color.status_count_highlight*
-** 説明: pass:none[ホットリスト内のハイライトメッセージ数のテキスト色 (ステータスバー)]
+* [[option_fset.color.name_selected]] *fset.color.name_selected*
+** 説明: pass:none[完全なオプション名のテキスト色 (選択行に表示される場合)]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+magenta+`
+** デフォルト値: `+white+`
-* [[option_weechat.color.status_count_msg]] *weechat.color.status_count_msg*
-** 説明: pass:none[ホットリスト内のメッセージ数のテキスト色 (ステータスバー)]
+* [[option_fset.color.option]] *fset.color.option*
+** 説明: pass:none[オプション名のテキスト色]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+brown+`
+** デフォルト値: `+default+`
-* [[option_weechat.color.status_count_other]] *weechat.color.status_count_other*
-** 説明: pass:none[ホットリスト内のその他のメッセージ数のテキスト色 (ステータスバー)]
+* [[option_fset.color.option_changed]] *fset.color.option_changed*
+** 説明: pass:none[オプション名のテキスト色 (値が変更されている場合)]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+default+`
+** デフォルト値: `+brown+`
-* [[option_weechat.color.status_count_private]] *weechat.color.status_count_private*
-** 説明: pass:none[ホットリスト内のプライベートメッセージ数のテキスト色 (ステータスバー)]
+* [[option_fset.color.option_changed_selected]] *fset.color.option_changed_selected*
+** 説明: pass:none[オプション名のテキスト色 (値が変更されており、選択行に表示される場合)]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+green+`
+** デフォルト値: `+yellow+`
-* [[option_weechat.color.status_data_highlight]] *weechat.color.status_data_highlight*
-** 説明: pass:none[ハイライトメッセージを受け取ったバッファのテキスト色 (ステータスバー)]
+* [[option_fset.color.option_selected]] *fset.color.option_selected*
+** 説明: pass:none[オプション名のテキスト色 (選択行に表示される場合)]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+lightmagenta+`
+** デフォルト値: `+white+`
-* [[option_weechat.color.status_data_msg]] *weechat.color.status_data_msg*
-** 説明: pass:none[新しいメッセージを受け取ったバッファのテキスト色 (ステータスバー)]
+* [[option_fset.color.parent_name]] *fset.color.parent_name*
+** 説明: pass:none[親オプション名のテキスト色]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+yellow+`
+** デフォルト値: `+default+`
-* [[option_weechat.color.status_data_other]] *weechat.color.status_data_other*
-** 説明: pass:none[新しいデータ (メッセージ以外) を受け取ったバッファのテキスト色 (ステータスバー)]
+* [[option_fset.color.parent_name_selected]] *fset.color.parent_name_selected*
+** 説明: pass:none[親オプション名のテキスト色 (選択行に表示される場合)]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+default+`
+** デフォルト値: `+white+`
-* [[option_weechat.color.status_data_private]] *weechat.color.status_data_private*
-** 説明: pass:none[プライベートメッセージを受けとったバッファのテキスト色 (ステータスバー)]
+* [[option_fset.color.parent_value]] *fset.color.parent_value*
+** 説明: pass:none[親オプション値のテキスト色]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+lightgreen+`
+** デフォルト値: `+cyan+`
-* [[option_weechat.color.status_filter]] *weechat.color.status_filter*
-** 説明: pass:none[ステータスバー内のフィルタインジケータのテキスト色]
+* [[option_fset.color.parent_value_selected]] *fset.color.parent_value_selected*
+** 説明: pass:none[親オプション値のテキスト色 (選択行に表示される場合)]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+green+`
+** デフォルト値: `+lightcyan+`
-* [[option_weechat.color.status_more]] *weechat.color.status_more*
-** 説明: pass:none[新しいデータを受け取ったバッファのテキスト色 (ステータスバー)]
+* [[option_fset.color.quotes]] *fset.color.quotes*
+** 説明: pass:none[文字列値を囲む引用符のテキスト色]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+yellow+`
+** デフォルト値: `+darkgray+`
-* [[option_weechat.color.status_mouse]] *weechat.color.status_mouse*
-** 説明: pass:none[ステータスバー内のマウスインジケータのテキスト色]
+* [[option_fset.color.quotes_changed]] *fset.color.quotes_changed*
+** 説明: pass:none[文字列値を囲む引用符のテキスト色 (値が変更されている場合)]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+green+`
+** デフォルト値: `+default+`
-* [[option_weechat.color.status_name]] *weechat.color.status_name*
-** 説明: pass:none[ステータスバー内の現在のバッファ名のテキスト色]
+* [[option_fset.color.quotes_changed_selected]] *fset.color.quotes_changed_selected*
+** 説明: pass:none[文字列値を囲む引用符のテキスト色 (値が変更されており、選択行に表示される場合)]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** デフォルト値: `+white+`
-* [[option_weechat.color.status_name_ssl]] *weechat.color.status_name_ssl*
-** 説明: pass:none[バッファで SSL などのセキュリティプロトコルを使っている場合に、ステータスバー内の現在のバッファ名に使うテキスト色]
+* [[option_fset.color.quotes_selected]] *fset.color.quotes_selected*
+** 説明: pass:none[文字列値を囲む引用符のテキスト色 (選択行に表示される場合)]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+lightgreen+`
+** デフォルト値: `+default+`
-* [[option_weechat.color.status_nicklist_count]] *weechat.color.status_nicklist_count*
-** 説明: pass:none[ニックネームリスト内のニックネーム数のテキスト色 (ステータスバー)]
+* [[option_fset.color.section]] *fset.color.section*
+** 説明: pass:none[セクション名のテキスト色]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** デフォルト値: `+default+`
-* [[option_weechat.color.status_number]] *weechat.color.status_number*
-** 説明: pass:none[ステータスバー内の現在のバッファ番号のテキスト色]
+* [[option_fset.color.section_changed]] *fset.color.section_changed*
+** 説明: pass:none[セクション名のテキスト色 (値が変更されている場合)]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+yellow+`
+** デフォルト値: `+brown+`
-* [[option_weechat.color.status_time]] *weechat.color.status_time*
-** 説明: pass:none[時間のテキスト色 (ステータスバー)]
+* [[option_fset.color.section_changed_selected]] *fset.color.section_changed_selected*
+** 説明: pass:none[セクション名のテキスト色 (値が変更されており、選択行に表示される場合)]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+default+`
-
-* [[option_weechat.completion.base_word_until_cursor]] *weechat.completion.base_word_until_cursor*
-** 説明: pass:none[これが有効な場合、補完する元単語はカーソル前の文字で終了; そうでなければ元単語はカーソル後の最初の文字で終了]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+on+`
-
-* [[option_weechat.completion.command_inline]] *weechat.completion.command_inline*
-** 説明: pass:none[これが有効な場合、コマンドライン中のコマンドを補完します (行頭のコマンドが最も優先度が高く、最初に評価されます); 注意: このオプションが有効な場合、"/" で始まるパスの自動補完は行われません (外部コマンドの引数)]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+on+`
-
-* [[option_weechat.completion.default_template]] *weechat.completion.default_template*
-** 説明: pass:none[デフォルトの補完テンプレート (テンプレートコードと値のドキュメントを参照してください: プラグイン API リファレンス、"weechat_hook_command" 関数)]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+"%(nicks)|%(irc_channels)"+`
-
-* [[option_weechat.completion.nick_add_space]] *weechat.completion.nick_add_space*
-** 説明: pass:none[ニックネーム補完の後に空白を追加 (コマンドラインの最初がニックネームでない場合は)]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+on+`
-
-* [[option_weechat.completion.nick_case_sensitive]] *weechat.completion.nick_case_sensitive*
-** 説明: pass:none[大文字小文字を区別したニックネーム補完]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+off+`
-
-* [[option_weechat.completion.nick_completer]] *weechat.completion.nick_completer*
-** 説明: pass:none[ニックネーム補完の後に追加する文字列 (ニックネームがコマンドラインの最初にある場合)]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+": "+`
-
-* [[option_weechat.completion.nick_first_only]] *weechat.completion.nick_first_only*
-** 説明: pass:none[最初に見つかったニックネームだけを補完]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+off+`
-
-* [[option_weechat.completion.nick_ignore_chars]] *weechat.completion.nick_ignore_chars*
-** 説明: pass:none[ニックネーム補完で無視する文字]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+"[]`_-^"+`
-
-* [[option_weechat.completion.partial_completion_alert]] *weechat.completion.partial_completion_alert*
-** 説明: pass:none[補完候補が複数あった場合に警告 (BEL) を送信]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+on+`
-
-* [[option_weechat.completion.partial_completion_command]] *weechat.completion.partial_completion_command*
-** 説明: pass:none[コマンドでの部分補完 (同じ文字を含む多くのコマンドが見つかった場合は止める)]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+off+`
-
-* [[option_weechat.completion.partial_completion_command_arg]] *weechat.completion.partial_completion_command_arg*
-** 説明: pass:none[コマンド引数での部分補完 (同じプレフィックスを持つ多くの引数が見つかった場合は止める)]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+off+`
-
-* [[option_weechat.completion.partial_completion_count]] *weechat.completion.partial_completion_count*
-** 説明: pass:none[バー要素内の部分補完数を表示]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+on+`
-
-* [[option_weechat.completion.partial_completion_other]] *weechat.completion.partial_completion_other*
-** 説明: pass:none[コマンド外での部分補完 (同じ文字を含む多くのコマンドが見つかった場合は止め)]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+off+`
-
-* [[option_weechat.completion.partial_completion_templates]] *weechat.completion.partial_completion_templates*
-** 説明: pass:none[部分補完がデフォルトで有効化される (shift-Tab キーの代わりに Tab キーを使う) テンプレートのコンマ区切りリスト; テンプレートのリストは WeeChat プラグイン API リファレンスの "weechat_hook_command" 関数の節を参照してください]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+"config_options"+`
-
-* [[option_weechat.history.display_default]] *weechat.history.display_default*
-** 説明: pass:none[履歴をリストアップする際にデフォルトで表示するコマンドの最大数 (0 = 制限無し)]
-** タイプ: 整数
-** 値: 0 .. 2147483647
-** デフォルト値: `+5+`
-
-* [[option_weechat.history.max_buffer_lines_minutes]] *weechat.history.max_buffer_lines_minutes*
-** 説明: pass:none[バッファ毎の履歴の保存時間 (分) (0 = 制限無し); 例: 1440 = 一日、10080 = 一週間、43200 = 一ヶ月、525600 = 一年間; weechat.history.max_buffer_lines_number オプションが 0 以外の場合には 0 を指定してください]
-** タイプ: 整数
-** 値: 0 .. 2147483647
-** デフォルト値: `+0+`
-
-* [[option_weechat.history.max_buffer_lines_number]] *weechat.history.max_buffer_lines_number*
-** 説明: pass:none[バッファ毎の履歴行数 (0 = 制限無し); weechat.history.max_buffer_lines_minutes オプションが 0 以外の場合には 0 を指定してください]
-** タイプ: 整数
-** 値: 0 .. 2147483647
-** デフォルト値: `+4096+`
-
-* [[option_weechat.history.max_commands]] *weechat.history.max_commands*
-** 説明: pass:none[履歴に保存するユーザコマンド数 (0 = 制限無し、メモリ使用量の制限が無くなるため非推奨)]
-** タイプ: 整数
-** 値: 0 .. 2147483647
-** デフォルト値: `+100+`
-
-* [[option_weechat.history.max_visited_buffers]] *weechat.history.max_visited_buffers*
-** 説明: pass:none[メモリに保存する観覧バッファの数]
-** タイプ: 整数
-** 値: 0 .. 1000
-** デフォルト値: `+50+`
-
-* [[option_weechat.look.align_end_of_lines]] *weechat.look.align_end_of_lines*
-** 説明: pass:none[行末の調節 (2 行以上になる行): このデータ (time、buffer、prefix、suffix、message (デフォルト)) の下から始められる]
-** タイプ: 整数
-** 値: time, buffer, prefix, suffix, message
-** デフォルト値: `+message+`
-
-* [[option_weechat.look.align_multiline_words]] *weechat.look.align_multiline_words*
-** 説明: pass:none[weechat.look.align_end_of_lines オプションに依存する単語内での改行抑制; 無効化した場合、単語という単位を無視して改行が行われます。これは長い URL が改行されなくなるという意味で便利です]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+on+`
-
-* [[option_weechat.look.bar_more_down]] *weechat.look.bar_more_down*
-** 説明: pass:none[バーを下方向にスクロール出来る場合に表示される文字列 (水平方向詰め以外の属性を持つバー)]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+"++"+`
-
-* [[option_weechat.look.bar_more_left]] *weechat.look.bar_more_left*
-** 説明: pass:none[バーを左方向にスクロール出来る場合に表示される文字列 (水平方向詰めの属性を持つバー用)]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+"<<"+`
-
-* [[option_weechat.look.bar_more_right]] *weechat.look.bar_more_right*
-** 説明: pass:none[バーを右方向にスクロール出来る場合に表示される文字列 (水平方向詰めの属性を持つバー用)]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+">>"+`
-
-* [[option_weechat.look.bar_more_up]] *weechat.look.bar_more_up*
-** 説明: pass:none[バーを上方向にスクロール出来る場合に表示される文字列 (水平方向詰め以外の属性を持つバー)]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+"--"+`
-
-* [[option_weechat.look.bare_display_exit_on_input]] *weechat.look.bare_display_exit_on_input*
-** 説明: pass:none[入力の変更に対する最小限表示モードを終了する]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+on+`
-
-* [[option_weechat.look.bare_display_time_format]] *weechat.look.bare_display_time_format*
-** 説明: pass:none[最小限表示モードで使う時間書式 (日付/時間指定子は strftime の man を参照してください)]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+"%H:%M"+`
-
-* [[option_weechat.look.buffer_auto_renumber]] *weechat.look.buffer_auto_renumber*
-** 説明: pass:none[自動的に番号を割り当てる場合、1 から始まる連番になります; 無効にした場合、バッファ番号に欠番が許され、最初のバッファに1より大きなバッファ番号を割り当てることが可能になります]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+on+`
-
-* [[option_weechat.look.buffer_notify_default]] *weechat.look.buffer_notify_default*
-** 説明: pass:none[バッファに対するデフォルトの通知レベル (メッセージの重要度に従い、バッファがホットリストに表示されるかどうかを WeeChat に教えるために使われる): all=全てのメッセージ (デフォルト)、message=メッセージとハイライト、highlight=ハイライトのみ、none=ホットリストに表示されない]
-** タイプ: 整数
-** 値: none, highlight, message, all
-** デフォルト値: `+all+`
-
-* [[option_weechat.look.buffer_position]] *weechat.look.buffer_position*
-** 説明: pass:none[新しいバッファの位置: end = リストの最後 (番号 = 最後の番号 + 1) (デフォルト)、first_gap = リスト中に最初に現れる利用可能な番号 (どの番号も使えない場合、リストの最後); このオプションはレイアウト番号を持たないバッファの場合に利用されます]
-** タイプ: 整数
-** 値: end, first_gap
-** デフォルト値: `+end+`
-
-* [[option_weechat.look.buffer_search_case_sensitive]] *weechat.look.buffer_search_case_sensitive*
-** 説明: pass:none[デフォルトのバッファテキスト検索: 大文字小文字を区別するかしないか]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+off+`
-
-* [[option_weechat.look.buffer_search_force_default]] *weechat.look.buffer_search_force_default*
-** 説明: pass:none[バッファテキスト検索のデフォルト値を強制する (バッファで最後に検索した値を使わない)]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+off+`
-
-* [[option_weechat.look.buffer_search_regex]] *weechat.look.buffer_search_regex*
-** 説明: pass:none[デフォルトのバッファテキスト検索: 有効の場合は正規表現で検索、無効の場合は単純な文字列で検索]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+off+`
-
-* [[option_weechat.look.buffer_search_where]] *weechat.look.buffer_search_where*
-** 説明: pass:none[デフォルトのバッファテキスト検索: メッセージ中、プレフィックス中、プレフィックスとメッセージ中]
-** タイプ: 整数
-** 値: prefix, message, prefix_message
-** デフォルト値: `+prefix_message+`
-
-* [[option_weechat.look.buffer_time_format]] *weechat.look.buffer_time_format*
-** 説明: pass:none[バッファに表示される行に付く時間書式 (日付/時間の指定子は strftime の man を参照してください) (注意: 値は評価されるため "${color:xxx}" 書式で色を指定出来ます、/help eval を参照してください); 例えばグレースケールを使う時間の例 (256 色のサポートが必要): "${color:252}%H${color:245}%M${color:240}%S"]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+"%H:%M:%S"+`
-
-* [[option_weechat.look.buffer_time_same]] *weechat.look.buffer_time_same*
-** 説明: pass:none[直前のメッセージと同じ時刻のメッセージに対して表示される時刻: 空白文字 " " の場合は時刻を隠す、これ以外の文字列の場合は時刻の代わりに設定文字列を表示、空文字列の場合はこの機能を無効化 (時刻を表示します) (注意: 設定値は評価されるため、${color:xxx} などを使えます、/help eval を参照してください)]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+""+`
-
-* [[option_weechat.look.chat_space_right]] *weechat.look.chat_space_right*
-** 説明: pass:none[keep a space on the right side of chat area if there is a bar displayed on the right (for both text and read marker)]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+off+`
-
-* [[option_weechat.look.color_basic_force_bold]] *weechat.look.color_basic_force_bold*
-** 説明: pass:none[明るい色と標準的な色の "darkgray" には "太字" 属性を強制 (このオプションはデフォルトでは無効: 太字は端末が 16 色以下の表示能力しかない場合に利用される)]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+off+`
-
-* [[option_weechat.look.color_inactive_buffer]] *weechat.look.color_inactive_buffer*
-** 説明: pass:none[アクティブでないバッファでは行に異なる色を使用 (行が未選択のマージバッファからの場合)]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+on+`
-
-* [[option_weechat.look.color_inactive_message]] *weechat.look.color_inactive_message*
-** 説明: pass:none[アクティブでないメッセージに異なる色を使用 (ウィンドウにフォーカスが無いか、行が未選択のマージバッファからの場合)]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+on+`
-
-* [[option_weechat.look.color_inactive_prefix]] *weechat.look.color_inactive_prefix*
-** 説明: pass:none[アクティブでないプレフィックスに異なる色を使用 (ウィンドウにフォーカスが無いか、行が未選択のマージバッファからの場合)]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+on+`
-
-* [[option_weechat.look.color_inactive_prefix_buffer]] *weechat.look.color_inactive_prefix_buffer*
-** 説明: pass:none[アクティブでないバッファ名のプレフィックスに異なる色を使用 (ウィンドウにフォーカスが無いか、行が未選択のマージバッファからの場合)]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+on+`
-
-* [[option_weechat.look.color_inactive_time]] *weechat.look.color_inactive_time*
-** 説明: pass:none[アクティブでない時間は異なる色を使用 (ウィンドウにフォーカスが無いか、行が未選択のマージバッファからの場合)]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+off+`
-
-* [[option_weechat.look.color_inactive_window]] *weechat.look.color_inactive_window*
-** 説明: pass:none[アクティブでないウィンドウでは行に異なる色を使用 (ウィンドウにフォーカスが無い場合)]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+on+`
-
-* [[option_weechat.look.color_nick_offline]] *weechat.look.color_nick_offline*
-** 説明: pass:none[オフライン状態のニックネームに異なる色を使用 (ニックネームリストにも表示しない)]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+off+`
-
-* [[option_weechat.look.color_pairs_auto_reset]] *weechat.look.color_pairs_auto_reset*
-** 説明: pass:none[利用可能なペアの数がこの数以下になった場合、色ペアテーブルを自動的にリセット (-1 = 自動リセットを無効化、テーブルが一杯になったら手動で "/color reset")]
-** タイプ: 整数
-** 値: -1 .. 256
-** デフォルト値: `+5+`
-
-* [[option_weechat.look.color_real_white]] *weechat.look.color_real_white*
-** 説明: pass:none[セットされた場合、本当の白色が使われる、白色背景の端末ではデフォルトで無効 (白色背景を絶対に使わないなら、端末の前景色の代わりに本当の白色を表示するためにはこれを on にするべき)]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+off+`
-
-* [[option_weechat.look.command_chars]] *weechat.look.command_chars*
-** 説明: pass:none[入力文字列がコマンドかどうかを決定する文字列: 入力はこれらの文字の内の一つから始まらなければいけない; スラッシュ ("/") は常にコマンドプレフィックスとして扱われる (例: ".$")]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+""+`
-
-* [[option_weechat.look.command_incomplete]] *weechat.look.command_incomplete*
-** 説明: pass:none[これを設定した場合、不完全なコマンドと完全なコマンドを両方使えるようになります、例えば /he は /help の意味で使うことができます]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+off+`
-
-* [[option_weechat.look.confirm_quit]] *weechat.look.confirm_quit*
-** 説明: pass:none[これを設定した場合、/quit コマンド使う際には必ず "-yes" 引数と共に使う必要があります (/help quit 参照)]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+off+`
-
-* [[option_weechat.look.confirm_upgrade]] *weechat.look.confirm_upgrade*
-** 説明: pass:none[これを設定した場合、/upgrade コマンド使う際には必ず "-yes" 引数と共に使う必要があります (/help upgrade 参照)]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+off+`
-
-* [[option_weechat.look.day_change]] *weechat.look.day_change*
-** 説明: pass:none[日付が変わった際に特殊メッセージを表示]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+on+`
-
-* [[option_weechat.look.day_change_message_1date]] *weechat.look.day_change_message_1date*
-** 説明: pass:none[日付が変わった時に表示される時間の書式、1 つの日付を表示 (例えばバッファの最初に) (日付/時間指定子は strftime の man を参照してください) (注意: 値は評価されるため "${color:xxx}" 書式で色を指定出来ます、/help eval を参照してください)]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+"-- %a, %d %b %Y --"+`
-
-* [[option_weechat.look.day_change_message_2dates]] *weechat.look.day_change_message_2dates*
-** 説明: pass:none[日付が変わった時に表示される時間の書式、2 つの日付を表示 (2 つのメッセージの間に); 文字列に対して strftime は 2 回呼び出されるため、2 番目の日付指定子は 2 つの "%" で始めてください (日付/時間指定子は strftime の man を参照してください) (注意: 値は評価されるため "${color:xxx}" 書式で色を指定出来ます、/help eval を参照してください)]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+"-- %%a, %%d %%b %%Y (%a, %d %b %Y) --"+`
-
-* [[option_weechat.look.eat_newline_glitch]] *weechat.look.eat_newline_glitch*
-** 説明: pass:none[セットされた場合、eat_newline_glitch は 0 になる; これは各行の末尾に新しい行を追加しないために使われ、WeeChat から別のアプリケーションにテキストをコピー/ペーストする際にテキストの改行を行わない (致命的な表示上の問題を引き起こすため、このオプションはデフォルトで無効化されている)]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+off+`
-
-* [[option_weechat.look.emphasized_attributes]] *weechat.look.emphasized_attributes*
-** 説明: pass:none[attributes for emphasized text: one or more attribute chars ("%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline); if the string is empty, the colors weechat.color.emphasized* are used]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+""+`
-
-* [[option_weechat.look.highlight]] *weechat.look.highlight*
-** 説明: pass:none[コンマ区切りのハイライトされる単語リスト; 大文字小文字の区別無し (単語の最初に "(?-i)" をつければ区別有り)、部分マッチさせるには単語の最初か最後に "*" をつける; 例: "test,(?-i)*toto*,flash*"]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+""+`
-
-* [[option_weechat.look.highlight_disable_regex]] *weechat.look.highlight_disable_regex*
-** 説明: pass:none[POSIX extended regular expression used to prevent any highlight from a message: this option has higher priority over other highlight options (if the string is found in the message, the highlight is disabled and the other options are ignored), regular expression is case insensitive (use "(?-i)" at beginning to make it case sensitive), examples: "<flash.*>", "(?-i)<Flash.*>"]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+""+`
-
-* [[option_weechat.look.highlight_regex]] *weechat.look.highlight_regex*
-** 説明: pass:none[メッセージ中のハイライトの有無を判断する POSIX 拡張正規表現、マッチ部分は必ず区切り文字 (アルファベット、"-"、"_"、"|" 以外の文字) で囲まれていなければいけない、正規表現は大文字小文字を区別しない (最初に "(?-i)" がある場合は区別する)、例: "flashcode|flashy"、"(?-i)FlashCode|flashy"]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+""+`
-
-* [[option_weechat.look.highlight_tags]] *weechat.look.highlight_tags*
-** 説明: pass:none[ハイライトするタグのコンマ区切りリスト; 大文字小文字の区別なし; 各タグでワイルドカード "*" を使うことができます; 論理積 "and" を取るにはタグ同士を "+" でつなげてください; 例: ニックネーム "FlashCode" からのメッセージは "nick_flashcode"、ニックネームが "toto" で始まるユーザからの notice メッセージは "irc_notice+nick_toto*"]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+""+`
-
-* [[option_weechat.look.hotlist_add_conditions]] *weechat.look.hotlist_add_conditions*
-** 説明: pass:none[ホットリストでバッファを追加する条件 (追加するバッファの通知レベルが OK の場合); 以下の条件を使うことができます: "window" (現在のウィンドウポインタ)、"buffer" (ホットリストに追加するバッファポインタ)、"priority" (0 = 低い、1 = メッセージ、2 = プライベートメッセージ、3 = ハイライト); デフォルトでは離席状態、バッファが画面に表示されていない状態、少なくとも1つのリレークライアントが weechat プロトコルで接続している状態の場合にホットリストへバッファを追加します]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+"${away} || ${buffer.num_displayed} == 0 || ${info:relay_client_count,weechat,connected} > 0"+`
-
-* [[option_weechat.look.hotlist_buffer_separator]] *weechat.look.hotlist_buffer_separator*
-** 説明: pass:none[ホットリストにあるバッファの間に表示される文字列]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+", "+`
-
-* [[option_weechat.look.hotlist_count_max]] *weechat.look.hotlist_count_max*
-** 説明: pass:none[任意のバッファに関するホットリストに表示されるメッセージ数の最大値: 0 = メッセージ数を表示しない、0 以外の数 = 最大で N 個のメッセージ数を表示 (最大から最低の優先度を持つメッセージ数)]
-** タイプ: 整数
-** 値: 0 .. 4
-** デフォルト値: `+2+`
-
-* [[option_weechat.look.hotlist_count_min_msg]] *weechat.look.hotlist_count_min_msg*
-** 説明: pass:none[メッセージの数がこの値以上の場合にメッセージ数を表示]
-** タイプ: 整数
-** 値: 1 .. 100
-** デフォルト値: `+2+`
-
-* [[option_weechat.look.hotlist_names_count]] *weechat.look.hotlist_names_count*
-** 説明: pass:none[ホットリストに載せるバッファ名の数の最大値 (0 = バッファ名は無し、番号のみ)]
-** タイプ: 整数
-** 値: 0 .. 10000
-** デフォルト値: `+3+`
-
-* [[option_weechat.look.hotlist_names_length]] *weechat.look.hotlist_names_length*
-** 説明: pass:none[ホットリストに載せるバッファ名の長さの最大値 (0 = 制限無し)]
-** タイプ: 整数
-** 値: 0 .. 32
-** デフォルト値: `+0+`
-
-* [[option_weechat.look.hotlist_names_level]] *weechat.look.hotlist_names_level*
-** 説明: pass:none[ホットリストに載せる名前のレベル (次の組み合わせ: 1=join/part、2=メッセージ、4=プライベートメッセージ、8=ハイライト、例: 12=プライベートメッセージとハイライト)]
-** タイプ: 整数
-** 値: 1 .. 15
-** デフォルト値: `+12+`
-
-* [[option_weechat.look.hotlist_names_merged_buffers]] *weechat.look.hotlist_names_merged_buffers*
-** 説明: pass:none[セットされた場合、マージバッファに対してホットリストにバッファ名を載せることを強制]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+off+`
-
-* [[option_weechat.look.hotlist_prefix]] *weechat.look.hotlist_prefix*
-** 説明: pass:none[ホットリストの最初に表示されるテキスト]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+"H: "+`
-
-* [[option_weechat.look.hotlist_remove]] *weechat.look.hotlist_remove*
-** 説明: pass:none[ホットリストに含まれるバッファを削除: buffer = バッファを削除、merged = すべての可視状態でマージされたバッファを一括削除]
-** タイプ: 整数
-** 値: buffer, merged
-** デフォルト値: `+merged+`
-
-* [[option_weechat.look.hotlist_short_names]] *weechat.look.hotlist_short_names*
-** 説明: pass:none[セットされた場合、ホットリストではバッファ名に短い名前を使う (名前に含まれる最初の "." 以降)]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+on+`
-
-* [[option_weechat.look.hotlist_sort]] *weechat.look.hotlist_sort*
-** 説明: pass:none[ホットリストのソート: group_time_*: 通知レベルでグループ化した (ハイライトを前にした) 後に時間でソート、group_number_*: 通知レベルでグループ化した (ハイライトを前にした) 後に番号でソート、number_*: 番号でソート; asc = 昇順、desc = 降順]
-** タイプ: 整数
-** 値: group_time_asc, group_time_desc, group_number_asc, group_number_desc, number_asc, number_desc
-** デフォルト値: `+group_time_asc+`
-
-* [[option_weechat.look.hotlist_suffix]] *weechat.look.hotlist_suffix*
-** 説明: pass:none[ホットリストの最後に表示されるテキスト]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+""+`
-
-* [[option_weechat.look.hotlist_unique_numbers]] *weechat.look.hotlist_unique_numbers*
-** 説明: pass:none[ホットリストには一意の番号だけを保持 (これは番号の後ろに名前が表示されていないホットリスト要素だけに適用されます)]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+on+`
-
-* [[option_weechat.look.hotlist_update_on_buffer_switch]] *weechat.look.hotlist_update_on_buffer_switch*
-** 説明: pass:none[update the hotlist when switching buffers]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+on+`
-
-* [[option_weechat.look.input_cursor_scroll]] *weechat.look.input_cursor_scroll*
-** 説明: pass:none[行の最後までスクロールする際に入力行の最後に続けて表示される文字の数]
-** タイプ: 整数
-** 値: 0 .. 100
-** デフォルト値: `+20+`
-
-* [[option_weechat.look.input_share]] *weechat.look.input_share*
-** 説明: pass:none[全てのバッファでコマンド、テキスト、または両方の入力を共有 (バッファごとのローカル履歴に影響無し)]
-** タイプ: 整数
-** 値: none, commands, text, all
-** デフォルト値: `+none+`
-
-* [[option_weechat.look.input_share_overwrite]] *weechat.look.input_share_overwrite*
-** 説明: pass:none[セットされ、入力が共有された場合、ターゲットバッファの入力は常に上書きされます]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+off+`
-
-* [[option_weechat.look.input_undo_max]] *weechat.look.input_undo_max*
-** 説明: pass:none[バッファごとのコマンドラインの "undo" 回数の上限値 (0 = アンドゥは無効)]
-** タイプ: 整数
-** 値: 0 .. 65535
-** デフォルト値: `+32+`
-
-* [[option_weechat.look.item_away_message]] *weechat.look.item_away_message*
-** 説明: pass:none[サーバの離席メッセージを離席バー要素に表示]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+on+`
-
-* [[option_weechat.look.item_buffer_filter]] *weechat.look.item_buffer_filter*
-** 説明: pass:none[現在のバッファで何行かがフィルタされたことを示す文字列 (バー要素 "buffer_filter")]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+"*"+`
-
-* [[option_weechat.look.item_buffer_zoom]] *weechat.look.item_buffer_zoom*
-** 説明: pass:none[マージされたバッファがズーム状態であることを示す文字列 (バー要素 "buffer_zoom")]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+"!"+`
-
-* [[option_weechat.look.item_mouse_status]] *weechat.look.item_mouse_status*
-** 説明: pass:none[マウスが有効であることを示す文字列 (バー要素 "mouse_status")]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+"M"+`
-
-* [[option_weechat.look.item_time_format]] *weechat.look.item_time_format*
-** 説明: pass:none["time" バー要素の時間書式 (日付/時間指定子は strftime の man を参照してください) (注意: 値は評価されるため、"${color:xxx}" 書式を使えば色を指定することも出来ます、/help eval を参照してください)]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+"%H:%M"+`
-
-* [[option_weechat.look.jump_current_to_previous_buffer]] *weechat.look.jump_current_to_previous_buffer*
-** 説明: pass:none[他のバッファへの移動と現在のバッファに戻ることを簡単にするために、/buffer *N (N はバッファ番号) で現在のバッファ番号に移動した場合は、表示上の一つ前のバッファに移動する]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+on+`
-
-* [[option_weechat.look.jump_previous_buffer_when_closing]] *weechat.look.jump_previous_buffer_when_closing*
-** 説明: pass:none[バッファを閉じた場合は一つ前に訪れていたバッファに移動 (無効にされた場合は、バッファ番号の一つ少ないものに移動)]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+on+`
-
-* [[option_weechat.look.jump_smart_back_to_buffer]] *weechat.look.jump_smart_back_to_buffer*
-** 説明: pass:none[ホットリストの最後に到達したら最初のバッファに移動する]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+on+`
-
-* [[option_weechat.look.key_bind_safe]] *weechat.look.key_bind_safe*
-** 説明: pass:none["危険な" キー (ctrl または meta コードで始まらないキー) の割り当てを禁止]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+on+`
-
-* [[option_weechat.look.key_grab_delay]] *weechat.look.key_grab_delay*
-** 説明: pass:none[キーを横取りするためのデフォルト遅延時間 (ミリ秒単位) (デフォルトキー alt-k を使います); /input コマンドではこの遅延時間を無視します (/help input 参照)]
-** タイプ: 整数
-** 値: 1 .. 10000
-** デフォルト値: `+800+`
-
-* [[option_weechat.look.mouse]] *weechat.look.mouse*
-** 説明: pass:none[マウスサポートの有効化]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+off+`
-
-* [[option_weechat.look.mouse_timer_delay]] *weechat.look.mouse_timer_delay*
-** 説明: pass:none[マウスイベントを横取りするための遅延 (ミリ秒): WeeChat はイベント処理前にこの遅延時間だけ待つ]
-** タイプ: 整数
-** 値: 1 .. 10000
-** デフォルト値: `+100+`
-
-* [[option_weechat.look.nick_color_force]] *weechat.look.nick_color_force*
-** 説明: pass:none[force color for some nicks: hash computed with nickname to find color will not be used for these nicks (format is: "nick1:color1;nick2:color2"); look up for nicks is with exact case then lower case, so it's possible to use only lower case for nicks in this option; color can include background with the format "text,background", for example "yellow,red"]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+""+`
-
-* [[option_weechat.look.nick_color_hash]] *weechat.look.nick_color_hash*
-** 説明: pass:none[hash algorithm used to find the color for a nick: djb2 = variant of djb2 (position of letters matters: anagrams of a nick have different color), djb2_32 = variant of djb2 using 32-bit instead of 64-bit integer, sum = sum of letters, sum_32 = sum of letters using 32-bit instead of 64-bit integer]
-** タイプ: 整数
-** 値: djb2, sum, djb2_32, sum_32
-** デフォルト値: `+djb2+`
-
-* [[option_weechat.look.nick_color_hash_salt]] *weechat.look.nick_color_hash_salt*
-** 説明: pass:none[salt for the hash algorithm used to find nick colors (the nickname is appended to this salt and the hash algorithm operates on this string); modifying this shuffles nick colors]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+""+`
-
-* [[option_weechat.look.nick_color_stop_chars]] *weechat.look.nick_color_stop_chars*
-** 説明: pass:none[ニックネームの色計算で以降の文字を無視する目印の文字 (このリストに含まれる文字の前に、少なくとも一つ以上のこのリストに含まれない文字がなければいけません) (例: "|" を設定した場合、"|nick|away" はニックネーム "|nick" と同じ色になります); このオプションの設定値はオプション weechat.look.nick_color_force の結果に影響を与えます。すなわち、ニックネーム色を強制したニックネームに、このオプションによって無視される文字を含めてはいけません]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+"_|["+`
-
-* [[option_weechat.look.nick_prefix]] *weechat.look.nick_prefix*
-** 説明: pass:none[メッセージプレフィックス中のニックネームの前に表示するテキスト、例: "<"]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+""+`
-
-* [[option_weechat.look.nick_suffix]] *weechat.look.nick_suffix*
-** 説明: pass:none[メッセージプレフィックス中のニックネームの後に表示するテキスト、例: ">"]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+""+`
-
-* [[option_weechat.look.paste_auto_add_newline]] *weechat.look.paste_auto_add_newline*
-** 説明: pass:none[少なくとも 2 行以上をペースト、確認のための質問に回答した場合に、ペーストしたテキストの末尾に新しい行を自動的に追加する]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+on+`
-
-* [[option_weechat.look.paste_bracketed]] *weechat.look.paste_bracketed*
-** 説明: pass:none[端末の「括弧付きペーストモード」を有効化 (一部の端末/マルチプレクサで利用可能): このモードでは、ペーストされたテキストはコントロールシーケンスで括られます。これにより WeeChat はペーストされたテキストとタイプされたテキストを区別する ("ESC[200~"、ペーストされたテキスト、"ESC[201~")]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+on+`
-
-* [[option_weechat.look.paste_bracketed_timer_delay]] *weechat.look.paste_bracketed_timer_delay*
-** 説明: pass:none[括弧付きペーストの終了を示すコントロールシーケンス ("ESC[201~") が入力されなかった場合に、括弧付きペーストを強制終了させるまでの待ち時間 (秒単位)]
-** タイプ: 整数
-** 値: 1 .. 60
-** デフォルト値: `+10+`
-
-* [[option_weechat.look.paste_max_lines]] *weechat.look.paste_max_lines*
-** 説明: pass:none[ユーザへの確認無しにペーストする行数の最大値 (-1 = この機能を無効化); このオプションは少なくとも 1 つ以上のバーでバー要素 "input_paste" が使われている場合のみ使われます (デフォルト状態では "input" バーでバー要素 "input_paste" が使われています)]
-** タイプ: 整数
-** 値: -1 .. 2147483647
-** デフォルト値: `+1+`
-
-* [[option_weechat.look.prefix_action]] *weechat.look.prefix_action*
-** 説明: pass:none[アクションメッセージのプレフィックス (注意: 値は評価されるため、"${color:xxx}" 書式を使えば色を指定することも出来ます、/help eval を参照してください)]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+" *"+`
-
-* [[option_weechat.look.prefix_align]] *weechat.look.prefix_align*
-** 説明: pass:none[プレフィックスの調節 (none、left、right (デフォルト))]
-** タイプ: 整数
-** 値: none, left, right
-** デフォルト値: `+right+`
-
-* [[option_weechat.look.prefix_align_max]] *weechat.look.prefix_align_max*
-** 説明: pass:none[プレフィックスのサイズの最大値 (0 = 最大値の指定無し)]
-** タイプ: 整数
-** 値: 0 .. 128
-** デフォルト値: `+0+`
-
-* [[option_weechat.look.prefix_align_min]] *weechat.look.prefix_align_min*
-** 説明: pass:none[プレフィックスサイズの最小値]
-** タイプ: 整数
-** 値: 0 .. 128
-** デフォルト値: `+0+`
-
-* [[option_weechat.look.prefix_align_more]] *weechat.look.prefix_align_more*
-** 説明: pass:none[プレフィックスが切り詰められた場合に表示する文字 (画面上のちょうど 1 文字)]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+"+"+`
-
-* [[option_weechat.look.prefix_align_more_after]] *weechat.look.prefix_align_more_after*
-** 説明: pass:none[テキストの後ろに切り捨て文字 (デフォルトでは "+") を表示 (この場所に表示されるべき空白を置換する); 無効化した場合、テキストの最後の文字が切り捨て文字になります]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+on+`
-
-* [[option_weechat.look.prefix_buffer_align]] *weechat.look.prefix_buffer_align*
-** 説明: pass:none[多くのバッファが同じ番号を持つようにマージされた場合に、バッファ名のプレフィックスを調節 (none, left, right (デフォルト))]
-** タイプ: 整数
-** 値: none, left, right
-** デフォルト値: `+right+`
-
-* [[option_weechat.look.prefix_buffer_align_max]] *weechat.look.prefix_buffer_align_max*
-** 説明: pass:none[多くのバッファが同じ番号を持つようにマージされた場合の、バッファ名のサイズの最大値 (0 = 最大値の指定無し)]
-** タイプ: 整数
-** 値: 0 .. 128
-** デフォルト値: `+0+`
-
-* [[option_weechat.look.prefix_buffer_align_more]] *weechat.look.prefix_buffer_align_more*
-** 説明: pass:none[バッファ名が切り詰められた場合に表示する文字 (多くのバッファが同じ番号を持つようにマージされた場合) (画面上のちょうど 1 文字)]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+"+"+`
-
-* [[option_weechat.look.prefix_buffer_align_more_after]] *weechat.look.prefix_buffer_align_more_after*
-** 説明: pass:none[テキストの後ろに切り捨て文字 (デフォルトでは "+") を表示 (この場所に表示されるべき空白を置換する); 無効化した場合、テキストの最後の文字が切り捨て文字になります]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+on+`
-
-* [[option_weechat.look.prefix_error]] *weechat.look.prefix_error*
-** 説明: pass:none[エラーメッセージのプレフィックス (注意: 値は評価されるため、"${color:xxx}" 書式を使えば色を指定することも出来ます、/help eval を参照してください)]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+"=!="+`
-
-* [[option_weechat.look.prefix_join]] *weechat.look.prefix_join*
-** 説明: pass:none[参加メッセージのプレフィックス (注意: 値は評価されるため、"${color:xxx}" 書式を使えば色を指定することも出来ます、/help eval を参照してください)]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+"-->"+`
-
-* [[option_weechat.look.prefix_network]] *weechat.look.prefix_network*
-** 説明: pass:none[ネットワークメッセージのプレフィックス (注意: 値は評価されるため、"${color:xxx}" 書式を使えば色を指定することも出来ます、/help eval を参照してください)]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+"--"+`
-
-* [[option_weechat.look.prefix_quit]] *weechat.look.prefix_quit*
-** 説明: pass:none[終了メッセージのプレフィックス (注意: 値は評価されるため、"${color:xxx}" 書式を使えば色を指定することも出来ます、/help eval を参照してください)]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+"<--"+`
-
-* [[option_weechat.look.prefix_same_nick]] *weechat.look.prefix_same_nick*
-** 説明: pass:none[同じニックネームからの連続したメッセージの中で最後のメッセージに前置するプレフィックス: 空白文字 " " の場合はプレフィックスを隠す、これ以外の文字列の場合は設定値をプレフィックスとして用いる、空文字の場合は本機能を使わない (プレフィックスを表示)]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+""+`
-
-* [[option_weechat.look.prefix_same_nick_middle]] *weechat.look.prefix_same_nick_middle*
-** 説明: pass:none[同じニックネームからの連続したメッセージの中で最後のメッセージを除くメッセージに前置するプレフィックス: 空白文字 " " の場合はプレフィックスを隠す、これ以外の文字列の場合は設定値をプレフィックスとして用いる、空文字の場合は本機能を使わない (プレフィックスを表示)]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+""+`
-
-* [[option_weechat.look.prefix_suffix]] *weechat.look.prefix_suffix*
-** 説明: pass:none[プレフィックスの後ろに表示される文字列]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+"|"+`
-
-* [[option_weechat.look.quote_nick_prefix]] *weechat.look.quote_nick_prefix*
-** 説明: pass:none[メッセージを引用する際にニックネームの前につけるテキスト (/help cursor 参照)]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+"<"+`
-
-* [[option_weechat.look.quote_nick_suffix]] *weechat.look.quote_nick_suffix*
-** 説明: pass:none[メッセージを引用する際にニックネームの後につけるテキスト (/help cursor 参照)]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+">"+`
-
-* [[option_weechat.look.quote_time_format]] *weechat.look.quote_time_format*
-** 説明: pass:none[メッセージを引用する際の時間書式 (/help cursor を参照してください)]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+"%H:%M:%S"+`
-
-* [[option_weechat.look.read_marker]] *weechat.look.read_marker*
-** 説明: pass:none[最初の未読行を表示するマーカー (line か char) をバッファ内で使用]
-** タイプ: 整数
-** 値: none, line, char
-** デフォルト値: `+line+`
-
-* [[option_weechat.look.read_marker_always_show]] *weechat.look.read_marker_always_show*
-** 説明: pass:none[バッファの最終行であっても、常にリードマーカーを表示]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+off+`
-
-* [[option_weechat.look.read_marker_string]] *weechat.look.read_marker_string*
-** 説明: pass:none[リードマーカー行の表示に使われる文字列 (行末まで文字列が繰り返される)]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+"- "+`
-
-* [[option_weechat.look.read_marker_update_on_buffer_switch]] *weechat.look.read_marker_update_on_buffer_switch*
-** 説明: pass:none[update the read marker when switching buffers]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+on+`
-
-* [[option_weechat.look.save_config_on_exit]] *weechat.look.save_config_on_exit*
-** 説明: pass:none[終了時に設定ファイルを保存]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+on+`
-
-* [[option_weechat.look.save_config_with_fsync]] *weechat.look.save_config_with_fsync*
-** 説明: pass:none[fsync を使って設定データをストレージデバイス上の設定ファイルと同期させる (man fsync を参照してください); fsync は遅いですが、fsync を使えば設定ファイル保存中の停電によるデータ損失を避けられます]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+off+`
-
-* [[option_weechat.look.save_layout_on_exit]] *weechat.look.save_layout_on_exit*
-** 説明: pass:none[終了時にレイアウトを保存 (バッファ、ウィンドウ、両方)]
-** タイプ: 整数
-** 値: none, buffers, windows, all
-** デフォルト値: `+none+`
-
-* [[option_weechat.look.scroll_amount]] *weechat.look.scroll_amount*
-** 説明: pass:none[scroll_up と scroll_down でスクロールする行数]
-** タイプ: 整数
-** 値: 1 .. 2147483647
-** デフォルト値: `+3+`
-
-* [[option_weechat.look.scroll_bottom_after_switch]] *weechat.look.scroll_bottom_after_switch*
-** 説明: pass:none[別のバッファに移動した後にウィンドウの最後までスクロール (ウィンドウのスクロール位置を記憶しない); 自動スクロールは書式ありバッファだけで有効 (自由内容バッファでは無効)]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+off+`
-
-* [[option_weechat.look.scroll_page_percent]] *weechat.look.scroll_page_percent*
-** 説明: pass:none[1 ページ上方向か下方向にスクロールする場合のスクロールの割合 (例えば 100 は 1 ページ、50 は半ページ)]
-** タイプ: 整数
-** 値: 1 .. 100
-** デフォルト値: `+100+`
-
-* [[option_weechat.look.search_text_not_found_alert]] *weechat.look.search_text_not_found_alert*
-** 説明: pass:none[バッファ内に検索テキストが見つからなかった場合はユーザに警告]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+on+`
-
-* [[option_weechat.look.separator_horizontal]] *weechat.look.separator_horizontal*
-** 説明: pass:none[バーとウィンドウ周囲の水平セパレータ文字 (空の場合は ncurses で線を描画するが、一部の端末では URL 選択の際にバグを生ずる可能性がある); 必ず画面上に描画した時の文字幅が 1 の文字を指定してください]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+"-"+`
-
-* [[option_weechat.look.separator_vertical]] *weechat.look.separator_vertical*
-** 説明: pass:none[バーとウィンドウ周囲の垂直セパレータ文字 (空の場合は ncurses で線を描画するが、いくつかの端末では URL 選択の際にバグを生ずる可能性がある); 必ず画面上に描画した時の文字幅が 1 の文字を指定してください]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+""+`
-
-* [[option_weechat.look.tab_width]] *weechat.look.tab_width*
-** 説明: pass:none[メッセージに含まれるタブ文字を表示する際に使う空白文字の数]
-** タイプ: 整数
-** 値: 1 .. 64
-** デフォルト値: `+1+`
-
-* [[option_weechat.look.time_format]] *weechat.look.time_format*
-** 説明: pass:none[文字列へ変換されてメッセージ中に表示される日付の時間書式 (日付/時間指定子は strftime の man を参照してください)]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+"%a, %d %b %Y %T"+`
-
-* [[option_weechat.look.window_auto_zoom]] *weechat.look.window_auto_zoom*
-** 説明: pass:none[端末のサイズがすべてのウィンドウを表示するには小さすぎる場合、自動的に現在のウィンドウにズームする (端末のサイズが十分に大きい場合は、alt-z を使ってウィンドウのズームを戻してください)]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+off+`
-
-* [[option_weechat.look.window_separator_horizontal]] *weechat.look.window_separator_horizontal*
-** 説明: pass:none[ウィンドウ間に水平セパレータを表示]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+on+`
-
-* [[option_weechat.look.window_separator_vertical]] *weechat.look.window_separator_vertical*
-** 説明: pass:none[ウィンドウ間に垂直セパレータを表示]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+on+`
-
-* [[option_weechat.look.window_title]] *weechat.look.window_title*
-** 説明: pass:none[起動時に設定するウィンドウタイトル (Curses GUI 端末タイトル); 空文字列の場合、タイトルは変更されません (注意: 値は評価されます、/help eval を参照してください); 例: "WeeChat ${info:version}"]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+""+`
-
-* [[option_weechat.look.word_chars_highlight]] *weechat.look.word_chars_highlight*
-** 説明: pass:none[ハイライトする部分または文字と見なす文字 (または文字範囲) のカンマ区切りリスト; それぞれの要素は単一文字、文字範囲 (書式: a-z)、全角文字のクラス (例えば "alnum"、wctype の man 参照); 要素の前の "!" は否定を意味します (この文字は単語の一部とみなされません); "*" は任意の文字にマッチします; unicode 文字は \u1234 書式で使うことができます、例えば \u00A0 は固定スペースを意味します (サポートされる書式は /help print を参照してください)]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+"!\u00A0,-,_,|,alnum"+`
-
-* [[option_weechat.look.word_chars_input]] *weechat.look.word_chars_input*
-** 説明: pass:none[コマンドラインの一部または単語と見なす文字 (または文字範囲) のカンマ区切りリスト; それぞれの要素は単一文字、文字範囲 (書式: a-z)、全角文字のクラス (例えば "alnum"、wctype の man 参照); 要素の前の "!" は否定を意味します (この文字は単語の一部とみなされません); "*" は任意の文字にマッチします; unicode 文字は \u1234 書式で使うことができます、例えば \u00A0 は固定スペースを意味します (サポートされる書式は /help print を参照してください)]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+"!\u00A0,-,_,|,alnum"+`
-
-* [[option_weechat.network.connection_timeout]] *weechat.network.connection_timeout*
-** 説明: pass:none[リモートホストへの接続タイムアウト時間 (秒単位) (子プロセスが行う)]
-** タイプ: 整数
-** 値: 1 .. 2147483647
-** デフォルト値: `+60+`
-
-* [[option_weechat.network.gnutls_ca_system]] *weechat.network.gnutls_ca_system*
-** 説明: pass:none[load system's default trusted certificate authorities on startup; this can be turned off to save some memory only if you are not using SSL connections at all]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+on+`
-
-* [[option_weechat.network.gnutls_ca_user]] *weechat.network.gnutls_ca_user*
-** 説明: pass:none[extra file(s) with certificate authorities; multiple files must be separated by colons (each path is evaluated, see function string_eval_path_home in plugin API reference)]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+""+`
-
-* [[option_weechat.network.gnutls_handshake_timeout]] *weechat.network.gnutls_handshake_timeout*
-** 説明: pass:none[gnutls ハンドシェイクのタイムアウト (秒単位)]
-** タイプ: 整数
-** 値: 1 .. 2147483647
-** デフォルト値: `+30+`
-
-* [[option_weechat.network.proxy_curl]] *weechat.network.proxy_curl*
-** 説明: pass:none[Curl を利用した URL のダウンロード時に利用するプロキシの名前 (スクリプトのリストをダウンロードする際および hook_process 関数から呼び出されるスクリプト内で利用); プロキシを定義するには /proxy コマンドを利用してください]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+""+`
-
-* [[option_weechat.plugin.autoload]] *weechat.plugin.autoload*
-** 説明: pass:none[スタートアップ時にロードするプラグインのコンマ区切りリスト、"*" は見つかった全てのプラグイン、"!" から始まる名前はロードしないプラグイン、名前にワイルドカード "*" を使うことができます (例: "*" または "*,!lua,!tcl")]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+"*"+`
-
-* [[option_weechat.plugin.extension]] *weechat.plugin.extension*
-** 説明: pass:none[プラグインのファイル拡張子のコンマ区切りリスト]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+".so,.dll"+`
-
-* [[option_weechat.plugin.path]] *weechat.plugin.path*
-** 説明: pass:none[path for searching plugins (path is evaluated, see function string_eval_path_home in plugin API reference)]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+"${weechat_data_dir}/plugins"+`
-
-* [[option_weechat.plugin.save_config_on_unload]] *weechat.plugin.save_config_on_unload*
-** 説明: pass:none[プラグインをアンロードする際に設定ファイルをセーブ]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+on+`
-
-* [[option_weechat.signal.sighup]] *weechat.signal.sighup*
-** 説明: pass:none[command to execute when the signal is received, multiple commands can be separated by semicolons (note: commands are evaluated, see /help eval)]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+"${if:${info:weechat_headless}?/reload:/quit -yes}"+`
-
-* [[option_weechat.signal.sigquit]] *weechat.signal.sigquit*
-** 説明: pass:none[command to execute when the signal is received, multiple commands can be separated by semicolons (note: commands are evaluated, see /help eval)]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+"/quit -yes"+`
-
-* [[option_weechat.signal.sigterm]] *weechat.signal.sigterm*
-** 説明: pass:none[command to execute when the signal is received, multiple commands can be separated by semicolons (note: commands are evaluated, see /help eval)]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+"/quit -yes"+`
-
-* [[option_weechat.signal.sigusr1]] *weechat.signal.sigusr1*
-** 説明: pass:none[command to execute when the signal is received, multiple commands can be separated by semicolons (note: commands are evaluated, see /help eval)]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+""+`
-
-* [[option_weechat.signal.sigusr2]] *weechat.signal.sigusr2*
-** 説明: pass:none[command to execute when the signal is received, multiple commands can be separated by semicolons (note: commands are evaluated, see /help eval)]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+""+`
-
-* [[option_weechat.startup.command_after_plugins]] *weechat.startup.command_after_plugins*
-** 説明: pass:none[command executed when WeeChat starts, after loading plugins; multiple commands can be separated by semicolons (note: commands are evaluated, see /help eval)]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+""+`
-
-* [[option_weechat.startup.command_before_plugins]] *weechat.startup.command_before_plugins*
-** 説明: pass:none[command executed when WeeChat starts, before loading plugins; multiple commands can be separated by semicolons (note: commands are evaluated, see /help eval)]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+""+`
-
-* [[option_weechat.startup.display_logo]] *weechat.startup.display_logo*
-** 説明: pass:none[WeeChat ロゴを開始時に表示]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+on+`
-
-* [[option_weechat.startup.display_version]] *weechat.startup.display_version*
-** 説明: pass:none[WeeChat バージョンを開始時に表示]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+on+`
-
-* [[option_weechat.startup.sys_rlimit]] *weechat.startup.sys_rlimit*
-** 説明: pass:none[WeeChat プロセスのリソースを制限する、書式: "res1:limit1,res2:limit2"; リソース名は定数 (RLIMIT_XXX) の最後の語を小文字で (値は man setrlimit を参照してください) 記述; 値の -1 は "無制限" の意; 例: core ファイルのサイズ制限を無制限に仮想メモリを 1GB に制限: "core:-1,as:1000000000"]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+""+`
-// end::weechat_options[]
-
-// tag::charset_options[]
-* [[option_charset.default.decode]] *charset.default.decode*
-** 説明: pass:none[グローバルデコード文字セット: 不正な UTF-8 メッセージを受信した場合にこれをデコードする文字セット]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+"iso-8859-1"+`
-
-* [[option_charset.default.encode]] *charset.default.encode*
-** 説明: pass:none[グローバルエンコード文字セット: 送信メッセージをエンコードする文字セット (空の場合、UTF-8 でエンコードされます。UTF-8 は WeeChat の内部文字セットです)]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+""+`
-// end::charset_options[]
+** デフォルト値: `+yellow+`
-// tag::logger_options[]
-* [[option_logger.color.backlog_end]] *logger.color.backlog_end*
-** 説明: pass:none[バックログの最終行の色]
+* [[option_fset.color.section_selected]] *fset.color.section_selected*
+** 説明: pass:none[セクション名のテキスト色 (選択行に表示される場合)]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+default+`
+** デフォルト値: `+white+`
-* [[option_logger.color.backlog_line]] *logger.color.backlog_line*
-** 説明: pass:none[color for backlog lines, used only if the option logger.file.color_lines is off]
+* [[option_fset.color.string_values]] *fset.color.string_values*
+** 説明: pass:none[文字列値のテキスト色]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** デフォルト値: `+default+`
-* [[option_logger.file.auto_log]] *logger.file.auto_log*
-** 説明: pass:none[automatically save content of buffers to files (unless a buffer disables log); if disabled, logging is disabled on all buffers]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+on+`
-
-* [[option_logger.file.color_lines]] *logger.file.color_lines*
-** 説明: pass:none[use ANSI color codes in lines written in log files and display backlog lines with these colors]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+off+`
-
-* [[option_logger.file.flush_delay]] *logger.file.flush_delay*
-** 説明: pass:none[ログファイルをフラッシュする間隔の秒数 (0 = 行が表示されたらすぐにログファイルに書き込み)]
-** タイプ: 整数
-** 値: 0 .. 3600
-** デフォルト値: `+120+`
-
-* [[option_logger.file.fsync]] *logger.file.fsync*
-** 説明: pass:none[バッファのフラッシュ後に fsync を使ってログデータをストレージデバイス上のログファイルと同期させる (man fsync を参照してください); fsync は遅いですが、fsync を使えばログファイル保存中の停電によるデータ損失を避けられます]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+off+`
-
-* [[option_logger.file.info_lines]] *logger.file.info_lines*
-** 説明: pass:none[バッファのログ保存の開始時と終了時にログファイルへ情報行を書き込む]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+off+`
-
-* [[option_logger.file.mask]] *logger.file.mask*
-** 説明: pass:none[ログファイルのデフォルトファイル名マスク (書式は "directory/to/file" または "file" で、最初に "/" が無ければ "path" オプションがファイルへの完全なパスを作るために使われます); ローカルバッファ変数を使うことも可能です (全てのバッファで定義されている変数以外を使わないでください。すなわち、$server や $channel などを使うべきではありません); 日付指定子を使うことも可能です (strftime の man を参照してください)]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+"$plugin.$name.weechatlog"+`
-
-* [[option_logger.file.name_lower_case]] *logger.file.name_lower_case*
-** 説明: pass:none[ログファイル名に小文字だけを使う]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+on+`
-
-* [[option_logger.file.nick_prefix]] *logger.file.nick_prefix*
-** 説明: pass:none[ニックネームの前に書くテキスト (メッセージプレフィックス)、例: "<"]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+""+`
-
-* [[option_logger.file.nick_suffix]] *logger.file.nick_suffix*
-** 説明: pass:none[ニックネームの後に書くテキスト (メッセージプレフィックス)、例: ">"]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+""+`
-
-* [[option_logger.file.path]] *logger.file.path*
-** 説明: pass:none[path for WeeChat log files; date specifiers are permitted (see man strftime) (path is evaluated, see function string_eval_path_home in plugin API reference)]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+"${weechat_data_dir}/logs"+`
-
-* [[option_logger.file.replacement_char]] *logger.file.replacement_char*
-** 説明: pass:none[マスクと一緒に使われたときのファイル名に含まれる特殊文字に対応する置換文字 (ディレクトリ区切りのようなもの)]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+"_"+`
-
-* [[option_logger.file.rotation_compression_level]] *logger.file.rotation_compression_level*
-** 説明: pass:none[compression level for rotated log files (with extension ".1", ".2", etc.), if option logger.file.rotation_compression_type is enabled: 1 = low compression / fast ... 100 = best compression / slow; the value is a percentage converted to 1-9 for gzip and 1-19 for zstd; the default value is recommended, it offers a good compromise between compression and speed]
-** タイプ: 整数
-** 値: 1 .. 100
-** デフォルト値: `+20+`
-
-* [[option_logger.file.rotation_compression_type]] *logger.file.rotation_compression_type*
-** 説明: pass:none[compression type for rotated log files; if set to "none", rotated log files are not compressed; WARNING: if rotation was enabled with another type of compression (or no compression), you must first unload the logger plugin, compress files with the new type (or decompress files), then change the option in logger.conf, then load the logger plugin]
-** タイプ: 整数
-** 値: none, gzip, zstd
-** デフォルト値: `+none+`
-
-* [[option_logger.file.rotation_size_max]] *logger.file.rotation_size_max*
-** 説明: pass:none[when this size is reached, a rotation of log files is performed: the existing rotated log files are renamed (.1 becomes .2, .2 becomes .3, etc.) and the current file is renamed with extension .1; an integer number with a suffix is allowed: b = bytes (default if no unit given), k = kilobytes, m = megabytes, g = gigabytes, t = terabytes; example: "2g" causes a rotation if the file size is > 2,000,000,000 bytes; if set to "0", no rotation is performed (unlimited log size); WARNING: before changing this option, you should first set the compression type via option logger.file.rotation_compression_type]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+"0"+`
-
-* [[option_logger.file.time_format]] *logger.file.time_format*
-** 説明: pass:none[ログファイルで使用するタイムスタンプ (日付/時間指定子は strftime の man 参照)]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+"%Y-%m-%d %H:%M:%S"+`
-
-* [[option_logger.look.backlog]] *logger.look.backlog*
-** 説明: pass:none[新規バッファの作成時にログファイルから表示する行の最大数 (0 = バックログ無し)]
-** タイプ: 整数
-** 値: 0 .. 2147483647
-** デフォルト値: `+20+`
-
-* [[option_logger.look.backlog_conditions]] *logger.look.backlog_conditions*
-** 説明: pass:none[バックログの表示条件 (注意: 内容は評価されません、/help eval を参照してください); 値が空の場合、すべてのバッファでバックログを表示します; 例えばプライベートバッファのみでバックログを表示するには、"${type} == private" のように値を設定します]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+""+`
-// end::logger_options[]
-
-// tag::exec_options[]
-* [[option_exec.color.flag_finished]] *exec.color.flag_finished*
-** 説明: pass:none[コマンドリストで使う実行完了コマンドのフラグに対するテキスト色]
+* [[option_fset.color.string_values_selected]] *fset.color.string_values_selected*
+** 説明: pass:none[文字列値のテキスト色 (選択行に表示される場合)]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+lightred+`
+** デフォルト値: `+white+`
-* [[option_exec.color.flag_running]] *exec.color.flag_running*
-** 説明: pass:none[コマンドリストで使う実行中コマンドのフラグに対するテキスト色]
+* [[option_fset.color.title_count_options]] *fset.color.title_count_options*
+** 説明: pass:none[現在のフィルタにマッチするオプション数のテキスト色 (バッファタイトル)]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+lightgreen+`
-
-* [[option_exec.command.default_options]] *exec.command.default_options*
-** 説明: pass:none[/exec コマンドのデフォルトオプション (/help exec を参照してください); 例: "-nosh -bg" は全てのコマンドをバックグラウンドで実行し (出力なし)、シェルを使わない]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+""+`
-
-* [[option_exec.command.purge_delay]] *exec.command.purge_delay*
-** 説明: pass:none[接続を切ったクライアントを追い出すまでの遅延時間 (秒単位、0 = すぐにクライアントを追い出す、-1 = 追い出さない)]
-** タイプ: 整数
-** 値: -1 .. 25920000
-** デフォルト値: `+0+`
-
-* [[option_exec.command.shell]] *exec.command.shell*
-** 説明: pass:none[shell to use with command "/exec -sh"; it can be just the name of shell if it is in PATH (for example "bash") or the absolute path to the shell (for example "/bin/bash"); if value is empty, "sh" is used (note: content is evaluated, see /help eval)]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+"${env:SHELL}"+`
-// end::exec_options[]
+** デフォルト値: `+cyan+`
-// tag::trigger_options[]
-* [[option_trigger.color.flag_command]] *trigger.color.flag_command*
-** 説明: pass:none[コマンドフラグに対するテキスト色 (/trigger list 用)]
+* [[option_fset.color.title_current_option]] *fset.color.title_current_option*
+** 説明: pass:none[現在のオプション番号のテキスト色 (バッファタイトル)]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+lightgreen+`
+** デフォルト値: `+lightcyan+`
-* [[option_trigger.color.flag_conditions]] *trigger.color.flag_conditions*
-** 説明: pass:none[状態フラグに対するテキスト色 (/trigger list 用)]
+* [[option_fset.color.title_filter]] *fset.color.title_filter*
+** 説明: pass:none[フィルタのテキスト色 (バッファタイトル)]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** デフォルト値: `+yellow+`
-* [[option_trigger.color.flag_post_action]] *trigger.color.flag_post_action*
-** 説明: pass:none[実行後処遇フラグに対するテキスト色 (/trigger list 用)]
+* [[option_fset.color.title_marked_options]] *fset.color.title_marked_options*
+** 説明: pass:none[マーク済みオプション数のテキスト色 (バッファタイトル)]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+lightblue+`
+** デフォルト値: `+lightgreen+`
-* [[option_trigger.color.flag_regex]] *trigger.color.flag_regex*
-** 説明: pass:none[正規表現フラグに対するテキスト色 (/trigger list 用)]
+* [[option_fset.color.title_sort]] *fset.color.title_sort*
+** 説明: pass:none[ソート規則のテキスト色 (バッファタイトル)]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+lightcyan+`
+** デフォルト値: `+white+`
-* [[option_trigger.color.flag_return_code]] *trigger.color.flag_return_code*
-** 説明: pass:none[リターンコードに対するテキスト色 (/trigger list 用)]
+* [[option_fset.color.type]] *fset.color.type*
+** 説明: pass:none[型のテキスト色]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+lightmagenta+`
+** デフォルト値: `+green+`
-* [[option_trigger.color.identifier]] *trigger.color.identifier*
-** 説明: pass:none[text color for trigger context identifier in monitor buffer]
+* [[option_fset.color.type_selected]] *fset.color.type_selected*
+** 説明: pass:none[型のテキスト色 (選択行に表示される場合)]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+cyan+`
+** デフォルト値: `+lightgreen+`
-* [[option_trigger.color.regex]] *trigger.color.regex*
-** 説明: pass:none[正規表現に対するテキスト色]
+* [[option_fset.color.unmarked]] *fset.color.unmarked*
+** 説明: pass:none[マーク標識のテキスト色 (マークが付けられていない場合)]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+white+`
+** デフォルト値: `+default+`
-* [[option_trigger.color.replace]] *trigger.color.replace*
-** 説明: pass:none[置換テキストに対するテキスト色 (正規表現用)]
+* [[option_fset.color.unmarked_selected]] *fset.color.unmarked_selected*
+** 説明: pass:none[マーク標識のテキスト色 (マークが付けられておらず、選択行に表示される場合)]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+cyan+`
+** デフォルト値: `+white+`
-* [[option_trigger.color.trigger]] *trigger.color.trigger*
-** 説明: pass:none[トリガ名に対するテキスト色]
+* [[option_fset.color.value]] *fset.color.value*
+** 説明: pass:none[値のテキスト色]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+green+`
+** デフォルト値: `+cyan+`
-* [[option_trigger.color.trigger_disabled]] *trigger.color.trigger_disabled*
-** 説明: pass:none[無効化されたトリガの名前に対するテキスト色]
+* [[option_fset.color.value_changed]] *fset.color.value_changed*
+** 説明: pass:none[値のテキスト色 (値がデフォルト値と同じではない場合)]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+red+`
-
-* [[option_trigger.look.enabled]] *trigger.look.enabled*
-** 説明: pass:none[トリガサポートの有効化]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+on+`
-
-* [[option_trigger.look.monitor_strip_colors]] *trigger.look.monitor_strip_colors*
-** 説明: pass:none[モニタバッファに表示されるハッシュテーブルの値から色を削除]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+off+`
-// end::trigger_options[]
-
-// tag::spell_options[]
-* [[option_spell.check.commands]] *spell.check.commands*
-** 説明: pass:none[スペルチェックを有効化するコマンドのコンマ区切りリスト (これ以外のコマンドではスペルチェックは無効)]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+"away,command,cycle,kick,kickban,me,msg,notice,part,query,quit,topic"+`
-
-* [[option_spell.check.default_dict]] *spell.check.default_dict*
-** 説明: pass:none[バッファに辞書が定義されていない場合に使用されるデフォルト辞書 (または辞書のコンマ区切りリスト) (空のままであれば明示的に有効化されたバッファを除いてスペルチェックを利用しない)]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+""+`
-
-* [[option_spell.check.during_search]] *spell.check.during_search*
-** 説明: pass:none[バッファ内のテキスト検索中に単語チェックを行う]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+off+`
-
-* [[option_spell.check.enabled]] *spell.check.enabled*
-** 説明: pass:none[コマンドラインでスペルチェックを利用する]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+off+`
-
-* [[option_spell.check.real_time]] *spell.check.real_time*
-** 説明: pass:none[単語のリアルタイムスペルチェック (遅い、デフォルトでは無効: 単語は区切りの後にだけチェックされる)]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+off+`
-
-* [[option_spell.check.suggestions]] *spell.check.suggestions*
-** 説明: pass:none[バッファ内の各辞書セットに対してバー要素 "spell_suggest" に表示する提案の数 (-1 = サジェスト機能を無効、0 = 全ての言語を使って全てのサジェスト結果を表示)]
-** タイプ: 整数
-** 値: -1 .. 2147483647
-** デフォルト値: `+-1+`
-
-* [[option_spell.check.word_min_length]] *spell.check.word_min_length*
-** 説明: pass:none[スペルチェックを行う単語長の最小値 (0 の場合は全ての単語をチェック)]
-** タイプ: 整数
-** 値: 0 .. 2147483647
-** デフォルト値: `+2+`
+** デフォルト値: `+brown+`
-* [[option_spell.color.misspelled]] *spell.color.misspelled*
-** 説明: pass:none[スペルミスのある単語に付ける色 (入力バー)]
+* [[option_fset.color.value_changed_selected]] *fset.color.value_changed_selected*
+** 説明: pass:none[値のテキスト色 (値がデフォルト値と同じではなく、選択行に表示される場合)]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+lightred+`
+** デフォルト値: `+yellow+`
-* [[option_spell.color.suggestion]] *spell.color.suggestion*
-** 説明: pass:none[バー要素 "spell_suggest" 内でスペルミスのある単語に対する修正候補に付ける色]
+* [[option_fset.color.value_selected]] *fset.color.value_selected*
+** 説明: pass:none[値のテキスト色 (選択行に表示される場合)]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+default+`
+** デフォルト値: `+lightcyan+`
-* [[option_spell.color.suggestion_delimiter_dict]] *spell.color.suggestion_delimiter_dict*
-** 説明: pass:none[バー要素 "spell_suggest" 内で 2 つの辞書間の区切り文字に付ける色]
+* [[option_fset.color.value_undef]] *fset.color.value_undef*
+** 説明: pass:none[未定義値のテキスト色]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+cyan+`
+** デフォルト値: `+magenta+`
-* [[option_spell.color.suggestion_delimiter_word]] *spell.color.suggestion_delimiter_word*
-** 説明: pass:none[バー要素 "aspell_suggest" 内で 2 つの単語間の区切り文字に付ける色]
+* [[option_fset.color.value_undef_selected]] *fset.color.value_undef_selected*
+** 説明: pass:none[未定義値のテキスト色 (選択行に表示される場合)]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+cyan+`
-
-* [[option_spell.look.suggestion_delimiter_dict]] *spell.look.suggestion_delimiter_dict*
-** 説明: pass:none[バー要素 "spell_suggest" 内の 2 つの辞書間の区切り文字]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+" / "+`
-
-* [[option_spell.look.suggestion_delimiter_word]] *spell.look.suggestion_delimiter_word*
-** 説明: pass:none[バー要素 "spell_suggest" 内の 2 つの単語間の区切り文字]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+","+`
-// end::spell_options[]
-
-// tag::buflist_options[]
-* [[option_buflist.format.buffer]] *buflist.format.buffer*
-** 説明: pass:none[各バッファの表示書式 (注意: 値は評価されます、/help buflist を参照してください); 例: バー要素 "buflist" は標準書式、それ以外のバー要素 ("buflist2" や "buflist3") は角括弧内にバッファ番号を入れた書式: "${if:${bar_item.name}==buflist?${format_number}${indent}${format_nick_prefix}${color_hotlist}${format_name}:[${number}\]}"]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+"${format_number}${indent}${format_nick_prefix}${color_hotlist}${format_name}"+`
-
-* [[option_buflist.format.buffer_current]] *buflist.format.buffer_current*
-** 説明: pass:none[現在のバッファの表示書式 (注意: 値は評価されます、/help eval を参照してください)]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+"${color:,blue}${format_buffer}"+`
-
-* [[option_buflist.format.hotlist]] *buflist.format.hotlist*
-** 説明: pass:none[ホットリストの表示書式 (注意: 値は評価されます、/help eval を参照してください)]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+" ${color:green}(${hotlist}${color:green})"+`
-
-* [[option_buflist.format.hotlist_highlight]] *buflist.format.hotlist_highlight*
-** 説明: pass:none[ホットリストレベルが "highlight" のバッファの表示書式 (注意: 値は評価されます、/help eval を参照してください)]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+"${color:magenta}"+`
-
-* [[option_buflist.format.hotlist_low]] *buflist.format.hotlist_low*
-** 説明: pass:none[ホットリストレベルが "low" のバッファの表示書式 (注意: 値は評価されます、/help eval を参照してください)]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+"${color:white}"+`
-
-* [[option_buflist.format.hotlist_message]] *buflist.format.hotlist_message*
-** 説明: pass:none[ホットリストレベルが "message" のバッファの表示書式 (注意: 値は評価されます、/help eval を参照してください)]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+"${color:brown}"+`
-
-* [[option_buflist.format.hotlist_none]] *buflist.format.hotlist_none*
-** 説明: pass:none[ホットリストにないバッファの表示書式 (注意: 値は評価されます、/help eval を参照してください)]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+"${color:default}"+`
-
-* [[option_buflist.format.hotlist_private]] *buflist.format.hotlist_private*
-** 説明: pass:none[ホットリストレベルが "private" のバッファの表示書式 (注意: 値は評価されます、/help eval を参照してください)]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+"${color:green}"+`
-
-* [[option_buflist.format.hotlist_separator]] *buflist.format.hotlist_separator*
-** 説明: pass:none[ホットリスト内のカウンタを示す区切り文字 (注意: 値は評価されます、/help eval を参照してください)]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+"${color:default},"+`
+** デフォルト値: `+lightmagenta+`
-* [[option_buflist.format.indent]] *buflist.format.indent*
-** 説明: pass:none[indent チャンネルとプライベートバッファに表示される文字列 (注意: 値は評価されます、/help buflist を参照してください)]
+* [[option_fset.format.export_help]] *fset.format.export_help*
+** 説明: pass:none[オプションをファイルへエクスポートする際に使うヘルプ行の書式 (注意: 値は評価されます、/help fset を参照してください)]
** タイプ: 文字列
** 値: 未制約文字列
-** デフォルト値: `+" "+`
+** デフォルト値: `+"# ${description2}"+`
-* [[option_buflist.format.lag]] *buflist.format.lag*
-** 説明: pass:none[IRC サーババッファの遅延時間の表示書式 (注意: 値は評価されます、/help eval を参照してください)]
+* [[option_fset.format.export_option]] *fset.format.export_option*
+** 説明: pass:none[オプションをファイルへエクスポートする際に使うオプションの書式 (注意: 値は評価されます、/help fset を参照してください)]
** タイプ: 文字列
** 値: 未制約文字列
-** デフォルト値: `+" ${color:green}[${color:brown}${lag}${color:green}]"+`
+** デフォルト値: `+"/set ${name} ${quoted_value}"+`
-* [[option_buflist.format.name]] *buflist.format.name*
-** 説明: pass:none[バッファ名の書式 (注意: 値は評価されます、/help buflist を参照してください)]
+* [[option_fset.format.export_option_null]] *fset.format.export_option_null*
+** 説明: pass:none[オプション値が "null" の場合に、そのオプションをファイルへエクスポートする際に使うオプションの書式 (注意: 値は評価されます、/help fset を参照してください)]
** タイプ: 文字列
** 値: 未制約文字列
-** デフォルト値: `+"${name}"+`
+** デフォルト値: `+"/unset ${name}"+`
-* [[option_buflist.format.nick_prefix]] *buflist.format.nick_prefix*
-** 説明: pass:none[チャンネルにおけるニックネームプレフィックス書式 (注意: 値は評価されます、/help buflist を参照してください)]
+* [[option_fset.format.option1]] *fset.format.option1*
+** 説明: pass:none[first format of each line, used when option fset.look.format_number is set to 1 (note: content is evaluated, see /help fset); an empty string uses the default format ("${marked} ${name} ${type} ${value2}"), which is without evaluation of string and then much faster; formats can be switched with key ctrl+X]
** タイプ: 文字列
** 値: 未制約文字列
-** デフォルト値: `+"${color_nick_prefix}${nick_prefix}"+`
+** デフォルト値: `+""+`
-* [[option_buflist.format.number]] *buflist.format.number*
-** 説明: pass:none[バッファ番号の表示書式、${number} はインデント済み番号です (注意: 値は評価されます、/help eval を参照してください)]
+* [[option_fset.format.option2]] *fset.format.option2*
+** 説明: pass:none[second format of each line, used when option fset.look.format_number is set to 2 (note: content is evaluated, see /help fset); an empty string uses the default format ("${marked} ${name} ${type} ${value2}"), which is without evaluation of string and then much faster; formats can be switched with key ctrl+X]
** タイプ: 文字列
** 値: 未制約文字列
-** デフォルト値: `+"${color:green}${number}${if:${number_displayed}?.: }"+`
+** デフォルト値: `+"${marked} ${name} ${type} ${value2}${newline} ${empty_name} ${_default_value}${color:darkgray} -- ${min}..${max}${newline} ${empty_name} ${description}"+`
-* [[option_buflist.format.tls_version]] *buflist.format.tls_version*
-** 説明: pass:none[format for TLS version on an IRC server buffer (note: content is evaluated, see /help buflist)]
+* [[option_fset.look.auto_refresh]] *fset.look.auto_refresh*
+** 説明: pass:none[comma separated list of options to automatically refresh on the fset buffer (if opened); "*" means all options (recommended), a name beginning with "!" is a negative value to prevent an option to be refreshed, wildcard "*" is allowed in names (example: "*,!plugin.section.*")]
** タイプ: 文字列
** 値: 未制約文字列
-** デフォルト値: `+" ${color:default}(${if:${tls_version}==TLS1.3?${color:green}:${if:${tls_version}==TLS1.2?${color:yellow}:${color:red}}}${translate:${tls_version}}${color:default})"+`
+** デフォルト値: `+"*"+`
-* [[option_buflist.look.add_newline]] *buflist.look.add_newline*
-** 説明: pass:none[バッファリスト内に表示されたバッファ同士の間に改行を追加します。こうすることで、各バッファが 1 行ごとに表示されます (推奨); これを無効化する場合には、表示書式に改行 "${\n}" を追加しなければいけません。さらに、マウス操作はできなくなります]
+* [[option_fset.look.auto_unmark]] *fset.look.auto_unmark*
+** 説明: pass:none[マーク済みオプションに対する操作の後または再読込の後に自動的にすべてのオプションをアンマーク]
** タイプ: ブール
** 値: on, off
-** デフォルト値: `+on+`
-
-* [[option_buflist.look.auto_scroll]] *buflist.look.auto_scroll*
-** 説明: pass:none[現在のバッファが常にバーの中に表示されるように自動的にバッファリストバーをスクロールします (この機能はフィリングが "vertical" に設定された左右にあるバーでのみ機能します); 設定値は現在のバーよりも前に表示される行数のパーセント値です (-1 = 自動スクロールを無効化); 例えば値を 50 に設定した場合、現在のバッファがバーの中央に位置するように自動スクロールされます。0 に設定した場合はバーの最初、100 に設定した場合はバーの最後を意味します]
-** タイプ: 整数
-** 値: -1 .. 100
-** デフォルト値: `+50+`
+** デフォルト値: `+off+`
-* [[option_buflist.look.display_conditions]] *buflist.look.display_conditions*
-** 説明: pass:none[バッファの表示条件 (注意: 値は評価されます、/help eval を参照してください); サーババッファがコアバッファにマージされている場合にサーババッファを隠す例: "${buffer.hidden}==0 && ((${type}!=server && ${buffer.full_name}!=core.weechat) || ${buffer.active}==1)"]
+* [[option_fset.look.condition_catch_set]] *fset.look.condition_catch_set*
+** 説明: pass:none[/set コマンドを受け付けて fset バッファに結果を表示する条件; 以下の値を利用可能です: ${name} (/set コマンドに渡すオプション名)、${count} (/set 引数のオプション数); 空文字列は /set コマンドの受付を無効化します; 値が "1" の場合、fset バッファは常に /set コマンドと一緒に使われます]
** タイプ: 文字列
** 値: 未制約文字列
-** デフォルト値: `+"${buffer.hidden}==0"+`
-
-* [[option_buflist.look.enabled]] *buflist.look.enabled*
-** 説明: pass:none[enable buflist; it is recommended to use this option instead of just hiding the bar because it also removes some internal hooks that are not needed any more when the bar is hidden; you can also use the command "/buflist toggle" or use the default key alt+shift+b]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+on+`
-
-* [[option_buflist.look.mouse_jump_visited_buffer]] *buflist.look.mouse_jump_visited_buffer*
-** 説明: pass:none[有効の場合、現在のバッファを示す行で左または右ボタンをクリックすることで一つ前または次の訪問済みバッファに移動します]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+off+`
-
-* [[option_buflist.look.mouse_move_buffer]] *buflist.look.mouse_move_buffer*
-** 説明: pass:none[有効の場合、リスト内でマウスジェスチャ (ドラッグ & ドロップ) することでバッファを移動します]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+on+`
-
-* [[option_buflist.look.mouse_wheel]] *buflist.look.mouse_wheel*
-** 説明: pass:none[有効の場合、マウスのホイールアップまたはダウンすることでリスト内の一つ前または次のバッファに移動します]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+on+`
-
-* [[option_buflist.look.nick_prefix]] *buflist.look.nick_prefix*
-** 説明: pass:none[ニックネームリスト内のニックネームのプレフィックスと色を取得します。このオプションを有効化することで、書式内で ${nick_prefix} を使えるようになります。しかしながら、ニックネームリスト内に多くのニックネームがある場合に動作が遅くなる可能性がありますので、このオプションはデフォルトで無効化されています]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+off+`
+** デフォルト値: `+"${count} >= 1"+`
-* [[option_buflist.look.nick_prefix_empty]] *buflist.look.nick_prefix_empty*
-** 説明: pass:none[ニックネームプレフィックスが有効化された状態で、そのバッファで対象のニックネームにプレフィックスが付かない場合に、プレフィックスの代わりに空白を表示します]
+* [[option_fset.look.export_help_default]] *fset.look.export_help_default*
+** 説明: pass:none[デフォルトでエクスポートされた各オプションのヘルプを書き込む (コマンド /fset -export の引数 "-help" と "-nohelp" を使えばこの設定を上書きできます)]
** タイプ: ブール
** 値: on, off
** デフォルト値: `+on+`
-* [[option_buflist.look.signals_refresh]] *buflist.look.signals_refresh*
-** 説明: pass:none[フックされてバッファの再読込トリガになる追加シグナルのコンマ区切りリスト; これは一部のカスタム変数が書式内で使われており、明示的に再読込が必要な場合に便利です]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+""+`
-
-* [[option_buflist.look.sort]] *buflist.look.sort*
-** 説明: pass:none[comma-separated list of fields to sort buffers; each field is a hdata variable of buffer ("var"), a hdata variable of IRC server ("irc_server.var") or a hdata variable of IRC channel ("irc_channel.var"); char "-" can be used before field to reverse order, char "~" can be used to do a case insensitive comparison; example: "-~short_name" for case insensitive and reverse sort on buffer short name (note: the content is evaluated, before being split into fields, but at that time "bar_item" is the only variable that can be used, to distinguish between different buflist items, for example "${bar_item.name}")]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+"number,-active"+`
-
-* [[option_buflist.look.use_items]] *buflist.look.use_items*
-** 説明: pass:none[number of buflist bar items that can be used; the item names are: "buflist", "buflist2", "buflist3"; be careful, using more than one bar item slows down the display of buffers list]
+* [[option_fset.look.format_number]] *fset.look.format_number*
+** 説明: pass:none[オプションを表示する際に使う書式番号; この値は fset バッファで ctrl-X キーを押すことで動的に変化します]
** タイプ: 整数
-** 値: 1 .. 3
+** 値: 1 .. 2
** デフォルト値: `+1+`
-// end::buflist_options[]
-// tag::fifo_options[]
-* [[option_fifo.file.enabled]] *fifo.file.enabled*
-** 説明: pass:none[FIFO パイプの有効化]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+on+`
-
-* [[option_fifo.file.path]] *fifo.file.path*
-** 説明: pass:none[path for FIFO file; WeeChat PID can be used in path with ${info:pid} (path is evaluated, see function string_eval_path_home in plugin API reference)]
+* [[option_fset.look.marked_string]] *fset.look.marked_string*
+** 説明: pass:none[オプションをマークする際に表示される文字列 (マークは何らかの操作を複数のオプションに対して行う際に用います)]
** タイプ: 文字列
** 値: 未制約文字列
-** デフォルト値: `+"${weechat_runtime_dir}/weechat_fifo_${info:pid}"+`
-// end::fifo_options[]
-
-// tag::typing_options[]
-* [[option_typing.look.delay_purge_paused]] *typing.look.delay_purge_paused*
-** 説明: pass:none[number of seconds after paused status has been set: if reached, the typing status is removed]
-** タイプ: 整数
-** 値: 1 .. 2147483647
-** デフォルト値: `+30+`
-
-* [[option_typing.look.delay_purge_typing]] *typing.look.delay_purge_typing*
-** 説明: pass:none[number of seconds after typing status has been set: if reached, the typing status is removed]
-** タイプ: 整数
-** 値: 1 .. 2147483647
-** デフォルト値: `+6+`
+** デフォルト値: `+"*"+`
-* [[option_typing.look.delay_set_paused]] *typing.look.delay_set_paused*
-** 説明: pass:none[number of seconds after typing last char: if reached, the typing status becomes "paused" and no more typing signals are sent]
+* [[option_fset.look.scroll_horizontal]] *fset.look.scroll_horizontal*
+** 説明: pass:none[fset バッファの左右スクロール量 (横幅の割合)]
** タイプ: 整数
-** 値: 1 .. 2147483647
+** 値: 1 .. 100
** デフォルト値: `+10+`
-* [[option_typing.look.enabled_nicks]] *typing.look.enabled_nicks*
-** 説明: pass:none[typing enabled for other nicks (display typing info for nicks typing in the current buffer)]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+off+`
-
-* [[option_typing.look.enabled_self]] *typing.look.enabled_self*
-** 説明: pass:none[typing enabled for self messages (send typing info to other users)]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+off+`
-
-* [[option_typing.look.input_min_chars]] *typing.look.input_min_chars*
-** 説明: pass:none[min number of chars in message to trigger send of typing signals]
-** タイプ: 整数
-** 値: 1 .. 2147483647
-** デフォルト値: `+4+`
-
-* [[option_typing.look.item_max_length]] *typing.look.item_max_length*
-** 説明: pass:none[max number of chars displayed in the bar item "typing" (0 = do not truncate content)]
-** タイプ: 整数
-** 値: 0 .. 2147483647
-** デフォルト値: `+0+`
-// end::typing_options[]
-
-// tag::xfer_options[]
-* [[option_xfer.color.status_aborted]] *xfer.color.status_aborted*
-** 説明: pass:none["中止" 状態のテキスト色]
-** タイプ: 色
-** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+lightred+`
-
-* [[option_xfer.color.status_active]] *xfer.color.status_active*
-** 説明: pass:none["アクティブ" 状態のテキスト色]
-** タイプ: 色
-** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+lightblue+`
-
-* [[option_xfer.color.status_connecting]] *xfer.color.status_connecting*
-** 説明: pass:none["接続中" 状態のテキスト色]
-** タイプ: 色
-** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+yellow+`
-
-* [[option_xfer.color.status_done]] *xfer.color.status_done*
-** 説明: pass:none["終了" 状態のテキスト色]
-** タイプ: 色
-** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+lightgreen+`
-
-* [[option_xfer.color.status_failed]] *xfer.color.status_failed*
-** 説明: pass:none["失敗" 状態のテキスト色]
-** タイプ: 色
-** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+lightred+`
-
-* [[option_xfer.color.status_waiting]] *xfer.color.status_waiting*
-** 説明: pass:none["接続待ち" 状態のテキスト色]
-** タイプ: 色
-** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+lightcyan+`
-
-* [[option_xfer.color.text]] *xfer.color.text*
-** 説明: pass:none[xfer バッファのテキスト色]
-** タイプ: 色
-** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+default+`
-
-* [[option_xfer.color.text_bg]] *xfer.color.text_bg*
-** 説明: pass:none[xfer バッファの背景色]
-** タイプ: 色
-** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+default+`
-
-* [[option_xfer.color.text_selected]] *xfer.color.text_selected*
-** 説明: pass:none[xfer バッファで選択された行のテキスト色]
-** タイプ: 色
-** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+white+`
-
-* [[option_xfer.file.auto_accept_chats]] *xfer.file.auto_accept_chats*
-** 説明: pass:none[チャット要求を自動的に許可 (注意して使用!)]
+* [[option_fset.look.show_plugins_desc]] *fset.look.show_plugins_desc*
+** 説明: pass:none[プラグイン説明オプションを表示 (plugins.desc.*)]
** タイプ: ブール
** 値: on, off
** デフォルト値: `+off+`
-* [[option_xfer.file.auto_accept_files]] *xfer.file.auto_accept_files*
-** 説明: pass:none[ファイルを自動的に受信 (注意して使用!)]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+off+`
+* [[option_fset.look.sort]] *fset.look.sort*
+** 説明: pass:none[ソートオプションのコンマ区切りリスト (フィールドのリストは /help fset を参照してください); フィールドの先頭に "-" 文字を付けることでソート順を逆にすることも可能です。大文字小文字を区別せずに比較を行うには "~" 文字を使います; 例: "-~name" オプション名を基準に大文字小文字を区別せずにソートして、順番を逆にします]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+"~name"+`
-* [[option_xfer.file.auto_accept_nicks]] *xfer.file.auto_accept_nicks*
-** 説明: pass:none[comma-separated list of nicks for which the incoming files and chats are automatically accepted; format is "server.nick" (for a specific server) or "nick" (for all servers); example: "libera.FlashCode,andrew"]
+* [[option_fset.look.unmarked_string]] *fset.look.unmarked_string*
+** 説明: pass:none[オプションがマークされていない場合に表示される文字列]
** タイプ: 文字列
** 値: 未制約文字列
-** デフォルト値: `+""+`
+** デフォルト値: `+" "+`
-* [[option_xfer.file.auto_check_crc32]] *xfer.file.auto_check_crc32*
-** 説明: pass:none[ファイル名に CRC32 ファイルチェックサム (8 桁の 16 進数) が含まれている場合、自動的に CRC32 ファイルチェックサムを確認]
+* [[option_fset.look.use_color_value]] *fset.look.use_color_value*
+** 説明: pass:none[色オプションの値を表示する際に使う色]
** タイプ: ブール
** 値: on, off
** デフォルト値: `+off+`
-* [[option_xfer.file.auto_rename]] *xfer.file.auto_rename*
-** 説明: pass:none[既に存在する場合、受信ファイルをリネームする (".1"、".2"、...を追加)]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+on+`
-
-* [[option_xfer.file.auto_resume]] *xfer.file.auto_resume*
-** 説明: pass:none[リモートホストとの接続が切れた場合、自動的にファイル転送をリジュームする]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+on+`
-
-* [[option_xfer.file.convert_spaces]] *xfer.file.convert_spaces*
-** 説明: pass:none[ファイルの送受信時にスペースをアンダースコアに変換]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+on+`
-
-* [[option_xfer.file.download_path]] *xfer.file.download_path*
-** 説明: pass:none[path for writing incoming files (path is evaluated, see function string_eval_path_home in plugin API reference)]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+"${weechat_data_dir}/xfer"+`
-
-* [[option_xfer.file.download_temporary_suffix]] *xfer.file.download_temporary_suffix*
-** 説明: pass:none[temporary filename suffix used during the transfer for a file received, it is removed after successful transfer; if empty string, no filename suffix is used during the transfer]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+".part"+`
-
-* [[option_xfer.file.upload_path]] *xfer.file.upload_path*
-** 説明: pass:none[path for reading files when sending (path is evaluated, see function string_eval_path_home in plugin API reference)]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+"~"+`
-
-* [[option_xfer.file.use_nick_in_filename]] *xfer.file.use_nick_in_filename*
-** 説明: pass:none[ファイルを受信する際にローカルファイル名のプレフィックスとしてリモートニックネームを使用]
+* [[option_fset.look.use_keys]] *fset.look.use_keys*
+** 説明: pass:none[fset バッファ内でオプションに対する操作を行う際に alt+X を使う; これを無効化する場合、操作時にコマンド入力が必要になります]
** タイプ: ブール
** 値: on, off
** デフォルト値: `+on+`
-* [[option_xfer.look.auto_open_buffer]] *xfer.look.auto_open_buffer*
-** 説明: pass:none[新しい xfer がリストに追加されたら xfer バッファを自動的に開く]
+* [[option_fset.look.use_mute]] *fset.look.use_mute*
+** 説明: pass:none[オプション設定時に /mute コマンドを使う]
** タイプ: ブール
** 値: on, off
-** デフォルト値: `+on+`
-
-* [[option_xfer.look.progress_bar_size]] *xfer.look.progress_bar_size*
-** 説明: pass:none[プログレスバーのサイズ、文字数単位 (0 の場合、プログレスバーを使わない)]
-** タイプ: 整数
-** 値: 0 .. 256
-** デフォルト値: `+20+`
-
-* [[option_xfer.look.pv_tags]] *xfer.look.pv_tags*
-** 説明: pass:none[プライベートメッセージに使われたタグのコンマ区切りリスト、例: "notify_message"、"notify_private"、"notify_highlight"]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+"notify_private"+`
-
-* [[option_xfer.network.blocksize]] *xfer.network.blocksize*
-** 説明: pass:none[送信パケットのブロックサイズ、バイト単位]
-** タイプ: 整数
-** 値: 1024 .. 102400
-** デフォルト値: `+65536+`
+** デフォルト値: `+off+`
+// end::fset_options[]
-* [[option_xfer.network.fast_send]] *xfer.network.fast_send*
-** 説明: pass:none[ファイル送信時に肯定応答を待たない]
+// tag::guile_options[]
+* [[option_guile.look.check_license]] *guile.look.check_license*
+** 説明: pass:none[スクリプトをロードしたら、ライセンスを確認してください: ライセンスがプラグインのライセンスと異なる場合、警告が表示されます]
** タイプ: ブール
** 値: on, off
-** デフォルト値: `+on+`
-
-* [[option_xfer.network.own_ip]] *xfer.network.own_ip*
-** 説明: pass:none[ファイル/チャットの送信に使う IP か DNS アドレス (空の場合、ローカルインターフェース IP を使う)]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+""+`
-
-* [[option_xfer.network.port_range]] *xfer.network.port_range*
-** 説明: pass:none[ファイル/チャットを送信する際に、与えられた範囲のポートを使う (NAT で便利) ことを強制 (構文: 単一のポートを指定する場合は 5000 等、ポート範囲の場合は 5000-5015 等、空は任意のポートを意味する、1024 以下のポート番号は root 以外使えないため、1024 以上のポート番号を使うことを推奨)]
-** タイプ: 文字列
-** 値: 未制約文字列
-** デフォルト値: `+""+`
+** デフォルト値: `+off+`
-* [[option_xfer.network.send_ack]] *xfer.network.send_ack*
-** 説明: pass:none[ファイル受信時に ack を送信; ack 送信を無効化すると、送信側が ack の受信を待つ (例えば送信側が xfer.network.fast_send を off に設定した WeeChat を使う) 場合にファイル転送が途中で停止される可能性があります; その一方で、ack 送信を無効化すると、送信側へすぐに ack を送信しなくとも途中停止を避けることができるかもしれません]
+* [[option_guile.look.eval_keep_context]] *guile.look.eval_keep_context*
+** 説明: pass:none[ソースコード評価 (スクリプトコマンドのオプション "eval" またはインフォ "%s_eval") の呼び出し間にコンテキストを保持します; スクリプトコードを評価する際は隠しスクリプトが使われます; このオプションを無効化した場合、評価毎に隠しスクリプトをアンロードします: メモリ使用量を節約できますが、遅いです]
** タイプ: ブール
** 値: on, off
** デフォルト値: `+on+`
-
-* [[option_xfer.network.speed_limit_recv]] *xfer.network.speed_limit_recv*
-** 説明: pass:none[ファイル受信の速度制限、1 秒あたりのキロバイトで指定 (0 は制限無し)]
-** タイプ: 整数
-** 値: 0 .. 2147483647
-** デフォルト値: `+0+`
-
-* [[option_xfer.network.speed_limit_send]] *xfer.network.speed_limit_send*
-** 説明: pass:none[ファイル送信の速度制限、1 秒あたりのキロバイトで指定 (0 は制限無し)]
-** タイプ: 整数
-** 値: 0 .. 2147483647
-** デフォルト値: `+0+`
-
-* [[option_xfer.network.timeout]] *xfer.network.timeout*
-** 説明: pass:none[xfer 要求のタイムアウト (秒単位)]
-** タイプ: 整数
-** 値: 5 .. 2147483647
-** デフォルト値: `+300+`
-// end::xfer_options[]
+// end::guile_options[]
// tag::irc_options[]
* [[option_irc.color.input_nick]] *irc.color.input_nick*
@@ -2985,6 +1601,192 @@
** デフォルト値: `+""+`
// end::irc_options[]
+// tag::javascript_options[]
+* [[option_javascript.look.check_license]] *javascript.look.check_license*
+** 説明: pass:none[スクリプトをロードしたら、ライセンスを確認してください: ライセンスがプラグインのライセンスと異なる場合、警告が表示されます]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+off+`
+
+* [[option_javascript.look.eval_keep_context]] *javascript.look.eval_keep_context*
+** 説明: pass:none[ソースコード評価 (スクリプトコマンドのオプション "eval" またはインフォ "%s_eval") の呼び出し間にコンテキストを保持します; スクリプトコードを評価する際は隠しスクリプトが使われます; このオプションを無効化した場合、評価毎に隠しスクリプトをアンロードします: メモリ使用量を節約できますが、遅いです]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+on+`
+// end::javascript_options[]
+
+// tag::logger_options[]
+* [[option_logger.color.backlog_end]] *logger.color.backlog_end*
+** 説明: pass:none[バックログの最終行の色]
+** タイプ: 色
+** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** デフォルト値: `+default+`
+
+* [[option_logger.color.backlog_line]] *logger.color.backlog_line*
+** 説明: pass:none[color for backlog lines, used only if the option logger.file.color_lines is off]
+** タイプ: 色
+** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** デフォルト値: `+default+`
+
+* [[option_logger.file.auto_log]] *logger.file.auto_log*
+** 説明: pass:none[automatically save content of buffers to files (unless a buffer disables log); if disabled, logging is disabled on all buffers]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+on+`
+
+* [[option_logger.file.color_lines]] *logger.file.color_lines*
+** 説明: pass:none[use ANSI color codes in lines written in log files and display backlog lines with these colors]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+off+`
+
+* [[option_logger.file.flush_delay]] *logger.file.flush_delay*
+** 説明: pass:none[ログファイルをフラッシュする間隔の秒数 (0 = 行が表示されたらすぐにログファイルに書き込み)]
+** タイプ: 整数
+** 値: 0 .. 3600
+** デフォルト値: `+120+`
+
+* [[option_logger.file.fsync]] *logger.file.fsync*
+** 説明: pass:none[バッファのフラッシュ後に fsync を使ってログデータをストレージデバイス上のログファイルと同期させる (man fsync を参照してください); fsync は遅いですが、fsync を使えばログファイル保存中の停電によるデータ損失を避けられます]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+off+`
+
+* [[option_logger.file.info_lines]] *logger.file.info_lines*
+** 説明: pass:none[バッファのログ保存の開始時と終了時にログファイルへ情報行を書き込む]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+off+`
+
+* [[option_logger.file.mask]] *logger.file.mask*
+** 説明: pass:none[ログファイルのデフォルトファイル名マスク (書式は "directory/to/file" または "file" で、最初に "/" が無ければ "path" オプションがファイルへの完全なパスを作るために使われます); ローカルバッファ変数を使うことも可能です (全てのバッファで定義されている変数以外を使わないでください。すなわち、$server や $channel などを使うべきではありません); 日付指定子を使うことも可能です (strftime の man を参照してください)]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+"$plugin.$name.weechatlog"+`
+
+* [[option_logger.file.name_lower_case]] *logger.file.name_lower_case*
+** 説明: pass:none[ログファイル名に小文字だけを使う]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+on+`
+
+* [[option_logger.file.nick_prefix]] *logger.file.nick_prefix*
+** 説明: pass:none[ニックネームの前に書くテキスト (メッセージプレフィックス)、例: "<"]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+""+`
+
+* [[option_logger.file.nick_suffix]] *logger.file.nick_suffix*
+** 説明: pass:none[ニックネームの後に書くテキスト (メッセージプレフィックス)、例: ">"]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+""+`
+
+* [[option_logger.file.path]] *logger.file.path*
+** 説明: pass:none[path for WeeChat log files; date specifiers are permitted (see man strftime) (path is evaluated, see function string_eval_path_home in plugin API reference)]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+"${weechat_data_dir}/logs"+`
+
+* [[option_logger.file.replacement_char]] *logger.file.replacement_char*
+** 説明: pass:none[マスクと一緒に使われたときのファイル名に含まれる特殊文字に対応する置換文字 (ディレクトリ区切りのようなもの)]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+"_"+`
+
+* [[option_logger.file.rotation_compression_level]] *logger.file.rotation_compression_level*
+** 説明: pass:none[compression level for rotated log files (with extension ".1", ".2", etc.), if option logger.file.rotation_compression_type is enabled: 1 = low compression / fast ... 100 = best compression / slow; the value is a percentage converted to 1-9 for gzip and 1-19 for zstd; the default value is recommended, it offers a good compromise between compression and speed]
+** タイプ: 整数
+** 値: 1 .. 100
+** デフォルト値: `+20+`
+
+* [[option_logger.file.rotation_compression_type]] *logger.file.rotation_compression_type*
+** 説明: pass:none[compression type for rotated log files; if set to "none", rotated log files are not compressed; WARNING: if rotation was enabled with another type of compression (or no compression), you must first unload the logger plugin, compress files with the new type (or decompress files), then change the option in logger.conf, then load the logger plugin]
+** タイプ: 整数
+** 値: none, gzip, zstd
+** デフォルト値: `+none+`
+
+* [[option_logger.file.rotation_size_max]] *logger.file.rotation_size_max*
+** 説明: pass:none[when this size is reached, a rotation of log files is performed: the existing rotated log files are renamed (.1 becomes .2, .2 becomes .3, etc.) and the current file is renamed with extension .1; an integer number with a suffix is allowed: b = bytes (default if no unit given), k = kilobytes, m = megabytes, g = gigabytes, t = terabytes; example: "2g" causes a rotation if the file size is > 2,000,000,000 bytes; if set to "0", no rotation is performed (unlimited log size); WARNING: before changing this option, you should first set the compression type via option logger.file.rotation_compression_type]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+"0"+`
+
+* [[option_logger.file.time_format]] *logger.file.time_format*
+** 説明: pass:none[ログファイルで使用するタイムスタンプ (日付/時間指定子は strftime の man 参照)]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+"%Y-%m-%d %H:%M:%S"+`
+
+* [[option_logger.look.backlog]] *logger.look.backlog*
+** 説明: pass:none[新規バッファの作成時にログファイルから表示する行の最大数 (0 = バックログ無し)]
+** タイプ: 整数
+** 値: 0 .. 2147483647
+** デフォルト値: `+20+`
+
+* [[option_logger.look.backlog_conditions]] *logger.look.backlog_conditions*
+** 説明: pass:none[バックログの表示条件 (注意: 内容は評価されません、/help eval を参照してください); 値が空の場合、すべてのバッファでバックログを表示します; 例えばプライベートバッファのみでバックログを表示するには、"${type} == private" のように値を設定します]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+""+`
+// end::logger_options[]
+
+// tag::lua_options[]
+* [[option_lua.look.check_license]] *lua.look.check_license*
+** 説明: pass:none[スクリプトをロードしたら、ライセンスを確認してください: ライセンスがプラグインのライセンスと異なる場合、警告が表示されます]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+off+`
+
+* [[option_lua.look.eval_keep_context]] *lua.look.eval_keep_context*
+** 説明: pass:none[ソースコード評価 (スクリプトコマンドのオプション "eval" またはインフォ "%s_eval") の呼び出し間にコンテキストを保持します; スクリプトコードを評価する際は隠しスクリプトが使われます; このオプションを無効化した場合、評価毎に隠しスクリプトをアンロードします: メモリ使用量を節約できますが、遅いです]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+on+`
+// end::lua_options[]
+
+// tag::perl_options[]
+* [[option_perl.look.check_license]] *perl.look.check_license*
+** 説明: pass:none[スクリプトをロードしたら、ライセンスを確認してください: ライセンスがプラグインのライセンスと異なる場合、警告が表示されます]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+off+`
+
+* [[option_perl.look.eval_keep_context]] *perl.look.eval_keep_context*
+** 説明: pass:none[ソースコード評価 (スクリプトコマンドのオプション "eval" またはインフォ "%s_eval") の呼び出し間にコンテキストを保持します; スクリプトコードを評価する際は隠しスクリプトが使われます; このオプションを無効化した場合、評価毎に隠しスクリプトをアンロードします: メモリ使用量を節約できますが、遅いです]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+on+`
+// end::perl_options[]
+
+// tag::php_options[]
+* [[option_php.look.check_license]] *php.look.check_license*
+** 説明: pass:none[スクリプトをロードしたら、ライセンスを確認してください: ライセンスがプラグインのライセンスと異なる場合、警告が表示されます]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+off+`
+
+* [[option_php.look.eval_keep_context]] *php.look.eval_keep_context*
+** 説明: pass:none[ソースコード評価 (スクリプトコマンドのオプション "eval" またはインフォ "%s_eval") の呼び出し間にコンテキストを保持します; スクリプトコードを評価する際は隠しスクリプトが使われます; このオプションを無効化した場合、評価毎に隠しスクリプトをアンロードします: メモリ使用量を節約できますが、遅いです]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+on+`
+// end::php_options[]
+
+// tag::python_options[]
+* [[option_python.look.check_license]] *python.look.check_license*
+** 説明: pass:none[スクリプトをロードしたら、ライセンスを確認してください: ライセンスがプラグインのライセンスと異なる場合、警告が表示されます]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+off+`
+
+* [[option_python.look.eval_keep_context]] *python.look.eval_keep_context*
+** 説明: pass:none[ソースコード評価 (スクリプトコマンドのオプション "eval" またはインフォ "%s_eval") の呼び出し間にコンテキストを保持します; スクリプトコードを評価する際は隠しスクリプトが使われます; このオプションを無効化した場合、評価毎に隠しスクリプトをアンロードします: メモリ使用量を節約できますが、遅いです]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+on+`
+// end::python_options[]
+
// tag::relay_options[]
* [[option_relay.color.client]] *relay.color.client*
** 説明: pass:none[クライアント説明用のテキスト色]
@@ -3197,90 +1999,6 @@
** デフォルト値: `+""+`
// end::relay_options[]
-// tag::guile_options[]
-* [[option_guile.look.check_license]] *guile.look.check_license*
-** 説明: pass:none[スクリプトをロードしたら、ライセンスを確認してください: ライセンスがプラグインのライセンスと異なる場合、警告が表示されます]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+off+`
-
-* [[option_guile.look.eval_keep_context]] *guile.look.eval_keep_context*
-** 説明: pass:none[ソースコード評価 (スクリプトコマンドのオプション "eval" またはインフォ "%s_eval") の呼び出し間にコンテキストを保持します; スクリプトコードを評価する際は隠しスクリプトが使われます; このオプションを無効化した場合、評価毎に隠しスクリプトをアンロードします: メモリ使用量を節約できますが、遅いです]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+on+`
-// end::guile_options[]
-
-// tag::javascript_options[]
-* [[option_javascript.look.check_license]] *javascript.look.check_license*
-** 説明: pass:none[スクリプトをロードしたら、ライセンスを確認してください: ライセンスがプラグインのライセンスと異なる場合、警告が表示されます]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+off+`
-
-* [[option_javascript.look.eval_keep_context]] *javascript.look.eval_keep_context*
-** 説明: pass:none[ソースコード評価 (スクリプトコマンドのオプション "eval" またはインフォ "%s_eval") の呼び出し間にコンテキストを保持します; スクリプトコードを評価する際は隠しスクリプトが使われます; このオプションを無効化した場合、評価毎に隠しスクリプトをアンロードします: メモリ使用量を節約できますが、遅いです]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+on+`
-// end::javascript_options[]
-
-// tag::lua_options[]
-* [[option_lua.look.check_license]] *lua.look.check_license*
-** 説明: pass:none[スクリプトをロードしたら、ライセンスを確認してください: ライセンスがプラグインのライセンスと異なる場合、警告が表示されます]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+off+`
-
-* [[option_lua.look.eval_keep_context]] *lua.look.eval_keep_context*
-** 説明: pass:none[ソースコード評価 (スクリプトコマンドのオプション "eval" またはインフォ "%s_eval") の呼び出し間にコンテキストを保持します; スクリプトコードを評価する際は隠しスクリプトが使われます; このオプションを無効化した場合、評価毎に隠しスクリプトをアンロードします: メモリ使用量を節約できますが、遅いです]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+on+`
-// end::lua_options[]
-
-// tag::perl_options[]
-* [[option_perl.look.check_license]] *perl.look.check_license*
-** 説明: pass:none[スクリプトをロードしたら、ライセンスを確認してください: ライセンスがプラグインのライセンスと異なる場合、警告が表示されます]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+off+`
-
-* [[option_perl.look.eval_keep_context]] *perl.look.eval_keep_context*
-** 説明: pass:none[ソースコード評価 (スクリプトコマンドのオプション "eval" またはインフォ "%s_eval") の呼び出し間にコンテキストを保持します; スクリプトコードを評価する際は隠しスクリプトが使われます; このオプションを無効化した場合、評価毎に隠しスクリプトをアンロードします: メモリ使用量を節約できますが、遅いです]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+on+`
-// end::perl_options[]
-
-// tag::php_options[]
-* [[option_php.look.check_license]] *php.look.check_license*
-** 説明: pass:none[スクリプトをロードしたら、ライセンスを確認してください: ライセンスがプラグインのライセンスと異なる場合、警告が表示されます]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+off+`
-
-* [[option_php.look.eval_keep_context]] *php.look.eval_keep_context*
-** 説明: pass:none[ソースコード評価 (スクリプトコマンドのオプション "eval" またはインフォ "%s_eval") の呼び出し間にコンテキストを保持します; スクリプトコードを評価する際は隠しスクリプトが使われます; このオプションを無効化した場合、評価毎に隠しスクリプトをアンロードします: メモリ使用量を節約できますが、遅いです]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+on+`
-// end::php_options[]
-
-// tag::python_options[]
-* [[option_python.look.check_license]] *python.look.check_license*
-** 説明: pass:none[スクリプトをロードしたら、ライセンスを確認してください: ライセンスがプラグインのライセンスと異なる場合、警告が表示されます]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+off+`
-
-* [[option_python.look.eval_keep_context]] *python.look.eval_keep_context*
-** 説明: pass:none[ソースコード評価 (スクリプトコマンドのオプション "eval" またはインフォ "%s_eval") の呼び出し間にコンテキストを保持します; スクリプトコードを評価する際は隠しスクリプトが使われます; このオプションを無効化した場合、評価毎に隠しスクリプトをアンロードします: メモリ使用量を節約できますが、遅いです]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+on+`
-// end::python_options[]
-
// tag::ruby_options[]
* [[option_ruby.look.check_license]] *ruby.look.check_license*
** 説明: pass:none[スクリプトをロードしたら、ライセンスを確認してください: ライセンスがプラグインのライセンスと異なる場合、警告が表示されます]
@@ -3295,20 +2013,6 @@
** デフォルト値: `+on+`
// end::ruby_options[]
-// tag::tcl_options[]
-* [[option_tcl.look.check_license]] *tcl.look.check_license*
-** 説明: pass:none[スクリプトをロードしたら、ライセンスを確認してください: ライセンスがプラグインのライセンスと異なる場合、警告が表示されます]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+off+`
-
-* [[option_tcl.look.eval_keep_context]] *tcl.look.eval_keep_context*
-** 説明: pass:none[ソースコード評価 (スクリプトコマンドのオプション "eval" またはインフォ "%s_eval") の呼び出し間にコンテキストを保持します; スクリプトコードを評価する際は隠しスクリプトが使われます; このオプションを無効化した場合、評価毎に隠しスクリプトをアンロードします: メモリ使用量を節約できますが、遅いです]
-** タイプ: ブール
-** 値: on, off
-** デフォルト値: `+on+`
-// end::tcl_options[]
-
// tag::script_options[]
* [[option_script.color.status_autoloaded]] *script.color.status_autoloaded*
** 説明: pass:none["自動ロード" 状態 ("a") に対応する色]
@@ -3557,484 +2261,1780 @@
** デフォルト値: `+"https://weechat.org/files/plugins.xml.gz"+`
// end::script_options[]
-// tag::fset_options[]
-* [[option_fset.color.default_value]] *fset.color.default_value*
-** 説明: pass:none[デフォルト値を意味するテキスト色]
-** タイプ: 色
-** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+default+`
+// tag::sec_options[]
+* [[option_sec.crypt.cipher]] *sec.crypt.cipher*
+** 説明: pass:none[データの暗号化を行う暗号鍵 (アルゴリズムの後ろに書かれた数は鍵のビット数)]
+** タイプ: 整数
+** 値: aes128, aes192, aes256
+** デフォルト値: `+aes256+`
-* [[option_fset.color.default_value_selected]] *fset.color.default_value_selected*
-** 説明: pass:none[デフォルト値を意味するテキスト色 (選択行に表示される場合)]
+* [[option_sec.crypt.hash_algo]] *sec.crypt.hash_algo*
+** 説明: pass:none[復号化データをチェックするハッシュアルゴリズム]
+** タイプ: 整数
+** 値: sha224, sha256, sha384, sha512
+** デフォルト値: `+sha256+`
+
+* [[option_sec.crypt.passphrase_command]] *sec.crypt.passphrase_command*
+** 説明: pass:none[read the passphrase from the output of this system command (only the first line is used and it must not contain any extra character); this option is used only when reading file sec.conf and if the environment variable "WEECHAT_PASSPHRASE" is not set (the environment variable has higher priority); example with password-store: "/usr/bin/pass show weechat/passphrase"]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+""+`
+
+* [[option_sec.crypt.salt]] *sec.crypt.salt*
+** 説明: pass:none[暗号化に利用する鍵を生成する場合は salt を利用してください (安全措置を厳重にするため); 有効化した場合、sec.conf ファイルに含まれる暗号化されたデータの内容はファイル書き込みの度に違うものになります; sec.conf ファイルをバージョン管理システムで管理している場合、常に同じ内容が書き込まれるようにこのオプションを無効化してください]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+on+`
+// end::sec_options[]
+
+// tag::spell_options[]
+* [[option_spell.check.commands]] *spell.check.commands*
+** 説明: pass:none[スペルチェックを有効化するコマンドのコンマ区切りリスト (これ以外のコマンドではスペルチェックは無効)]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+"away,command,cycle,kick,kickban,me,msg,notice,part,query,quit,topic"+`
+
+* [[option_spell.check.default_dict]] *spell.check.default_dict*
+** 説明: pass:none[バッファに辞書が定義されていない場合に使用されるデフォルト辞書 (または辞書のコンマ区切りリスト) (空のままであれば明示的に有効化されたバッファを除いてスペルチェックを利用しない)]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+""+`
+
+* [[option_spell.check.during_search]] *spell.check.during_search*
+** 説明: pass:none[バッファ内のテキスト検索中に単語チェックを行う]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+off+`
+
+* [[option_spell.check.enabled]] *spell.check.enabled*
+** 説明: pass:none[コマンドラインでスペルチェックを利用する]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+off+`
+
+* [[option_spell.check.real_time]] *spell.check.real_time*
+** 説明: pass:none[単語のリアルタイムスペルチェック (遅い、デフォルトでは無効: 単語は区切りの後にだけチェックされる)]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+off+`
+
+* [[option_spell.check.suggestions]] *spell.check.suggestions*
+** 説明: pass:none[バッファ内の各辞書セットに対してバー要素 "spell_suggest" に表示する提案の数 (-1 = サジェスト機能を無効、0 = 全ての言語を使って全てのサジェスト結果を表示)]
+** タイプ: 整数
+** 値: -1 .. 2147483647
+** デフォルト値: `+-1+`
+
+* [[option_spell.check.word_min_length]] *spell.check.word_min_length*
+** 説明: pass:none[スペルチェックを行う単語長の最小値 (0 の場合は全ての単語をチェック)]
+** タイプ: 整数
+** 値: 0 .. 2147483647
+** デフォルト値: `+2+`
+
+* [[option_spell.color.misspelled]] *spell.color.misspelled*
+** 説明: pass:none[スペルミスのある単語に付ける色 (入力バー)]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+white+`
+** デフォルト値: `+lightred+`
-* [[option_fset.color.description]] *fset.color.description*
-** 説明: pass:none[オプション説明文のテキスト色]
+* [[option_spell.color.suggestion]] *spell.color.suggestion*
+** 説明: pass:none[バー要素 "spell_suggest" 内でスペルミスのある単語に対する修正候補に付ける色]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** デフォルト値: `+default+`
-* [[option_fset.color.description_selected]] *fset.color.description_selected*
-** 説明: pass:none[オプション説明文のテキスト色 (選択行に表示される場合)]
+* [[option_spell.color.suggestion_delimiter_dict]] *spell.color.suggestion_delimiter_dict*
+** 説明: pass:none[バー要素 "spell_suggest" 内で 2 つの辞書間の区切り文字に付ける色]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+white+`
+** デフォルト値: `+cyan+`
-* [[option_fset.color.file]] *fset.color.file*
-** 説明: pass:none[ファイルのテキスト色]
+* [[option_spell.color.suggestion_delimiter_word]] *spell.color.suggestion_delimiter_word*
+** 説明: pass:none[バー要素 "aspell_suggest" 内で 2 つの単語間の区切り文字に付ける色]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+default+`
+** デフォルト値: `+cyan+`
-* [[option_fset.color.file_changed]] *fset.color.file_changed*
-** 説明: pass:none[ファイルのテキスト色 (値が変更されている場合)]
+* [[option_spell.look.suggestion_delimiter_dict]] *spell.look.suggestion_delimiter_dict*
+** 説明: pass:none[バー要素 "spell_suggest" 内の 2 つの辞書間の区切り文字]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+" / "+`
+
+* [[option_spell.look.suggestion_delimiter_word]] *spell.look.suggestion_delimiter_word*
+** 説明: pass:none[バー要素 "spell_suggest" 内の 2 つの単語間の区切り文字]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+","+`
+// end::spell_options[]
+
+// tag::tcl_options[]
+* [[option_tcl.look.check_license]] *tcl.look.check_license*
+** 説明: pass:none[スクリプトをロードしたら、ライセンスを確認してください: ライセンスがプラグインのライセンスと異なる場合、警告が表示されます]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+off+`
+
+* [[option_tcl.look.eval_keep_context]] *tcl.look.eval_keep_context*
+** 説明: pass:none[ソースコード評価 (スクリプトコマンドのオプション "eval" またはインフォ "%s_eval") の呼び出し間にコンテキストを保持します; スクリプトコードを評価する際は隠しスクリプトが使われます; このオプションを無効化した場合、評価毎に隠しスクリプトをアンロードします: メモリ使用量を節約できますが、遅いです]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+on+`
+// end::tcl_options[]
+
+// tag::trigger_options[]
+* [[option_trigger.color.flag_command]] *trigger.color.flag_command*
+** 説明: pass:none[コマンドフラグに対するテキスト色 (/trigger list 用)]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+brown+`
+** デフォルト値: `+lightgreen+`
-* [[option_fset.color.file_changed_selected]] *fset.color.file_changed_selected*
-** 説明: pass:none[ファイルのテキスト色 (値が変更されており、選択行に表示される場合)]
+* [[option_trigger.color.flag_conditions]] *trigger.color.flag_conditions*
+** 説明: pass:none[状態フラグに対するテキスト色 (/trigger list 用)]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** デフォルト値: `+yellow+`
-* [[option_fset.color.file_selected]] *fset.color.file_selected*
-** 説明: pass:none[ファイルのテキスト色 (選択行に表示される場合)]
+* [[option_trigger.color.flag_post_action]] *trigger.color.flag_post_action*
+** 説明: pass:none[実行後処遇フラグに対するテキスト色 (/trigger list 用)]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+white+`
+** デフォルト値: `+lightblue+`
-* [[option_fset.color.help_default_value]] *fset.color.help_default_value*
-** 説明: pass:none[デフォルト値を意味する色 (ヘルプバー内に表示される場合)]
+* [[option_trigger.color.flag_regex]] *trigger.color.flag_regex*
+** 説明: pass:none[正規表現フラグに対するテキスト色 (/trigger list 用)]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+white+`
+** デフォルト値: `+lightcyan+`
-* [[option_fset.color.help_description]] *fset.color.help_description*
-** 説明: pass:none[オプション説明文のテキスト色 (ヘルプバー内に表示される場合)]
+* [[option_trigger.color.flag_return_code]] *trigger.color.flag_return_code*
+** 説明: pass:none[リターンコードに対するテキスト色 (/trigger list 用)]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+default+`
+** デフォルト値: `+lightmagenta+`
-* [[option_fset.color.help_name]] *fset.color.help_name*
-** 説明: pass:none[オプション名のテキスト色 (ヘルプバー内に表示される場合)]
+* [[option_trigger.color.identifier]] *trigger.color.identifier*
+** 説明: pass:none[text color for trigger context identifier in monitor buffer]
+** タイプ: 色
+** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** デフォルト値: `+cyan+`
+
+* [[option_trigger.color.regex]] *trigger.color.regex*
+** 説明: pass:none[正規表現に対するテキスト色]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** デフォルト値: `+white+`
-* [[option_fset.color.help_quotes]] *fset.color.help_quotes*
-** 説明: pass:none[文字列値を囲む引用符のテキスト色]
+* [[option_trigger.color.replace]] *trigger.color.replace*
+** 説明: pass:none[置換テキストに対するテキスト色 (正規表現用)]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+darkgray+`
+** デフォルト値: `+cyan+`
-* [[option_fset.color.help_values]] *fset.color.help_values*
-** 説明: pass:none[利用可能な値のテキスト色]
+* [[option_trigger.color.trigger]] *trigger.color.trigger*
+** 説明: pass:none[トリガ名に対するテキスト色]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+default+`
+** デフォルト値: `+green+`
-* [[option_fset.color.index]] *fset.color.index*
-** 説明: pass:none[オプションインデックスのテキスト色]
+* [[option_trigger.color.trigger_disabled]] *trigger.color.trigger_disabled*
+** 説明: pass:none[無効化されたトリガの名前に対するテキスト色]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+cyan+`
+** デフォルト値: `+red+`
-* [[option_fset.color.index_selected]] *fset.color.index_selected*
-** 説明: pass:none[オプションインデックスのテキスト色 (選択行に表示される場合)]
+* [[option_trigger.look.enabled]] *trigger.look.enabled*
+** 説明: pass:none[トリガサポートの有効化]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+on+`
+
+* [[option_trigger.look.monitor_strip_colors]] *trigger.look.monitor_strip_colors*
+** 説明: pass:none[モニタバッファに表示されるハッシュテーブルの値から色を削除]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+off+`
+// end::trigger_options[]
+
+// tag::typing_options[]
+* [[option_typing.look.delay_purge_paused]] *typing.look.delay_purge_paused*
+** 説明: pass:none[number of seconds after paused status has been set: if reached, the typing status is removed]
+** タイプ: 整数
+** 値: 1 .. 2147483647
+** デフォルト値: `+30+`
+
+* [[option_typing.look.delay_purge_typing]] *typing.look.delay_purge_typing*
+** 説明: pass:none[number of seconds after typing status has been set: if reached, the typing status is removed]
+** タイプ: 整数
+** 値: 1 .. 2147483647
+** デフォルト値: `+6+`
+
+* [[option_typing.look.delay_set_paused]] *typing.look.delay_set_paused*
+** 説明: pass:none[number of seconds after typing last char: if reached, the typing status becomes "paused" and no more typing signals are sent]
+** タイプ: 整数
+** 値: 1 .. 2147483647
+** デフォルト値: `+10+`
+
+* [[option_typing.look.enabled_nicks]] *typing.look.enabled_nicks*
+** 説明: pass:none[typing enabled for other nicks (display typing info for nicks typing in the current buffer)]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+off+`
+
+* [[option_typing.look.enabled_self]] *typing.look.enabled_self*
+** 説明: pass:none[typing enabled for self messages (send typing info to other users)]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+off+`
+
+* [[option_typing.look.input_min_chars]] *typing.look.input_min_chars*
+** 説明: pass:none[min number of chars in message to trigger send of typing signals]
+** タイプ: 整数
+** 値: 1 .. 2147483647
+** デフォルト値: `+4+`
+
+* [[option_typing.look.item_max_length]] *typing.look.item_max_length*
+** 説明: pass:none[max number of chars displayed in the bar item "typing" (0 = do not truncate content)]
+** タイプ: 整数
+** 値: 0 .. 2147483647
+** デフォルト値: `+0+`
+// end::typing_options[]
+
+// tag::weechat_options[]
+* [[option_weechat.color.bar_more]] *weechat.color.bar_more*
+** 説明: pass:none[バーをスクロールする際の "+" のテキスト色]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+lightcyan+`
+** デフォルト値: `+lightmagenta+`
-* [[option_fset.color.line_marked_bg1]] *fset.color.line_marked_bg1*
-** 説明: pass:none[マーク済み行の背景色 (1 番目の書式と一緒に使われます、fset.format.option1 を参照してください)]
+* [[option_weechat.color.chat]] *weechat.color.chat*
+** 説明: pass:none[チャットのテキスト色]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** デフォルト値: `+default+`
-* [[option_fset.color.line_marked_bg2]] *fset.color.line_marked_bg2*
-** 説明: pass:none[マーク済み行の背景色 (2 番目の書式と一緒に使われます、fset.format.option2 を参照してください)]
+* [[option_weechat.color.chat_bg]] *weechat.color.chat_bg*
+** 説明: pass:none[チャットの背景色]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** デフォルト値: `+default+`
-* [[option_fset.color.line_selected_bg1]] *fset.color.line_selected_bg1*
-** 説明: pass:none[選択行の背景色 (1 番目の書式と一緒に使われます、fset.format.option1 を参照してください)]
+* [[option_weechat.color.chat_buffer]] *weechat.color.chat_buffer*
+** 説明: pass:none[バッファ名のテキスト色]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+blue+`
+** デフォルト値: `+white+`
-* [[option_fset.color.line_selected_bg2]] *fset.color.line_selected_bg2*
-** 説明: pass:none[選択行の背景色 (2 番目の書式と一緒に使われます、fset.format.option2 を参照してください)]
+* [[option_weechat.color.chat_channel]] *weechat.color.chat_channel*
+** 説明: pass:none[チャンネル名のテキスト色]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+red+`
+** デフォルト値: `+white+`
-* [[option_fset.color.marked]] *fset.color.marked*
-** 説明: pass:none[マークのテキスト色]
+* [[option_weechat.color.chat_day_change]] *weechat.color.chat_day_change*
+** 説明: pass:none[日付が変わった時に表示されるメッセージのテキスト色]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+brown+`
+** デフォルト値: `+cyan+`
-* [[option_fset.color.marked_selected]] *fset.color.marked_selected*
-** 説明: pass:none[マークのテキスト色 (選択行に表示される場合)]
+* [[option_weechat.color.chat_delimiters]] *weechat.color.chat_delimiters*
+** 説明: pass:none[区切りのテキスト色]
+** タイプ: 色
+** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** デフォルト値: `+green+`
+
+* [[option_weechat.color.chat_highlight]] *weechat.color.chat_highlight*
+** 説明: pass:none[ハイライトされたプレフィックスのテキスト色]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** デフォルト値: `+yellow+`
-* [[option_fset.color.max]] *fset.color.max*
-** 説明: pass:none[最大値を意味するテキスト色]
+* [[option_weechat.color.chat_highlight_bg]] *weechat.color.chat_highlight_bg*
+** 説明: pass:none[ハイライトされたプレフィックスの背景色]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+default+`
+** デフォルト値: `+magenta+`
-* [[option_fset.color.max_selected]] *fset.color.max_selected*
-** 説明: pass:none[最大値を意味するテキスト色 (選択行に表示される場合)]
+* [[option_weechat.color.chat_host]] *weechat.color.chat_host*
+** 説明: pass:none[ホスト名のテキスト色]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+white+`
+** デフォルト値: `+cyan+`
-* [[option_fset.color.min]] *fset.color.min*
-** 説明: pass:none[最小値を意味するテキスト色]
+* [[option_weechat.color.chat_inactive_buffer]] *weechat.color.chat_inactive_buffer*
+** 説明: pass:none[行へのフォーカスがなくなった場合の (バッファが他のバッファとマージされていて選択されていない場合の) のチャットのテキスト色]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** デフォルト値: `+default+`
-* [[option_fset.color.min_selected]] *fset.color.min_selected*
-** 説明: pass:none[最小値を意味するテキスト色 (選択行に表示される場合)]
+* [[option_weechat.color.chat_inactive_window]] *weechat.color.chat_inactive_window*
+** 説明: pass:none[ウィンドウへのフォーカスがなくなった場合 (選択されていないウィンドウ) のチャットのテキスト色]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+white+`
+** デフォルト値: `+default+`
-* [[option_fset.color.name]] *fset.color.name*
-** 説明: pass:none[完全なオプション名のテキスト色]
+* [[option_weechat.color.chat_nick]] *weechat.color.chat_nick*
+** 説明: pass:none[チャットウィンドウのニックネームのテキスト色: 一部のサーバメッセージおよびニックネーム色が見つからない場合の代替色として使われます; 多くの場合、ニックネーム色を指定するには weechat.color.chat_nick_colors オプションを使うと良いでしょう]
+** タイプ: 色
+** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** デフォルト値: `+lightcyan+`
+
+* [[option_weechat.color.chat_nick_colors]] *weechat.color.chat_nick_colors*
+** 説明: pass:none[ニックネームのテキスト色 (コンマ区切りの色リスト、背景色は以下の書式で指定: "fg:bg"、例: "lightred:blue")]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+"cyan,magenta,green,brown,lightblue,default,lightcyan,lightmagenta,lightgreen,blue"+`
+
+* [[option_weechat.color.chat_nick_offline]] *weechat.color.chat_nick_offline*
+** 説明: pass:none[オフラインのニックネームのテキスト色 (ニックネームリストにも表示されない); この色はオプション weechat.look.color_nick_offline が有効化されている場合にのみ使われます]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** デフォルト値: `+default+`
-* [[option_fset.color.name_changed]] *fset.color.name_changed*
-** 説明: pass:none[完全なオプション名のテキスト色 (値が変更されている場合)]
+* [[option_weechat.color.chat_nick_offline_highlight]] *weechat.color.chat_nick_offline_highlight*
+** 説明: pass:none[ハイライトされたオフラインのニックネームのテキスト色; この色はオプション weechat.look.color_nick_offline が有効化されている場合にのみ使われます]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+brown+`
+** デフォルト値: `+default+`
-* [[option_fset.color.name_changed_selected]] *fset.color.name_changed_selected*
-** 説明: pass:none[完全なオプション名のテキスト色 (値が変更されており、選択行に表示される場合)]
+* [[option_weechat.color.chat_nick_offline_highlight_bg]] *weechat.color.chat_nick_offline_highlight_bg*
+** 説明: pass:none[ハイライトされたオフラインのニックネームの背景色; この色はオプション weechat.look.color_nick_offline が有効化されている場合にのみ使われます]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+yellow+`
+** デフォルト値: `+blue+`
-* [[option_fset.color.name_selected]] *fset.color.name_selected*
-** 説明: pass:none[完全なオプション名のテキスト色 (選択行に表示される場合)]
+* [[option_weechat.color.chat_nick_other]] *weechat.color.chat_nick_other*
+** 説明: pass:none[プライベートバッファ内の他のニックネームのテキスト色]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+white+`
+** デフォルト値: `+cyan+`
-* [[option_fset.color.option]] *fset.color.option*
-** 説明: pass:none[オプション名のテキスト色]
+* [[option_weechat.color.chat_nick_prefix]] *weechat.color.chat_nick_prefix*
+** 説明: pass:none[ニックネームプレフィックスの色 (プレフィックス中のニックネームの前に表示される文字列)]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+default+`
+** デフォルト値: `+green+`
-* [[option_fset.color.option_changed]] *fset.color.option_changed*
-** 説明: pass:none[オプション名のテキスト色 (値が変更されている場合)]
+* [[option_weechat.color.chat_nick_self]] *weechat.color.chat_nick_self*
+** 説明: pass:none[チャットウィンドウ内のローカルニックネームのテキスト色]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+brown+`
+** デフォルト値: `+white+`
-* [[option_fset.color.option_changed_selected]] *fset.color.option_changed_selected*
-** 説明: pass:none[オプション名のテキスト色 (値が変更されており、選択行に表示される場合)]
+* [[option_weechat.color.chat_nick_suffix]] *weechat.color.chat_nick_suffix*
+** 説明: pass:none[ニックネームサフィックスの色 (プレフィックス中のニックネームの後に表示される文字列)]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+yellow+`
+** デフォルト値: `+green+`
-* [[option_fset.color.option_selected]] *fset.color.option_selected*
-** 説明: pass:none[オプション名のテキスト色 (選択行に表示される場合)]
+* [[option_weechat.color.chat_prefix_action]] *weechat.color.chat_prefix_action*
+** 説明: pass:none[アクションプレフィックスのテキスト色]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** デフォルト値: `+white+`
-* [[option_fset.color.parent_name]] *fset.color.parent_name*
-** 説明: pass:none[親オプション名のテキスト色]
+* [[option_weechat.color.chat_prefix_buffer]] *weechat.color.chat_prefix_buffer*
+** 説明: pass:none[バッファ名のテキスト色 (多くのバッファが同じ番号を持つものにマージされている場合は、プレフィックスの前)]
+** タイプ: 色
+** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** デフォルト値: `+brown+`
+
+* [[option_weechat.color.chat_prefix_buffer_inactive_buffer]] *weechat.color.chat_prefix_buffer_inactive_buffer*
+** 説明: pass:none[非アクティブバッファ名のテキスト色 (多くのバッファが同じ番号を持つものにマージされ、バッファが選択されていない場合は、プレフィックスの前)]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** デフォルト値: `+default+`
-* [[option_fset.color.parent_name_selected]] *fset.color.parent_name_selected*
-** 説明: pass:none[親オプション名のテキスト色 (選択行に表示される場合)]
+* [[option_weechat.color.chat_prefix_error]] *weechat.color.chat_prefix_error*
+** 説明: pass:none[エラープレフィックスのテキスト色]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+white+`
+** デフォルト値: `+yellow+`
-* [[option_fset.color.parent_value]] *fset.color.parent_value*
-** 説明: pass:none[親オプション値のテキスト色]
+* [[option_weechat.color.chat_prefix_join]] *weechat.color.chat_prefix_join*
+** 説明: pass:none[join プレフィックスのテキスト色]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+cyan+`
+** デフォルト値: `+lightgreen+`
-* [[option_fset.color.parent_value_selected]] *fset.color.parent_value_selected*
-** 説明: pass:none[親オプション値のテキスト色 (選択行に表示される場合)]
+* [[option_weechat.color.chat_prefix_more]] *weechat.color.chat_prefix_more*
+** 説明: pass:none[プレフィックスが長すぎる場合の "+" のテキスト色]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+lightcyan+`
+** デフォルト値: `+lightmagenta+`
-* [[option_fset.color.quotes]] *fset.color.quotes*
-** 説明: pass:none[文字列値を囲む引用符のテキスト色]
+* [[option_weechat.color.chat_prefix_network]] *weechat.color.chat_prefix_network*
+** 説明: pass:none[ネットワークプレフィックスのテキスト色]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+darkgray+`
+** デフォルト値: `+magenta+`
-* [[option_fset.color.quotes_changed]] *fset.color.quotes_changed*
-** 説明: pass:none[文字列値を囲む引用符のテキスト色 (値が変更されている場合)]
+* [[option_weechat.color.chat_prefix_quit]] *weechat.color.chat_prefix_quit*
+** 説明: pass:none[quit プレフィックスのテキスト色]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+default+`
+** デフォルト値: `+lightred+`
-* [[option_fset.color.quotes_changed_selected]] *fset.color.quotes_changed_selected*
-** 説明: pass:none[文字列値を囲む引用符のテキスト色 (値が変更されており、選択行に表示される場合)]
+* [[option_weechat.color.chat_prefix_suffix]] *weechat.color.chat_prefix_suffix*
+** 説明: pass:none[サフィックスのテキスト色 (プレフィックスの後ろ)]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+white+`
+** デフォルト値: `+green+`
-* [[option_fset.color.quotes_selected]] *fset.color.quotes_selected*
-** 説明: pass:none[文字列値を囲む引用符のテキスト色 (選択行に表示される場合)]
+* [[option_weechat.color.chat_read_marker]] *weechat.color.chat_read_marker*
+** 説明: pass:none[未読データマーカーのテキスト色]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+default+`
+** デフォルト値: `+magenta+`
-* [[option_fset.color.section]] *fset.color.section*
-** 説明: pass:none[セクション名のテキスト色]
+* [[option_weechat.color.chat_read_marker_bg]] *weechat.color.chat_read_marker_bg*
+** 説明: pass:none[未読データマーカーの背景色]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** デフォルト値: `+default+`
-* [[option_fset.color.section_changed]] *fset.color.section_changed*
-** 説明: pass:none[セクション名のテキスト色 (値が変更されている場合)]
+* [[option_weechat.color.chat_server]] *weechat.color.chat_server*
+** 説明: pass:none[サーバ名のテキスト色]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** デフォルト値: `+brown+`
-* [[option_fset.color.section_changed_selected]] *fset.color.section_changed_selected*
-** 説明: pass:none[セクション名のテキスト色 (値が変更されており、選択行に表示される場合)]
+* [[option_weechat.color.chat_tags]] *weechat.color.chat_tags*
+** 説明: pass:none[メッセージの後ろのタグのテキスト色 (/debug tags コマンドで表示)]
+** タイプ: 色
+** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** デフォルト値: `+red+`
+
+* [[option_weechat.color.chat_text_found]] *weechat.color.chat_text_found*
+** 説明: pass:none[テキスト検索にヒットした行のマーカーのテキスト色]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** デフォルト値: `+yellow+`
-* [[option_fset.color.section_selected]] *fset.color.section_selected*
-** 説明: pass:none[セクション名のテキスト色 (選択行に表示される場合)]
+* [[option_weechat.color.chat_text_found_bg]] *weechat.color.chat_text_found_bg*
+** 説明: pass:none[テキスト検索にヒットした行のマーカーの背景色]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+white+`
+** デフォルト値: `+lightmagenta+`
-* [[option_fset.color.string_values]] *fset.color.string_values*
-** 説明: pass:none[文字列値のテキスト色]
+* [[option_weechat.color.chat_time]] *weechat.color.chat_time*
+** 説明: pass:none[チャットウィンドウ内の時間のテキスト色]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** デフォルト値: `+default+`
-* [[option_fset.color.string_values_selected]] *fset.color.string_values_selected*
-** 説明: pass:none[文字列値のテキスト色 (選択行に表示される場合)]
+* [[option_weechat.color.chat_time_delimiters]] *weechat.color.chat_time_delimiters*
+** 説明: pass:none[時間区切りのテキスト色]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+white+`
+** デフォルト値: `+brown+`
-* [[option_fset.color.title_count_options]] *fset.color.title_count_options*
-** 説明: pass:none[現在のフィルタにマッチするオプション数のテキスト色 (バッファタイトル)]
+* [[option_weechat.color.chat_value]] *weechat.color.chat_value*
+** 説明: pass:none[値のテキスト色]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** デフォルト値: `+cyan+`
-* [[option_fset.color.title_current_option]] *fset.color.title_current_option*
-** 説明: pass:none[現在のオプション番号のテキスト色 (バッファタイトル)]
+* [[option_weechat.color.chat_value_null]] *weechat.color.chat_value_null*
+** 説明: pass:none[値が null (未定義) の場合のテキスト色]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+lightcyan+`
+** デフォルト値: `+blue+`
-* [[option_fset.color.title_filter]] *fset.color.title_filter*
-** 説明: pass:none[フィルタのテキスト色 (バッファタイトル)]
+* [[option_weechat.color.emphasized]] *weechat.color.emphasized*
+** 説明: pass:none[強調テキストの色 (テキスト検索する際など); このオプションは weechat.look.emphasized_attributes オプションが空文字列 (デフォルト値) の場合のみ使われます]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** デフォルト値: `+yellow+`
-* [[option_fset.color.title_marked_options]] *fset.color.title_marked_options*
-** 説明: pass:none[マーク済みオプション数のテキスト色 (バッファタイトル)]
+* [[option_weechat.color.emphasized_bg]] *weechat.color.emphasized_bg*
+** 説明: pass:none[強調テキストの背景色 (テキスト検索する際など); このオプションは weechat.look.emphasized_attributes オプションが空文字列 (デフォルト値) の場合のみ使われます]
+** タイプ: 色
+** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** デフォルト値: `+magenta+`
+
+* [[option_weechat.color.input_actions]] *weechat.color.input_actions*
+** 説明: pass:none[入力がアクションの場合のテキスト色]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** デフォルト値: `+lightgreen+`
-* [[option_fset.color.title_sort]] *fset.color.title_sort*
-** 説明: pass:none[ソート規則のテキスト色 (バッファタイトル)]
+* [[option_weechat.color.input_text_not_found]] *weechat.color.input_text_not_found*
+** 説明: pass:none[入力行のテキスト検索に失敗した場合のテキスト色]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+white+`
+** デフォルト値: `+red+`
-* [[option_fset.color.type]] *fset.color.type*
-** 説明: pass:none[型のテキスト色]
+* [[option_weechat.color.item_away]] *weechat.color.item_away*
+** 説明: pass:none[離席要素のテキスト色]
+** タイプ: 色
+** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** デフォルト値: `+yellow+`
+
+* [[option_weechat.color.nicklist_away]] *weechat.color.nicklist_away*
+** 説明: pass:none[離席状態のニックネームのテキスト色]
+** タイプ: 色
+** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** デフォルト値: `+cyan+`
+
+* [[option_weechat.color.nicklist_group]] *weechat.color.nicklist_group*
+** 説明: pass:none[ニックネームリスト内のグループのテキスト色]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** デフォルト値: `+green+`
-* [[option_fset.color.type_selected]] *fset.color.type_selected*
-** 説明: pass:none[型のテキスト色 (選択行に表示される場合)]
+* [[option_weechat.color.separator]] *weechat.color.separator*
+** 説明: pass:none[ウィンドウセパレータ (分割時) とバーセパレータ (ニックネームリスト等) の色]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+lightgreen+`
+** デフォルト値: `+blue+`
-* [[option_fset.color.unmarked]] *fset.color.unmarked*
-** 説明: pass:none[マーク標識のテキスト色 (マークが付けられていない場合)]
+* [[option_weechat.color.status_count_highlight]] *weechat.color.status_count_highlight*
+** 説明: pass:none[ホットリスト内のハイライトメッセージ数のテキスト色 (ステータスバー)]
+** タイプ: 色
+** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** デフォルト値: `+magenta+`
+
+* [[option_weechat.color.status_count_msg]] *weechat.color.status_count_msg*
+** 説明: pass:none[ホットリスト内のメッセージ数のテキスト色 (ステータスバー)]
+** タイプ: 色
+** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** デフォルト値: `+brown+`
+
+* [[option_weechat.color.status_count_other]] *weechat.color.status_count_other*
+** 説明: pass:none[ホットリスト内のその他のメッセージ数のテキスト色 (ステータスバー)]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** デフォルト値: `+default+`
-* [[option_fset.color.unmarked_selected]] *fset.color.unmarked_selected*
-** 説明: pass:none[マーク標識のテキスト色 (マークが付けられておらず、選択行に表示される場合)]
+* [[option_weechat.color.status_count_private]] *weechat.color.status_count_private*
+** 説明: pass:none[ホットリスト内のプライベートメッセージ数のテキスト色 (ステータスバー)]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+white+`
+** デフォルト値: `+green+`
-* [[option_fset.color.value]] *fset.color.value*
-** 説明: pass:none[値のテキスト色]
+* [[option_weechat.color.status_data_highlight]] *weechat.color.status_data_highlight*
+** 説明: pass:none[ハイライトメッセージを受け取ったバッファのテキスト色 (ステータスバー)]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+cyan+`
+** デフォルト値: `+lightmagenta+`
-* [[option_fset.color.value_changed]] *fset.color.value_changed*
-** 説明: pass:none[値のテキスト色 (値がデフォルト値と同じではない場合)]
+* [[option_weechat.color.status_data_msg]] *weechat.color.status_data_msg*
+** 説明: pass:none[新しいメッセージを受け取ったバッファのテキスト色 (ステータスバー)]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+brown+`
+** デフォルト値: `+yellow+`
-* [[option_fset.color.value_changed_selected]] *fset.color.value_changed_selected*
-** 説明: pass:none[値のテキスト色 (値がデフォルト値と同じではなく、選択行に表示される場合)]
+* [[option_weechat.color.status_data_other]] *weechat.color.status_data_other*
+** 説明: pass:none[新しいデータ (メッセージ以外) を受け取ったバッファのテキスト色 (ステータスバー)]
+** タイプ: 色
+** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** デフォルト値: `+default+`
+
+* [[option_weechat.color.status_data_private]] *weechat.color.status_data_private*
+** 説明: pass:none[プライベートメッセージを受けとったバッファのテキスト色 (ステータスバー)]
+** タイプ: 色
+** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** デフォルト値: `+lightgreen+`
+
+* [[option_weechat.color.status_filter]] *weechat.color.status_filter*
+** 説明: pass:none[ステータスバー内のフィルタインジケータのテキスト色]
+** タイプ: 色
+** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** デフォルト値: `+green+`
+
+* [[option_weechat.color.status_more]] *weechat.color.status_more*
+** 説明: pass:none[新しいデータを受け取ったバッファのテキスト色 (ステータスバー)]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** デフォルト値: `+yellow+`
-* [[option_fset.color.value_selected]] *fset.color.value_selected*
-** 説明: pass:none[値のテキスト色 (選択行に表示される場合)]
+* [[option_weechat.color.status_mouse]] *weechat.color.status_mouse*
+** 説明: pass:none[ステータスバー内のマウスインジケータのテキスト色]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+lightcyan+`
+** デフォルト値: `+green+`
-* [[option_fset.color.value_undef]] *fset.color.value_undef*
-** 説明: pass:none[未定義値のテキスト色]
+* [[option_weechat.color.status_name]] *weechat.color.status_name*
+** 説明: pass:none[ステータスバー内の現在のバッファ名のテキスト色]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+magenta+`
+** デフォルト値: `+white+`
-* [[option_fset.color.value_undef_selected]] *fset.color.value_undef_selected*
-** 説明: pass:none[未定義値のテキスト色 (選択行に表示される場合)]
+* [[option_weechat.color.status_name_ssl]] *weechat.color.status_name_ssl*
+** 説明: pass:none[バッファで SSL などのセキュリティプロトコルを使っている場合に、ステータスバー内の現在のバッファ名に使うテキスト色]
** タイプ: 色
** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** デフォルト値: `+lightmagenta+`
+** デフォルト値: `+lightgreen+`
-* [[option_fset.format.export_help]] *fset.format.export_help*
-** 説明: pass:none[オプションをファイルへエクスポートする際に使うヘルプ行の書式 (注意: 値は評価されます、/help fset を参照してください)]
+* [[option_weechat.color.status_nicklist_count]] *weechat.color.status_nicklist_count*
+** 説明: pass:none[ニックネームリスト内のニックネーム数のテキスト色 (ステータスバー)]
+** タイプ: 色
+** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** デフォルト値: `+default+`
+
+* [[option_weechat.color.status_number]] *weechat.color.status_number*
+** 説明: pass:none[ステータスバー内の現在のバッファ番号のテキスト色]
+** タイプ: 色
+** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** デフォルト値: `+yellow+`
+
+* [[option_weechat.color.status_time]] *weechat.color.status_time*
+** 説明: pass:none[時間のテキスト色 (ステータスバー)]
+** タイプ: 色
+** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** デフォルト値: `+default+`
+
+* [[option_weechat.completion.base_word_until_cursor]] *weechat.completion.base_word_until_cursor*
+** 説明: pass:none[これが有効な場合、補完する元単語はカーソル前の文字で終了; そうでなければ元単語はカーソル後の最初の文字で終了]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+on+`
+
+* [[option_weechat.completion.command_inline]] *weechat.completion.command_inline*
+** 説明: pass:none[これが有効な場合、コマンドライン中のコマンドを補完します (行頭のコマンドが最も優先度が高く、最初に評価されます); 注意: このオプションが有効な場合、"/" で始まるパスの自動補完は行われません (外部コマンドの引数)]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+on+`
+
+* [[option_weechat.completion.default_template]] *weechat.completion.default_template*
+** 説明: pass:none[デフォルトの補完テンプレート (テンプレートコードと値のドキュメントを参照してください: プラグイン API リファレンス、"weechat_hook_command" 関数)]
** タイプ: 文字列
** 値: 未制約文字列
-** デフォルト値: `+"# ${description2}"+`
+** デフォルト値: `+"%(nicks)|%(irc_channels)"+`
-* [[option_fset.format.export_option]] *fset.format.export_option*
-** 説明: pass:none[オプションをファイルへエクスポートする際に使うオプションの書式 (注意: 値は評価されます、/help fset を参照してください)]
+* [[option_weechat.completion.nick_add_space]] *weechat.completion.nick_add_space*
+** 説明: pass:none[ニックネーム補完の後に空白を追加 (コマンドラインの最初がニックネームでない場合は)]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+on+`
+
+* [[option_weechat.completion.nick_case_sensitive]] *weechat.completion.nick_case_sensitive*
+** 説明: pass:none[大文字小文字を区別したニックネーム補完]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+off+`
+
+* [[option_weechat.completion.nick_completer]] *weechat.completion.nick_completer*
+** 説明: pass:none[ニックネーム補完の後に追加する文字列 (ニックネームがコマンドラインの最初にある場合)]
** タイプ: 文字列
** 値: 未制約文字列
-** デフォルト値: `+"/set ${name} ${quoted_value}"+`
+** デフォルト値: `+": "+`
-* [[option_fset.format.export_option_null]] *fset.format.export_option_null*
-** 説明: pass:none[オプション値が "null" の場合に、そのオプションをファイルへエクスポートする際に使うオプションの書式 (注意: 値は評価されます、/help fset を参照してください)]
+* [[option_weechat.completion.nick_first_only]] *weechat.completion.nick_first_only*
+** 説明: pass:none[最初に見つかったニックネームだけを補完]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+off+`
+
+* [[option_weechat.completion.nick_ignore_chars]] *weechat.completion.nick_ignore_chars*
+** 説明: pass:none[ニックネーム補完で無視する文字]
** タイプ: 文字列
** 値: 未制約文字列
-** デフォルト値: `+"/unset ${name}"+`
+** デフォルト値: `+"[]`_-^"+`
-* [[option_fset.format.option1]] *fset.format.option1*
-** 説明: pass:none[first format of each line, used when option fset.look.format_number is set to 1 (note: content is evaluated, see /help fset); an empty string uses the default format ("${marked} ${name} ${type} ${value2}"), which is without evaluation of string and then much faster; formats can be switched with key ctrl+X]
+* [[option_weechat.completion.partial_completion_alert]] *weechat.completion.partial_completion_alert*
+** 説明: pass:none[補完候補が複数あった場合に警告 (BEL) を送信]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+on+`
+
+* [[option_weechat.completion.partial_completion_command]] *weechat.completion.partial_completion_command*
+** 説明: pass:none[コマンドでの部分補完 (同じ文字を含む多くのコマンドが見つかった場合は止める)]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+off+`
+
+* [[option_weechat.completion.partial_completion_command_arg]] *weechat.completion.partial_completion_command_arg*
+** 説明: pass:none[コマンド引数での部分補完 (同じプレフィックスを持つ多くの引数が見つかった場合は止める)]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+off+`
+
+* [[option_weechat.completion.partial_completion_count]] *weechat.completion.partial_completion_count*
+** 説明: pass:none[バー要素内の部分補完数を表示]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+on+`
+
+* [[option_weechat.completion.partial_completion_other]] *weechat.completion.partial_completion_other*
+** 説明: pass:none[コマンド外での部分補完 (同じ文字を含む多くのコマンドが見つかった場合は止め)]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+off+`
+
+* [[option_weechat.completion.partial_completion_templates]] *weechat.completion.partial_completion_templates*
+** 説明: pass:none[部分補完がデフォルトで有効化される (shift-Tab キーの代わりに Tab キーを使う) テンプレートのコンマ区切りリスト; テンプレートのリストは WeeChat プラグイン API リファレンスの "weechat_hook_command" 関数の節を参照してください]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+"config_options"+`
+
+* [[option_weechat.history.display_default]] *weechat.history.display_default*
+** 説明: pass:none[履歴をリストアップする際にデフォルトで表示するコマンドの最大数 (0 = 制限無し)]
+** タイプ: 整数
+** 値: 0 .. 2147483647
+** デフォルト値: `+5+`
+
+* [[option_weechat.history.max_buffer_lines_minutes]] *weechat.history.max_buffer_lines_minutes*
+** 説明: pass:none[バッファ毎の履歴の保存時間 (分) (0 = 制限無し); 例: 1440 = 一日、10080 = 一週間、43200 = 一ヶ月、525600 = 一年間; weechat.history.max_buffer_lines_number オプションが 0 以外の場合には 0 を指定してください]
+** タイプ: 整数
+** 値: 0 .. 2147483647
+** デフォルト値: `+0+`
+
+* [[option_weechat.history.max_buffer_lines_number]] *weechat.history.max_buffer_lines_number*
+** 説明: pass:none[バッファ毎の履歴行数 (0 = 制限無し); weechat.history.max_buffer_lines_minutes オプションが 0 以外の場合には 0 を指定してください]
+** タイプ: 整数
+** 値: 0 .. 2147483647
+** デフォルト値: `+4096+`
+
+* [[option_weechat.history.max_commands]] *weechat.history.max_commands*
+** 説明: pass:none[履歴に保存するユーザコマンド数 (0 = 制限無し、メモリ使用量の制限が無くなるため非推奨)]
+** タイプ: 整数
+** 値: 0 .. 2147483647
+** デフォルト値: `+100+`
+
+* [[option_weechat.history.max_visited_buffers]] *weechat.history.max_visited_buffers*
+** 説明: pass:none[メモリに保存する観覧バッファの数]
+** タイプ: 整数
+** 値: 0 .. 1000
+** デフォルト値: `+50+`
+
+* [[option_weechat.look.align_end_of_lines]] *weechat.look.align_end_of_lines*
+** 説明: pass:none[行末の調節 (2 行以上になる行): このデータ (time、buffer、prefix、suffix、message (デフォルト)) の下から始められる]
+** タイプ: 整数
+** 値: time, buffer, prefix, suffix, message
+** デフォルト値: `+message+`
+
+* [[option_weechat.look.align_multiline_words]] *weechat.look.align_multiline_words*
+** 説明: pass:none[weechat.look.align_end_of_lines オプションに依存する単語内での改行抑制; 無効化した場合、単語という単位を無視して改行が行われます。これは長い URL が改行されなくなるという意味で便利です]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+on+`
+
+* [[option_weechat.look.bar_more_down]] *weechat.look.bar_more_down*
+** 説明: pass:none[バーを下方向にスクロール出来る場合に表示される文字列 (水平方向詰め以外の属性を持つバー)]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+"++"+`
+
+* [[option_weechat.look.bar_more_left]] *weechat.look.bar_more_left*
+** 説明: pass:none[バーを左方向にスクロール出来る場合に表示される文字列 (水平方向詰めの属性を持つバー用)]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+"<<"+`
+
+* [[option_weechat.look.bar_more_right]] *weechat.look.bar_more_right*
+** 説明: pass:none[バーを右方向にスクロール出来る場合に表示される文字列 (水平方向詰めの属性を持つバー用)]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+">>"+`
+
+* [[option_weechat.look.bar_more_up]] *weechat.look.bar_more_up*
+** 説明: pass:none[バーを上方向にスクロール出来る場合に表示される文字列 (水平方向詰め以外の属性を持つバー)]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+"--"+`
+
+* [[option_weechat.look.bare_display_exit_on_input]] *weechat.look.bare_display_exit_on_input*
+** 説明: pass:none[入力の変更に対する最小限表示モードを終了する]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+on+`
+
+* [[option_weechat.look.bare_display_time_format]] *weechat.look.bare_display_time_format*
+** 説明: pass:none[最小限表示モードで使う時間書式 (日付/時間指定子は strftime の man を参照してください)]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+"%H:%M"+`
+
+* [[option_weechat.look.buffer_auto_renumber]] *weechat.look.buffer_auto_renumber*
+** 説明: pass:none[自動的に番号を割り当てる場合、1 から始まる連番になります; 無効にした場合、バッファ番号に欠番が許され、最初のバッファに1より大きなバッファ番号を割り当てることが可能になります]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+on+`
+
+* [[option_weechat.look.buffer_notify_default]] *weechat.look.buffer_notify_default*
+** 説明: pass:none[バッファに対するデフォルトの通知レベル (メッセージの重要度に従い、バッファがホットリストに表示されるかどうかを WeeChat に教えるために使われる): all=全てのメッセージ (デフォルト)、message=メッセージとハイライト、highlight=ハイライトのみ、none=ホットリストに表示されない]
+** タイプ: 整数
+** 値: none, highlight, message, all
+** デフォルト値: `+all+`
+
+* [[option_weechat.look.buffer_position]] *weechat.look.buffer_position*
+** 説明: pass:none[新しいバッファの位置: end = リストの最後 (番号 = 最後の番号 + 1) (デフォルト)、first_gap = リスト中に最初に現れる利用可能な番号 (どの番号も使えない場合、リストの最後); このオプションはレイアウト番号を持たないバッファの場合に利用されます]
+** タイプ: 整数
+** 値: end, first_gap
+** デフォルト値: `+end+`
+
+* [[option_weechat.look.buffer_search_case_sensitive]] *weechat.look.buffer_search_case_sensitive*
+** 説明: pass:none[デフォルトのバッファテキスト検索: 大文字小文字を区別するかしないか]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+off+`
+
+* [[option_weechat.look.buffer_search_force_default]] *weechat.look.buffer_search_force_default*
+** 説明: pass:none[バッファテキスト検索のデフォルト値を強制する (バッファで最後に検索した値を使わない)]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+off+`
+
+* [[option_weechat.look.buffer_search_regex]] *weechat.look.buffer_search_regex*
+** 説明: pass:none[デフォルトのバッファテキスト検索: 有効の場合は正規表現で検索、無効の場合は単純な文字列で検索]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+off+`
+
+* [[option_weechat.look.buffer_search_where]] *weechat.look.buffer_search_where*
+** 説明: pass:none[デフォルトのバッファテキスト検索: メッセージ中、プレフィックス中、プレフィックスとメッセージ中]
+** タイプ: 整数
+** 値: prefix, message, prefix_message
+** デフォルト値: `+prefix_message+`
+
+* [[option_weechat.look.buffer_time_format]] *weechat.look.buffer_time_format*
+** 説明: pass:none[バッファに表示される行に付く時間書式 (日付/時間の指定子は strftime の man を参照してください) (注意: 値は評価されるため "${color:xxx}" 書式で色を指定出来ます、/help eval を参照してください); 例えばグレースケールを使う時間の例 (256 色のサポートが必要): "${color:252}%H${color:245}%M${color:240}%S"]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+"%H:%M:%S"+`
+
+* [[option_weechat.look.buffer_time_same]] *weechat.look.buffer_time_same*
+** 説明: pass:none[直前のメッセージと同じ時刻のメッセージに対して表示される時刻: 空白文字 " " の場合は時刻を隠す、これ以外の文字列の場合は時刻の代わりに設定文字列を表示、空文字列の場合はこの機能を無効化 (時刻を表示します) (注意: 設定値は評価されるため、${color:xxx} などを使えます、/help eval を参照してください)]
** タイプ: 文字列
** 値: 未制約文字列
** デフォルト値: `+""+`
-* [[option_fset.format.option2]] *fset.format.option2*
-** 説明: pass:none[second format of each line, used when option fset.look.format_number is set to 2 (note: content is evaluated, see /help fset); an empty string uses the default format ("${marked} ${name} ${type} ${value2}"), which is without evaluation of string and then much faster; formats can be switched with key ctrl+X]
+* [[option_weechat.look.chat_space_right]] *weechat.look.chat_space_right*
+** 説明: pass:none[keep a space on the right side of chat area if there is a bar displayed on the right (for both text and read marker)]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+off+`
+
+* [[option_weechat.look.color_basic_force_bold]] *weechat.look.color_basic_force_bold*
+** 説明: pass:none[明るい色と標準的な色の "darkgray" には "太字" 属性を強制 (このオプションはデフォルトでは無効: 太字は端末が 16 色以下の表示能力しかない場合に利用される)]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+off+`
+
+* [[option_weechat.look.color_inactive_buffer]] *weechat.look.color_inactive_buffer*
+** 説明: pass:none[アクティブでないバッファでは行に異なる色を使用 (行が未選択のマージバッファからの場合)]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+on+`
+
+* [[option_weechat.look.color_inactive_message]] *weechat.look.color_inactive_message*
+** 説明: pass:none[アクティブでないメッセージに異なる色を使用 (ウィンドウにフォーカスが無いか、行が未選択のマージバッファからの場合)]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+on+`
+
+* [[option_weechat.look.color_inactive_prefix]] *weechat.look.color_inactive_prefix*
+** 説明: pass:none[アクティブでないプレフィックスに異なる色を使用 (ウィンドウにフォーカスが無いか、行が未選択のマージバッファからの場合)]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+on+`
+
+* [[option_weechat.look.color_inactive_prefix_buffer]] *weechat.look.color_inactive_prefix_buffer*
+** 説明: pass:none[アクティブでないバッファ名のプレフィックスに異なる色を使用 (ウィンドウにフォーカスが無いか、行が未選択のマージバッファからの場合)]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+on+`
+
+* [[option_weechat.look.color_inactive_time]] *weechat.look.color_inactive_time*
+** 説明: pass:none[アクティブでない時間は異なる色を使用 (ウィンドウにフォーカスが無いか、行が未選択のマージバッファからの場合)]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+off+`
+
+* [[option_weechat.look.color_inactive_window]] *weechat.look.color_inactive_window*
+** 説明: pass:none[アクティブでないウィンドウでは行に異なる色を使用 (ウィンドウにフォーカスが無い場合)]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+on+`
+
+* [[option_weechat.look.color_nick_offline]] *weechat.look.color_nick_offline*
+** 説明: pass:none[オフライン状態のニックネームに異なる色を使用 (ニックネームリストにも表示しない)]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+off+`
+
+* [[option_weechat.look.color_pairs_auto_reset]] *weechat.look.color_pairs_auto_reset*
+** 説明: pass:none[利用可能なペアの数がこの数以下になった場合、色ペアテーブルを自動的にリセット (-1 = 自動リセットを無効化、テーブルが一杯になったら手動で "/color reset")]
+** タイプ: 整数
+** 値: -1 .. 256
+** デフォルト値: `+5+`
+
+* [[option_weechat.look.color_real_white]] *weechat.look.color_real_white*
+** 説明: pass:none[セットされた場合、本当の白色が使われる、白色背景の端末ではデフォルトで無効 (白色背景を絶対に使わないなら、端末の前景色の代わりに本当の白色を表示するためにはこれを on にするべき)]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+off+`
+
+* [[option_weechat.look.command_chars]] *weechat.look.command_chars*
+** 説明: pass:none[入力文字列がコマンドかどうかを決定する文字列: 入力はこれらの文字の内の一つから始まらなければいけない; スラッシュ ("/") は常にコマンドプレフィックスとして扱われる (例: ".$")]
** タイプ: 文字列
** 値: 未制約文字列
-** デフォルト値: `+"${marked} ${name} ${type} ${value2}${newline} ${empty_name} ${_default_value}${color:darkgray} -- ${min}..${max}${newline} ${empty_name} ${description}"+`
+** デフォルト値: `+""+`
-* [[option_fset.look.auto_refresh]] *fset.look.auto_refresh*
-** 説明: pass:none[comma separated list of options to automatically refresh on the fset buffer (if opened); "*" means all options (recommended), a name beginning with "!" is a negative value to prevent an option to be refreshed, wildcard "*" is allowed in names (example: "*,!plugin.section.*")]
+* [[option_weechat.look.command_incomplete]] *weechat.look.command_incomplete*
+** 説明: pass:none[これを設定した場合、不完全なコマンドと完全なコマンドを両方使えるようになります、例えば /he は /help の意味で使うことができます]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+off+`
+
+* [[option_weechat.look.confirm_quit]] *weechat.look.confirm_quit*
+** 説明: pass:none[これを設定した場合、/quit コマンド使う際には必ず "-yes" 引数と共に使う必要があります (/help quit 参照)]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+off+`
+
+* [[option_weechat.look.confirm_upgrade]] *weechat.look.confirm_upgrade*
+** 説明: pass:none[これを設定した場合、/upgrade コマンド使う際には必ず "-yes" 引数と共に使う必要があります (/help upgrade 参照)]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+off+`
+
+* [[option_weechat.look.day_change]] *weechat.look.day_change*
+** 説明: pass:none[日付が変わった際に特殊メッセージを表示]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+on+`
+
+* [[option_weechat.look.day_change_message_1date]] *weechat.look.day_change_message_1date*
+** 説明: pass:none[日付が変わった時に表示される時間の書式、1 つの日付を表示 (例えばバッファの最初に) (日付/時間指定子は strftime の man を参照してください) (注意: 値は評価されるため "${color:xxx}" 書式で色を指定出来ます、/help eval を参照してください)]
** タイプ: 文字列
** 値: 未制約文字列
-** デフォルト値: `+"*"+`
+** デフォルト値: `+"-- %a, %d %b %Y --"+`
-* [[option_fset.look.auto_unmark]] *fset.look.auto_unmark*
-** 説明: pass:none[マーク済みオプションに対する操作の後または再読込の後に自動的にすべてのオプションをアンマーク]
+* [[option_weechat.look.day_change_message_2dates]] *weechat.look.day_change_message_2dates*
+** 説明: pass:none[日付が変わった時に表示される時間の書式、2 つの日付を表示 (2 つのメッセージの間に); 文字列に対して strftime は 2 回呼び出されるため、2 番目の日付指定子は 2 つの "%" で始めてください (日付/時間指定子は strftime の man を参照してください) (注意: 値は評価されるため "${color:xxx}" 書式で色を指定出来ます、/help eval を参照してください)]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+"-- %%a, %%d %%b %%Y (%a, %d %b %Y) --"+`
+
+* [[option_weechat.look.eat_newline_glitch]] *weechat.look.eat_newline_glitch*
+** 説明: pass:none[セットされた場合、eat_newline_glitch は 0 になる; これは各行の末尾に新しい行を追加しないために使われ、WeeChat から別のアプリケーションにテキストをコピー/ペーストする際にテキストの改行を行わない (致命的な表示上の問題を引き起こすため、このオプションはデフォルトで無効化されている)]
** タイプ: ブール
** 値: on, off
** デフォルト値: `+off+`
-* [[option_fset.look.condition_catch_set]] *fset.look.condition_catch_set*
-** 説明: pass:none[/set コマンドを受け付けて fset バッファに結果を表示する条件; 以下の値を利用可能です: ${name} (/set コマンドに渡すオプション名)、${count} (/set 引数のオプション数); 空文字列は /set コマンドの受付を無効化します; 値が "1" の場合、fset バッファは常に /set コマンドと一緒に使われます]
+* [[option_weechat.look.emphasized_attributes]] *weechat.look.emphasized_attributes*
+** 説明: pass:none[attributes for emphasized text: one or more attribute chars ("%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline); if the string is empty, the colors weechat.color.emphasized* are used]
** タイプ: 文字列
** 値: 未制約文字列
-** デフォルト値: `+"${count} >= 1"+`
+** デフォルト値: `+""+`
-* [[option_fset.look.export_help_default]] *fset.look.export_help_default*
-** 説明: pass:none[デフォルトでエクスポートされた各オプションのヘルプを書き込む (コマンド /fset -export の引数 "-help" と "-nohelp" を使えばこの設定を上書きできます)]
+* [[option_weechat.look.highlight]] *weechat.look.highlight*
+** 説明: pass:none[コンマ区切りのハイライトされる単語リスト; 大文字小文字の区別無し (単語の最初に "(?-i)" をつければ区別有り)、部分マッチさせるには単語の最初か最後に "*" をつける; 例: "test,(?-i)*toto*,flash*"]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+""+`
+
+* [[option_weechat.look.highlight_disable_regex]] *weechat.look.highlight_disable_regex*
+** 説明: pass:none[POSIX extended regular expression used to prevent any highlight from a message: this option has higher priority over other highlight options (if the string is found in the message, the highlight is disabled and the other options are ignored), regular expression is case insensitive (use "(?-i)" at beginning to make it case sensitive), examples: "<flash.*>", "(?-i)<Flash.*>"]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+""+`
+
+* [[option_weechat.look.highlight_regex]] *weechat.look.highlight_regex*
+** 説明: pass:none[メッセージ中のハイライトの有無を判断する POSIX 拡張正規表現、マッチ部分は必ず区切り文字 (アルファベット、"-"、"_"、"|" 以外の文字) で囲まれていなければいけない、正規表現は大文字小文字を区別しない (最初に "(?-i)" がある場合は区別する)、例: "flashcode|flashy"、"(?-i)FlashCode|flashy"]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+""+`
+
+* [[option_weechat.look.highlight_tags]] *weechat.look.highlight_tags*
+** 説明: pass:none[ハイライトするタグのコンマ区切りリスト; 大文字小文字の区別なし; 各タグでワイルドカード "*" を使うことができます; 論理積 "and" を取るにはタグ同士を "+" でつなげてください; 例: ニックネーム "FlashCode" からのメッセージは "nick_flashcode"、ニックネームが "toto" で始まるユーザからの notice メッセージは "irc_notice+nick_toto*"]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+""+`
+
+* [[option_weechat.look.hotlist_add_conditions]] *weechat.look.hotlist_add_conditions*
+** 説明: pass:none[ホットリストでバッファを追加する条件 (追加するバッファの通知レベルが OK の場合); 以下の条件を使うことができます: "window" (現在のウィンドウポインタ)、"buffer" (ホットリストに追加するバッファポインタ)、"priority" (0 = 低い、1 = メッセージ、2 = プライベートメッセージ、3 = ハイライト); デフォルトでは離席状態、バッファが画面に表示されていない状態、少なくとも1つのリレークライアントが weechat プロトコルで接続している状態の場合にホットリストへバッファを追加します]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+"${away} || ${buffer.num_displayed} == 0 || ${info:relay_client_count,weechat,connected} > 0"+`
+
+* [[option_weechat.look.hotlist_buffer_separator]] *weechat.look.hotlist_buffer_separator*
+** 説明: pass:none[ホットリストにあるバッファの間に表示される文字列]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+", "+`
+
+* [[option_weechat.look.hotlist_count_max]] *weechat.look.hotlist_count_max*
+** 説明: pass:none[任意のバッファに関するホットリストに表示されるメッセージ数の最大値: 0 = メッセージ数を表示しない、0 以外の数 = 最大で N 個のメッセージ数を表示 (最大から最低の優先度を持つメッセージ数)]
+** タイプ: 整数
+** 値: 0 .. 4
+** デフォルト値: `+2+`
+
+* [[option_weechat.look.hotlist_count_min_msg]] *weechat.look.hotlist_count_min_msg*
+** 説明: pass:none[メッセージの数がこの値以上の場合にメッセージ数を表示]
+** タイプ: 整数
+** 値: 1 .. 100
+** デフォルト値: `+2+`
+
+* [[option_weechat.look.hotlist_names_count]] *weechat.look.hotlist_names_count*
+** 説明: pass:none[ホットリストに載せるバッファ名の数の最大値 (0 = バッファ名は無し、番号のみ)]
+** タイプ: 整数
+** 値: 0 .. 10000
+** デフォルト値: `+3+`
+
+* [[option_weechat.look.hotlist_names_length]] *weechat.look.hotlist_names_length*
+** 説明: pass:none[ホットリストに載せるバッファ名の長さの最大値 (0 = 制限無し)]
+** タイプ: 整数
+** 値: 0 .. 32
+** デフォルト値: `+0+`
+
+* [[option_weechat.look.hotlist_names_level]] *weechat.look.hotlist_names_level*
+** 説明: pass:none[ホットリストに載せる名前のレベル (次の組み合わせ: 1=join/part、2=メッセージ、4=プライベートメッセージ、8=ハイライト、例: 12=プライベートメッセージとハイライト)]
+** タイプ: 整数
+** 値: 1 .. 15
+** デフォルト値: `+12+`
+
+* [[option_weechat.look.hotlist_names_merged_buffers]] *weechat.look.hotlist_names_merged_buffers*
+** 説明: pass:none[セットされた場合、マージバッファに対してホットリストにバッファ名を載せることを強制]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+off+`
+
+* [[option_weechat.look.hotlist_prefix]] *weechat.look.hotlist_prefix*
+** 説明: pass:none[ホットリストの最初に表示されるテキスト]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+"H: "+`
+
+* [[option_weechat.look.hotlist_remove]] *weechat.look.hotlist_remove*
+** 説明: pass:none[ホットリストに含まれるバッファを削除: buffer = バッファを削除、merged = すべての可視状態でマージされたバッファを一括削除]
+** タイプ: 整数
+** 値: buffer, merged
+** デフォルト値: `+merged+`
+
+* [[option_weechat.look.hotlist_short_names]] *weechat.look.hotlist_short_names*
+** 説明: pass:none[セットされた場合、ホットリストではバッファ名に短い名前を使う (名前に含まれる最初の "." 以降)]
** タイプ: ブール
** 値: on, off
** デフォルト値: `+on+`
-* [[option_fset.look.format_number]] *fset.look.format_number*
-** 説明: pass:none[オプションを表示する際に使う書式番号; この値は fset バッファで ctrl-X キーを押すことで動的に変化します]
+* [[option_weechat.look.hotlist_sort]] *weechat.look.hotlist_sort*
+** 説明: pass:none[ホットリストのソート: group_time_*: 通知レベルでグループ化した (ハイライトを前にした) 後に時間でソート、group_number_*: 通知レベルでグループ化した (ハイライトを前にした) 後に番号でソート、number_*: 番号でソート; asc = 昇順、desc = 降順]
** タイプ: 整数
-** 値: 1 .. 2
-** デフォルト値: `+1+`
+** 値: group_time_asc, group_time_desc, group_number_asc, group_number_desc, number_asc, number_desc
+** デフォルト値: `+group_time_asc+`
-* [[option_fset.look.marked_string]] *fset.look.marked_string*
-** 説明: pass:none[オプションをマークする際に表示される文字列 (マークは何らかの操作を複数のオプションに対して行う際に用います)]
+* [[option_weechat.look.hotlist_suffix]] *weechat.look.hotlist_suffix*
+** 説明: pass:none[ホットリストの最後に表示されるテキスト]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+""+`
+
+* [[option_weechat.look.hotlist_unique_numbers]] *weechat.look.hotlist_unique_numbers*
+** 説明: pass:none[ホットリストには一意の番号だけを保持 (これは番号の後ろに名前が表示されていないホットリスト要素だけに適用されます)]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+on+`
+
+* [[option_weechat.look.hotlist_update_on_buffer_switch]] *weechat.look.hotlist_update_on_buffer_switch*
+** 説明: pass:none[update the hotlist when switching buffers]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+on+`
+
+* [[option_weechat.look.input_cursor_scroll]] *weechat.look.input_cursor_scroll*
+** 説明: pass:none[行の最後までスクロールする際に入力行の最後に続けて表示される文字の数]
+** タイプ: 整数
+** 値: 0 .. 100
+** デフォルト値: `+20+`
+
+* [[option_weechat.look.input_share]] *weechat.look.input_share*
+** 説明: pass:none[全てのバッファでコマンド、テキスト、または両方の入力を共有 (バッファごとのローカル履歴に影響無し)]
+** タイプ: 整数
+** 値: none, commands, text, all
+** デフォルト値: `+none+`
+
+* [[option_weechat.look.input_share_overwrite]] *weechat.look.input_share_overwrite*
+** 説明: pass:none[セットされ、入力が共有された場合、ターゲットバッファの入力は常に上書きされます]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+off+`
+
+* [[option_weechat.look.input_undo_max]] *weechat.look.input_undo_max*
+** 説明: pass:none[バッファごとのコマンドラインの "undo" 回数の上限値 (0 = アンドゥは無効)]
+** タイプ: 整数
+** 値: 0 .. 65535
+** デフォルト値: `+32+`
+
+* [[option_weechat.look.item_away_message]] *weechat.look.item_away_message*
+** 説明: pass:none[サーバの離席メッセージを離席バー要素に表示]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+on+`
+
+* [[option_weechat.look.item_buffer_filter]] *weechat.look.item_buffer_filter*
+** 説明: pass:none[現在のバッファで何行かがフィルタされたことを示す文字列 (バー要素 "buffer_filter")]
** タイプ: 文字列
** 値: 未制約文字列
** デフォルト値: `+"*"+`
-* [[option_fset.look.scroll_horizontal]] *fset.look.scroll_horizontal*
-** 説明: pass:none[fset バッファの左右スクロール量 (横幅の割合)]
+* [[option_weechat.look.item_buffer_zoom]] *weechat.look.item_buffer_zoom*
+** 説明: pass:none[マージされたバッファがズーム状態であることを示す文字列 (バー要素 "buffer_zoom")]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+"!"+`
+
+* [[option_weechat.look.item_mouse_status]] *weechat.look.item_mouse_status*
+** 説明: pass:none[マウスが有効であることを示す文字列 (バー要素 "mouse_status")]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+"M"+`
+
+* [[option_weechat.look.item_time_format]] *weechat.look.item_time_format*
+** 説明: pass:none["time" バー要素の時間書式 (日付/時間指定子は strftime の man を参照してください) (注意: 値は評価されるため、"${color:xxx}" 書式を使えば色を指定することも出来ます、/help eval を参照してください)]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+"%H:%M"+`
+
+* [[option_weechat.look.jump_current_to_previous_buffer]] *weechat.look.jump_current_to_previous_buffer*
+** 説明: pass:none[他のバッファへの移動と現在のバッファに戻ることを簡単にするために、/buffer *N (N はバッファ番号) で現在のバッファ番号に移動した場合は、表示上の一つ前のバッファに移動する]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+on+`
+
+* [[option_weechat.look.jump_previous_buffer_when_closing]] *weechat.look.jump_previous_buffer_when_closing*
+** 説明: pass:none[バッファを閉じた場合は一つ前に訪れていたバッファに移動 (無効にされた場合は、バッファ番号の一つ少ないものに移動)]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+on+`
+
+* [[option_weechat.look.jump_smart_back_to_buffer]] *weechat.look.jump_smart_back_to_buffer*
+** 説明: pass:none[ホットリストの最後に到達したら最初のバッファに移動する]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+on+`
+
+* [[option_weechat.look.key_bind_safe]] *weechat.look.key_bind_safe*
+** 説明: pass:none["危険な" キー (ctrl または meta コードで始まらないキー) の割り当てを禁止]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+on+`
+
+* [[option_weechat.look.key_grab_delay]] *weechat.look.key_grab_delay*
+** 説明: pass:none[キーを横取りするためのデフォルト遅延時間 (ミリ秒単位) (デフォルトキー alt-k を使います); /input コマンドではこの遅延時間を無視します (/help input 参照)]
** タイプ: 整数
-** 値: 1 .. 100
+** 値: 1 .. 10000
+** デフォルト値: `+800+`
+
+* [[option_weechat.look.mouse]] *weechat.look.mouse*
+** 説明: pass:none[マウスサポートの有効化]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+off+`
+
+* [[option_weechat.look.mouse_timer_delay]] *weechat.look.mouse_timer_delay*
+** 説明: pass:none[マウスイベントを横取りするための遅延 (ミリ秒): WeeChat はイベント処理前にこの遅延時間だけ待つ]
+** タイプ: 整数
+** 値: 1 .. 10000
+** デフォルト値: `+100+`
+
+* [[option_weechat.look.nick_color_force]] *weechat.look.nick_color_force*
+** 説明: pass:none[force color for some nicks: hash computed with nickname to find color will not be used for these nicks (format is: "nick1:color1;nick2:color2"); look up for nicks is with exact case then lower case, so it's possible to use only lower case for nicks in this option; color can include background with the format "text,background", for example "yellow,red"]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+""+`
+
+* [[option_weechat.look.nick_color_hash]] *weechat.look.nick_color_hash*
+** 説明: pass:none[hash algorithm used to find the color for a nick: djb2 = variant of djb2 (position of letters matters: anagrams of a nick have different color), djb2_32 = variant of djb2 using 32-bit instead of 64-bit integer, sum = sum of letters, sum_32 = sum of letters using 32-bit instead of 64-bit integer]
+** タイプ: 整数
+** 値: djb2, sum, djb2_32, sum_32
+** デフォルト値: `+djb2+`
+
+* [[option_weechat.look.nick_color_hash_salt]] *weechat.look.nick_color_hash_salt*
+** 説明: pass:none[salt for the hash algorithm used to find nick colors (the nickname is appended to this salt and the hash algorithm operates on this string); modifying this shuffles nick colors]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+""+`
+
+* [[option_weechat.look.nick_color_stop_chars]] *weechat.look.nick_color_stop_chars*
+** 説明: pass:none[ニックネームの色計算で以降の文字を無視する目印の文字 (このリストに含まれる文字の前に、少なくとも一つ以上のこのリストに含まれない文字がなければいけません) (例: "|" を設定した場合、"|nick|away" はニックネーム "|nick" と同じ色になります); このオプションの設定値はオプション weechat.look.nick_color_force の結果に影響を与えます。すなわち、ニックネーム色を強制したニックネームに、このオプションによって無視される文字を含めてはいけません]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+"_|["+`
+
+* [[option_weechat.look.nick_prefix]] *weechat.look.nick_prefix*
+** 説明: pass:none[メッセージプレフィックス中のニックネームの前に表示するテキスト、例: "<"]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+""+`
+
+* [[option_weechat.look.nick_suffix]] *weechat.look.nick_suffix*
+** 説明: pass:none[メッセージプレフィックス中のニックネームの後に表示するテキスト、例: ">"]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+""+`
+
+* [[option_weechat.look.paste_auto_add_newline]] *weechat.look.paste_auto_add_newline*
+** 説明: pass:none[少なくとも 2 行以上をペースト、確認のための質問に回答した場合に、ペーストしたテキストの末尾に新しい行を自動的に追加する]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+on+`
+
+* [[option_weechat.look.paste_bracketed]] *weechat.look.paste_bracketed*
+** 説明: pass:none[端末の「括弧付きペーストモード」を有効化 (一部の端末/マルチプレクサで利用可能): このモードでは、ペーストされたテキストはコントロールシーケンスで括られます。これにより WeeChat はペーストされたテキストとタイプされたテキストを区別する ("ESC[200~"、ペーストされたテキスト、"ESC[201~")]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+on+`
+
+* [[option_weechat.look.paste_bracketed_timer_delay]] *weechat.look.paste_bracketed_timer_delay*
+** 説明: pass:none[括弧付きペーストの終了を示すコントロールシーケンス ("ESC[201~") が入力されなかった場合に、括弧付きペーストを強制終了させるまでの待ち時間 (秒単位)]
+** タイプ: 整数
+** 値: 1 .. 60
** デフォルト値: `+10+`
-* [[option_fset.look.show_plugins_desc]] *fset.look.show_plugins_desc*
-** 説明: pass:none[プラグイン説明オプションを表示 (plugins.desc.*)]
+* [[option_weechat.look.paste_max_lines]] *weechat.look.paste_max_lines*
+** 説明: pass:none[ユーザへの確認無しにペーストする行数の最大値 (-1 = この機能を無効化); このオプションは少なくとも 1 つ以上のバーでバー要素 "input_paste" が使われている場合のみ使われます (デフォルト状態では "input" バーでバー要素 "input_paste" が使われています)]
+** タイプ: 整数
+** 値: -1 .. 2147483647
+** デフォルト値: `+1+`
+
+* [[option_weechat.look.prefix_action]] *weechat.look.prefix_action*
+** 説明: pass:none[アクションメッセージのプレフィックス (注意: 値は評価されるため、"${color:xxx}" 書式を使えば色を指定することも出来ます、/help eval を参照してください)]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+" *"+`
+
+* [[option_weechat.look.prefix_align]] *weechat.look.prefix_align*
+** 説明: pass:none[プレフィックスの調節 (none、left、right (デフォルト))]
+** タイプ: 整数
+** 値: none, left, right
+** デフォルト値: `+right+`
+
+* [[option_weechat.look.prefix_align_max]] *weechat.look.prefix_align_max*
+** 説明: pass:none[プレフィックスのサイズの最大値 (0 = 最大値の指定無し)]
+** タイプ: 整数
+** 値: 0 .. 128
+** デフォルト値: `+0+`
+
+* [[option_weechat.look.prefix_align_min]] *weechat.look.prefix_align_min*
+** 説明: pass:none[プレフィックスサイズの最小値]
+** タイプ: 整数
+** 値: 0 .. 128
+** デフォルト値: `+0+`
+
+* [[option_weechat.look.prefix_align_more]] *weechat.look.prefix_align_more*
+** 説明: pass:none[プレフィックスが切り詰められた場合に表示する文字 (画面上のちょうど 1 文字)]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+"+"+`
+
+* [[option_weechat.look.prefix_align_more_after]] *weechat.look.prefix_align_more_after*
+** 説明: pass:none[テキストの後ろに切り捨て文字 (デフォルトでは "+") を表示 (この場所に表示されるべき空白を置換する); 無効化した場合、テキストの最後の文字が切り捨て文字になります]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+on+`
+
+* [[option_weechat.look.prefix_buffer_align]] *weechat.look.prefix_buffer_align*
+** 説明: pass:none[多くのバッファが同じ番号を持つようにマージされた場合に、バッファ名のプレフィックスを調節 (none, left, right (デフォルト))]
+** タイプ: 整数
+** 値: none, left, right
+** デフォルト値: `+right+`
+
+* [[option_weechat.look.prefix_buffer_align_max]] *weechat.look.prefix_buffer_align_max*
+** 説明: pass:none[多くのバッファが同じ番号を持つようにマージされた場合の、バッファ名のサイズの最大値 (0 = 最大値の指定無し)]
+** タイプ: 整数
+** 値: 0 .. 128
+** デフォルト値: `+0+`
+
+* [[option_weechat.look.prefix_buffer_align_more]] *weechat.look.prefix_buffer_align_more*
+** 説明: pass:none[バッファ名が切り詰められた場合に表示する文字 (多くのバッファが同じ番号を持つようにマージされた場合) (画面上のちょうど 1 文字)]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+"+"+`
+
+* [[option_weechat.look.prefix_buffer_align_more_after]] *weechat.look.prefix_buffer_align_more_after*
+** 説明: pass:none[テキストの後ろに切り捨て文字 (デフォルトでは "+") を表示 (この場所に表示されるべき空白を置換する); 無効化した場合、テキストの最後の文字が切り捨て文字になります]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+on+`
+
+* [[option_weechat.look.prefix_error]] *weechat.look.prefix_error*
+** 説明: pass:none[エラーメッセージのプレフィックス (注意: 値は評価されるため、"${color:xxx}" 書式を使えば色を指定することも出来ます、/help eval を参照してください)]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+"=!="+`
+
+* [[option_weechat.look.prefix_join]] *weechat.look.prefix_join*
+** 説明: pass:none[参加メッセージのプレフィックス (注意: 値は評価されるため、"${color:xxx}" 書式を使えば色を指定することも出来ます、/help eval を参照してください)]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+"-->"+`
+
+* [[option_weechat.look.prefix_network]] *weechat.look.prefix_network*
+** 説明: pass:none[ネットワークメッセージのプレフィックス (注意: 値は評価されるため、"${color:xxx}" 書式を使えば色を指定することも出来ます、/help eval を参照してください)]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+"--"+`
+
+* [[option_weechat.look.prefix_quit]] *weechat.look.prefix_quit*
+** 説明: pass:none[終了メッセージのプレフィックス (注意: 値は評価されるため、"${color:xxx}" 書式を使えば色を指定することも出来ます、/help eval を参照してください)]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+"<--"+`
+
+* [[option_weechat.look.prefix_same_nick]] *weechat.look.prefix_same_nick*
+** 説明: pass:none[同じニックネームからの連続したメッセージの中で最後のメッセージに前置するプレフィックス: 空白文字 " " の場合はプレフィックスを隠す、これ以外の文字列の場合は設定値をプレフィックスとして用いる、空文字の場合は本機能を使わない (プレフィックスを表示)]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+""+`
+
+* [[option_weechat.look.prefix_same_nick_middle]] *weechat.look.prefix_same_nick_middle*
+** 説明: pass:none[同じニックネームからの連続したメッセージの中で最後のメッセージを除くメッセージに前置するプレフィックス: 空白文字 " " の場合はプレフィックスを隠す、これ以外の文字列の場合は設定値をプレフィックスとして用いる、空文字の場合は本機能を使わない (プレフィックスを表示)]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+""+`
+
+* [[option_weechat.look.prefix_suffix]] *weechat.look.prefix_suffix*
+** 説明: pass:none[プレフィックスの後ろに表示される文字列]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+"|"+`
+
+* [[option_weechat.look.quote_nick_prefix]] *weechat.look.quote_nick_prefix*
+** 説明: pass:none[メッセージを引用する際にニックネームの前につけるテキスト (/help cursor 参照)]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+"<"+`
+
+* [[option_weechat.look.quote_nick_suffix]] *weechat.look.quote_nick_suffix*
+** 説明: pass:none[メッセージを引用する際にニックネームの後につけるテキスト (/help cursor 参照)]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+">"+`
+
+* [[option_weechat.look.quote_time_format]] *weechat.look.quote_time_format*
+** 説明: pass:none[メッセージを引用する際の時間書式 (/help cursor を参照してください)]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+"%H:%M:%S"+`
+
+* [[option_weechat.look.read_marker]] *weechat.look.read_marker*
+** 説明: pass:none[最初の未読行を表示するマーカー (line か char) をバッファ内で使用]
+** タイプ: 整数
+** 値: none, line, char
+** デフォルト値: `+line+`
+
+* [[option_weechat.look.read_marker_always_show]] *weechat.look.read_marker_always_show*
+** 説明: pass:none[バッファの最終行であっても、常にリードマーカーを表示]
** タイプ: ブール
** 値: on, off
** デフォルト値: `+off+`
-* [[option_fset.look.sort]] *fset.look.sort*
-** 説明: pass:none[ソートオプションのコンマ区切りリスト (フィールドのリストは /help fset を参照してください); フィールドの先頭に "-" 文字を付けることでソート順を逆にすることも可能です。大文字小文字を区別せずに比較を行うには "~" 文字を使います; 例: "-~name" オプション名を基準に大文字小文字を区別せずにソートして、順番を逆にします]
+* [[option_weechat.look.read_marker_string]] *weechat.look.read_marker_string*
+** 説明: pass:none[リードマーカー行の表示に使われる文字列 (行末まで文字列が繰り返される)]
** タイプ: 文字列
** 値: 未制約文字列
-** デフォルト値: `+"~name"+`
+** デフォルト値: `+"- "+`
-* [[option_fset.look.unmarked_string]] *fset.look.unmarked_string*
-** 説明: pass:none[オプションがマークされていない場合に表示される文字列]
+* [[option_weechat.look.read_marker_update_on_buffer_switch]] *weechat.look.read_marker_update_on_buffer_switch*
+** 説明: pass:none[update the read marker when switching buffers]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+on+`
+
+* [[option_weechat.look.save_config_on_exit]] *weechat.look.save_config_on_exit*
+** 説明: pass:none[終了時に設定ファイルを保存]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+on+`
+
+* [[option_weechat.look.save_config_with_fsync]] *weechat.look.save_config_with_fsync*
+** 説明: pass:none[fsync を使って設定データをストレージデバイス上の設定ファイルと同期させる (man fsync を参照してください); fsync は遅いですが、fsync を使えば設定ファイル保存中の停電によるデータ損失を避けられます]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+off+`
+
+* [[option_weechat.look.save_layout_on_exit]] *weechat.look.save_layout_on_exit*
+** 説明: pass:none[終了時にレイアウトを保存 (バッファ、ウィンドウ、両方)]
+** タイプ: 整数
+** 値: none, buffers, windows, all
+** デフォルト値: `+none+`
+
+* [[option_weechat.look.scroll_amount]] *weechat.look.scroll_amount*
+** 説明: pass:none[scroll_up と scroll_down でスクロールする行数]
+** タイプ: 整数
+** 値: 1 .. 2147483647
+** デフォルト値: `+3+`
+
+* [[option_weechat.look.scroll_bottom_after_switch]] *weechat.look.scroll_bottom_after_switch*
+** 説明: pass:none[別のバッファに移動した後にウィンドウの最後までスクロール (ウィンドウのスクロール位置を記憶しない); 自動スクロールは書式ありバッファだけで有効 (自由内容バッファでは無効)]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+off+`
+
+* [[option_weechat.look.scroll_page_percent]] *weechat.look.scroll_page_percent*
+** 説明: pass:none[1 ページ上方向か下方向にスクロールする場合のスクロールの割合 (例えば 100 は 1 ページ、50 は半ページ)]
+** タイプ: 整数
+** 値: 1 .. 100
+** デフォルト値: `+100+`
+
+* [[option_weechat.look.search_text_not_found_alert]] *weechat.look.search_text_not_found_alert*
+** 説明: pass:none[バッファ内に検索テキストが見つからなかった場合はユーザに警告]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+on+`
+
+* [[option_weechat.look.separator_horizontal]] *weechat.look.separator_horizontal*
+** 説明: pass:none[バーとウィンドウ周囲の水平セパレータ文字 (空の場合は ncurses で線を描画するが、一部の端末では URL 選択の際にバグを生ずる可能性がある); 必ず画面上に描画した時の文字幅が 1 の文字を指定してください]
** タイプ: 文字列
** 値: 未制約文字列
-** デフォルト値: `+" "+`
+** デフォルト値: `+"-"+`
-* [[option_fset.look.use_color_value]] *fset.look.use_color_value*
-** 説明: pass:none[色オプションの値を表示する際に使う色]
+* [[option_weechat.look.separator_vertical]] *weechat.look.separator_vertical*
+** 説明: pass:none[バーとウィンドウ周囲の垂直セパレータ文字 (空の場合は ncurses で線を描画するが、いくつかの端末では URL 選択の際にバグを生ずる可能性がある); 必ず画面上に描画した時の文字幅が 1 の文字を指定してください]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+""+`
+
+* [[option_weechat.look.tab_width]] *weechat.look.tab_width*
+** 説明: pass:none[メッセージに含まれるタブ文字を表示する際に使う空白文字の数]
+** タイプ: 整数
+** 値: 1 .. 64
+** デフォルト値: `+1+`
+
+* [[option_weechat.look.time_format]] *weechat.look.time_format*
+** 説明: pass:none[文字列へ変換されてメッセージ中に表示される日付の時間書式 (日付/時間指定子は strftime の man を参照してください)]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+"%a, %d %b %Y %T"+`
+
+* [[option_weechat.look.window_auto_zoom]] *weechat.look.window_auto_zoom*
+** 説明: pass:none[端末のサイズがすべてのウィンドウを表示するには小さすぎる場合、自動的に現在のウィンドウにズームする (端末のサイズが十分に大きい場合は、alt-z を使ってウィンドウのズームを戻してください)]
** タイプ: ブール
** 値: on, off
** デフォルト値: `+off+`
-* [[option_fset.look.use_keys]] *fset.look.use_keys*
-** 説明: pass:none[fset バッファ内でオプションに対する操作を行う際に alt+X を使う; これを無効化する場合、操作時にコマンド入力が必要になります]
+* [[option_weechat.look.window_separator_horizontal]] *weechat.look.window_separator_horizontal*
+** 説明: pass:none[ウィンドウ間に水平セパレータを表示]
** タイプ: ブール
** 値: on, off
** デフォルト値: `+on+`
-* [[option_fset.look.use_mute]] *fset.look.use_mute*
-** 説明: pass:none[オプション設定時に /mute コマンドを使う]
+* [[option_weechat.look.window_separator_vertical]] *weechat.look.window_separator_vertical*
+** 説明: pass:none[ウィンドウ間に垂直セパレータを表示]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+on+`
+
+* [[option_weechat.look.window_title]] *weechat.look.window_title*
+** 説明: pass:none[起動時に設定するウィンドウタイトル (Curses GUI 端末タイトル); 空文字列の場合、タイトルは変更されません (注意: 値は評価されます、/help eval を参照してください); 例: "WeeChat ${info:version}"]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+""+`
+
+* [[option_weechat.look.word_chars_highlight]] *weechat.look.word_chars_highlight*
+** 説明: pass:none[ハイライトする部分または文字と見なす文字 (または文字範囲) のカンマ区切りリスト; それぞれの要素は単一文字、文字範囲 (書式: a-z)、全角文字のクラス (例えば "alnum"、wctype の man 参照); 要素の前の "!" は否定を意味します (この文字は単語の一部とみなされません); "*" は任意の文字にマッチします; unicode 文字は \u1234 書式で使うことができます、例えば \u00A0 は固定スペースを意味します (サポートされる書式は /help print を参照してください)]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+"!\u00A0,-,_,|,alnum"+`
+
+* [[option_weechat.look.word_chars_input]] *weechat.look.word_chars_input*
+** 説明: pass:none[コマンドラインの一部または単語と見なす文字 (または文字範囲) のカンマ区切りリスト; それぞれの要素は単一文字、文字範囲 (書式: a-z)、全角文字のクラス (例えば "alnum"、wctype の man 参照); 要素の前の "!" は否定を意味します (この文字は単語の一部とみなされません); "*" は任意の文字にマッチします; unicode 文字は \u1234 書式で使うことができます、例えば \u00A0 は固定スペースを意味します (サポートされる書式は /help print を参照してください)]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+"!\u00A0,-,_,|,alnum"+`
+
+* [[option_weechat.network.connection_timeout]] *weechat.network.connection_timeout*
+** 説明: pass:none[リモートホストへの接続タイムアウト時間 (秒単位) (子プロセスが行う)]
+** タイプ: 整数
+** 値: 1 .. 2147483647
+** デフォルト値: `+60+`
+
+* [[option_weechat.network.gnutls_ca_system]] *weechat.network.gnutls_ca_system*
+** 説明: pass:none[load system's default trusted certificate authorities on startup; this can be turned off to save some memory only if you are not using SSL connections at all]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+on+`
+
+* [[option_weechat.network.gnutls_ca_user]] *weechat.network.gnutls_ca_user*
+** 説明: pass:none[extra file(s) with certificate authorities; multiple files must be separated by colons (each path is evaluated, see function string_eval_path_home in plugin API reference)]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+""+`
+
+* [[option_weechat.network.gnutls_handshake_timeout]] *weechat.network.gnutls_handshake_timeout*
+** 説明: pass:none[gnutls ハンドシェイクのタイムアウト (秒単位)]
+** タイプ: 整数
+** 値: 1 .. 2147483647
+** デフォルト値: `+30+`
+
+* [[option_weechat.network.proxy_curl]] *weechat.network.proxy_curl*
+** 説明: pass:none[Curl を利用した URL のダウンロード時に利用するプロキシの名前 (スクリプトのリストをダウンロードする際および hook_process 関数から呼び出されるスクリプト内で利用); プロキシを定義するには /proxy コマンドを利用してください]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+""+`
+
+* [[option_weechat.plugin.autoload]] *weechat.plugin.autoload*
+** 説明: pass:none[スタートアップ時にロードするプラグインのコンマ区切りリスト、"*" は見つかった全てのプラグイン、"!" から始まる名前はロードしないプラグイン、名前にワイルドカード "*" を使うことができます (例: "*" または "*,!lua,!tcl")]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+"*"+`
+
+* [[option_weechat.plugin.extension]] *weechat.plugin.extension*
+** 説明: pass:none[プラグインのファイル拡張子のコンマ区切りリスト]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+".so,.dll"+`
+
+* [[option_weechat.plugin.path]] *weechat.plugin.path*
+** 説明: pass:none[path for searching plugins (path is evaluated, see function string_eval_path_home in plugin API reference)]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+"${weechat_data_dir}/plugins"+`
+
+* [[option_weechat.plugin.save_config_on_unload]] *weechat.plugin.save_config_on_unload*
+** 説明: pass:none[プラグインをアンロードする際に設定ファイルをセーブ]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+on+`
+
+* [[option_weechat.signal.sighup]] *weechat.signal.sighup*
+** 説明: pass:none[command to execute when the signal is received, multiple commands can be separated by semicolons (note: commands are evaluated, see /help eval)]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+"${if:${info:weechat_headless}?/reload:/quit -yes}"+`
+
+* [[option_weechat.signal.sigquit]] *weechat.signal.sigquit*
+** 説明: pass:none[command to execute when the signal is received, multiple commands can be separated by semicolons (note: commands are evaluated, see /help eval)]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+"/quit -yes"+`
+
+* [[option_weechat.signal.sigterm]] *weechat.signal.sigterm*
+** 説明: pass:none[command to execute when the signal is received, multiple commands can be separated by semicolons (note: commands are evaluated, see /help eval)]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+"/quit -yes"+`
+
+* [[option_weechat.signal.sigusr1]] *weechat.signal.sigusr1*
+** 説明: pass:none[command to execute when the signal is received, multiple commands can be separated by semicolons (note: commands are evaluated, see /help eval)]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+""+`
+
+* [[option_weechat.signal.sigusr2]] *weechat.signal.sigusr2*
+** 説明: pass:none[command to execute when the signal is received, multiple commands can be separated by semicolons (note: commands are evaluated, see /help eval)]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+""+`
+
+* [[option_weechat.startup.command_after_plugins]] *weechat.startup.command_after_plugins*
+** 説明: pass:none[command executed when WeeChat starts, after loading plugins; multiple commands can be separated by semicolons (note: commands are evaluated, see /help eval)]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+""+`
+
+* [[option_weechat.startup.command_before_plugins]] *weechat.startup.command_before_plugins*
+** 説明: pass:none[command executed when WeeChat starts, before loading plugins; multiple commands can be separated by semicolons (note: commands are evaluated, see /help eval)]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+""+`
+
+* [[option_weechat.startup.display_logo]] *weechat.startup.display_logo*
+** 説明: pass:none[WeeChat ロゴを開始時に表示]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+on+`
+
+* [[option_weechat.startup.display_version]] *weechat.startup.display_version*
+** 説明: pass:none[WeeChat バージョンを開始時に表示]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+on+`
+
+* [[option_weechat.startup.sys_rlimit]] *weechat.startup.sys_rlimit*
+** 説明: pass:none[WeeChat プロセスのリソースを制限する、書式: "res1:limit1,res2:limit2"; リソース名は定数 (RLIMIT_XXX) の最後の語を小文字で (値は man setrlimit を参照してください) 記述; 値の -1 は "無制限" の意; 例: core ファイルのサイズ制限を無制限に仮想メモリを 1GB に制限: "core:-1,as:1000000000"]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+""+`
+// end::weechat_options[]
+
+// tag::xfer_options[]
+* [[option_xfer.color.status_aborted]] *xfer.color.status_aborted*
+** 説明: pass:none["中止" 状態のテキスト色]
+** タイプ: 色
+** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** デフォルト値: `+lightred+`
+
+* [[option_xfer.color.status_active]] *xfer.color.status_active*
+** 説明: pass:none["アクティブ" 状態のテキスト色]
+** タイプ: 色
+** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** デフォルト値: `+lightblue+`
+
+* [[option_xfer.color.status_connecting]] *xfer.color.status_connecting*
+** 説明: pass:none["接続中" 状態のテキスト色]
+** タイプ: 色
+** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** デフォルト値: `+yellow+`
+
+* [[option_xfer.color.status_done]] *xfer.color.status_done*
+** 説明: pass:none["終了" 状態のテキスト色]
+** タイプ: 色
+** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** デフォルト値: `+lightgreen+`
+
+* [[option_xfer.color.status_failed]] *xfer.color.status_failed*
+** 説明: pass:none["失敗" 状態のテキスト色]
+** タイプ: 色
+** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** デフォルト値: `+lightred+`
+
+* [[option_xfer.color.status_waiting]] *xfer.color.status_waiting*
+** 説明: pass:none["接続待ち" 状態のテキスト色]
+** タイプ: 色
+** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** デフォルト値: `+lightcyan+`
+
+* [[option_xfer.color.text]] *xfer.color.text*
+** 説明: pass:none[xfer バッファのテキスト色]
+** タイプ: 色
+** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** デフォルト値: `+default+`
+
+* [[option_xfer.color.text_bg]] *xfer.color.text_bg*
+** 説明: pass:none[xfer バッファの背景色]
+** タイプ: 色
+** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** デフォルト値: `+default+`
+
+* [[option_xfer.color.text_selected]] *xfer.color.text_selected*
+** 説明: pass:none[xfer バッファで選択された行のテキスト色]
+** タイプ: 色
+** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** デフォルト値: `+white+`
+
+* [[option_xfer.file.auto_accept_chats]] *xfer.file.auto_accept_chats*
+** 説明: pass:none[チャット要求を自動的に許可 (注意して使用!)]
** タイプ: ブール
** 値: on, off
** デフォルト値: `+off+`
-// end::fset_options[]
+
+* [[option_xfer.file.auto_accept_files]] *xfer.file.auto_accept_files*
+** 説明: pass:none[ファイルを自動的に受信 (注意して使用!)]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+off+`
+
+* [[option_xfer.file.auto_accept_nicks]] *xfer.file.auto_accept_nicks*
+** 説明: pass:none[comma-separated list of nicks for which the incoming files and chats are automatically accepted; format is "server.nick" (for a specific server) or "nick" (for all servers); example: "libera.FlashCode,andrew"]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+""+`
+
+* [[option_xfer.file.auto_check_crc32]] *xfer.file.auto_check_crc32*
+** 説明: pass:none[ファイル名に CRC32 ファイルチェックサム (8 桁の 16 進数) が含まれている場合、自動的に CRC32 ファイルチェックサムを確認]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+off+`
+
+* [[option_xfer.file.auto_rename]] *xfer.file.auto_rename*
+** 説明: pass:none[既に存在する場合、受信ファイルをリネームする (".1"、".2"、...を追加)]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+on+`
+
+* [[option_xfer.file.auto_resume]] *xfer.file.auto_resume*
+** 説明: pass:none[リモートホストとの接続が切れた場合、自動的にファイル転送をリジュームする]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+on+`
+
+* [[option_xfer.file.convert_spaces]] *xfer.file.convert_spaces*
+** 説明: pass:none[ファイルの送受信時にスペースをアンダースコアに変換]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+on+`
+
+* [[option_xfer.file.download_path]] *xfer.file.download_path*
+** 説明: pass:none[path for writing incoming files (path is evaluated, see function string_eval_path_home in plugin API reference)]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+"${weechat_data_dir}/xfer"+`
+
+* [[option_xfer.file.download_temporary_suffix]] *xfer.file.download_temporary_suffix*
+** 説明: pass:none[temporary filename suffix used during the transfer for a file received, it is removed after successful transfer; if empty string, no filename suffix is used during the transfer]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+".part"+`
+
+* [[option_xfer.file.upload_path]] *xfer.file.upload_path*
+** 説明: pass:none[path for reading files when sending (path is evaluated, see function string_eval_path_home in plugin API reference)]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+"~"+`
+
+* [[option_xfer.file.use_nick_in_filename]] *xfer.file.use_nick_in_filename*
+** 説明: pass:none[ファイルを受信する際にローカルファイル名のプレフィックスとしてリモートニックネームを使用]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+on+`
+
+* [[option_xfer.look.auto_open_buffer]] *xfer.look.auto_open_buffer*
+** 説明: pass:none[新しい xfer がリストに追加されたら xfer バッファを自動的に開く]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+on+`
+
+* [[option_xfer.look.progress_bar_size]] *xfer.look.progress_bar_size*
+** 説明: pass:none[プログレスバーのサイズ、文字数単位 (0 の場合、プログレスバーを使わない)]
+** タイプ: 整数
+** 値: 0 .. 256
+** デフォルト値: `+20+`
+
+* [[option_xfer.look.pv_tags]] *xfer.look.pv_tags*
+** 説明: pass:none[プライベートメッセージに使われたタグのコンマ区切りリスト、例: "notify_message"、"notify_private"、"notify_highlight"]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+"notify_private"+`
+
+* [[option_xfer.network.blocksize]] *xfer.network.blocksize*
+** 説明: pass:none[送信パケットのブロックサイズ、バイト単位]
+** タイプ: 整数
+** 値: 1024 .. 102400
+** デフォルト値: `+65536+`
+
+* [[option_xfer.network.fast_send]] *xfer.network.fast_send*
+** 説明: pass:none[ファイル送信時に肯定応答を待たない]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+on+`
+
+* [[option_xfer.network.own_ip]] *xfer.network.own_ip*
+** 説明: pass:none[ファイル/チャットの送信に使う IP か DNS アドレス (空の場合、ローカルインターフェース IP を使う)]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+""+`
+
+* [[option_xfer.network.port_range]] *xfer.network.port_range*
+** 説明: pass:none[ファイル/チャットを送信する際に、与えられた範囲のポートを使う (NAT で便利) ことを強制 (構文: 単一のポートを指定する場合は 5000 等、ポート範囲の場合は 5000-5015 等、空は任意のポートを意味する、1024 以下のポート番号は root 以外使えないため、1024 以上のポート番号を使うことを推奨)]
+** タイプ: 文字列
+** 値: 未制約文字列
+** デフォルト値: `+""+`
+
+* [[option_xfer.network.send_ack]] *xfer.network.send_ack*
+** 説明: pass:none[ファイル受信時に ack を送信; ack 送信を無効化すると、送信側が ack の受信を待つ (例えば送信側が xfer.network.fast_send を off に設定した WeeChat を使う) 場合にファイル転送が途中で停止される可能性があります; その一方で、ack 送信を無効化すると、送信側へすぐに ack を送信しなくとも途中停止を避けることができるかもしれません]
+** タイプ: ブール
+** 値: on, off
+** デフォルト値: `+on+`
+
+* [[option_xfer.network.speed_limit_recv]] *xfer.network.speed_limit_recv*
+** 説明: pass:none[ファイル受信の速度制限、1 秒あたりのキロバイトで指定 (0 は制限無し)]
+** タイプ: 整数
+** 値: 0 .. 2147483647
+** デフォルト値: `+0+`
+
+* [[option_xfer.network.speed_limit_send]] *xfer.network.speed_limit_send*
+** 説明: pass:none[ファイル送信の速度制限、1 秒あたりのキロバイトで指定 (0 は制限無し)]
+** タイプ: 整数
+** 値: 0 .. 2147483647
+** デフォルト値: `+0+`
+
+* [[option_xfer.network.timeout]] *xfer.network.timeout*
+** 説明: pass:none[xfer 要求のタイムアウト (秒単位)]
+** タイプ: 整数
+** 値: 5 .. 2147483647
+** デフォルト値: `+300+`
+// end::xfer_options[]
diff --git a/doc/pl/includes/autogen_user_commands.pl.adoc b/doc/pl/includes/autogen_user_commands.pl.adoc
index 02a89144a..d9699f42a 100644
--- a/doc/pl/includes/autogen_user_commands.pl.adoc
+++ b/doc/pl/includes/autogen_user_commands.pl.adoc
@@ -1072,36 +1072,40 @@ cel: odpowiedź powinna pasować do maski
----
/alias list [<alias>]
- add <alias> [<komenda>[;<komenda>...]]
- addcompletion <dopełnienie> <alias> [<komenda>[;<komenda>...]]
+ add <alias> [<command>[;<command>...]]
+ addcompletion <completion> <alias> [<command>[;<command>...]]
del <alias> [<alias>...]
+ rename <alias> <new_alias>
+
+ list: list aliases (without argument, this list is displayed)
+ add: add an alias
+addcompletion: add an alias with a custom completion
+ del: delete an alias
+ rename: rename an alias
+ completion: completion for alias: by default completion is done with target command
+ note: you can use %%command to use completion of an existing command
+ alias: name of alias
+ command: command name with arguments (many commands can be separated by semicolons)
+
+Note: in command, special variables are replaced:
+ $n: argument 'n' (between 1 and 9)
+ $-m: arguments from 1 to 'm'
+ $n-: arguments from 'n' to last
+ $n-m: arguments from 'n' to 'm'
+ $*: all arguments
+ $~: last argument
+ $var: where "var" is a local variable of buffer (see /buffer listvar)
+ examples: $nick, $channel, $server, $plugin, $name
- list: lista aliasów (ta lista wyświetlana jest jeśli nie zostanie podany argument)
- add: dodaje alias
-addcompletion: dodaje alias z niestandardowym dopełnieniem
- del: usuwa alias
- completion: dopełnienie dla aliasu: domyślnie dopełnienie wykonuje się z docelową komendą
- uwaga: można użyć %%komenda w celu użycia dopełnień dla istniejących komend
- alias: nazwa aliasu
- komenda: nazwa komendy (wiele komend można oddzielić za pomocą średnika)
-
-Ważne: dla komend specjalne zmienne są zastępowane odpowiednimi wartościami:
- $n: argument 'n' (pomiędzy 1 i 9)
- $-m: argumenty od 1 do 'm'
- $n-: argumenty od 'n' do ostatniego
- $n-m: argumenty od 'n' od 'm'
- $*: wszystkie argumenty
- $~: ostatni argument
- $var: gdzie "var" to zmienna lokalna buforu (zobacz /buffer localvar)
- przykłady: $nick, $channel, $server, $plugin, $name
-
-Przykłady:
- alias /split do poziomego podziału okna:
- /alias split /window splith
- alias /hello pisze "hello" na wszystkich kanałach poza #weechat:
- /alias hello /allchan -exclude=#weechat hello
- alias /forcejoin wysyłający komende IRC "forcejoin" z dopełnieniem dla /sajoin:
- /alias -completion %%sajoin forcejoin /quote forcejoin
+Examples:
+ alias /split to split window horizontally:
+ /alias add split /window splith
+ alias /hello to say "hello" on all channels but not on #weechat:
+ /alias add hello /allchan -exclude=#weechat hello
+ rename alias "hello" to "Hello":
+ /alias rename hello Hello
+ alias /forcejoin to send IRC command "forcejoin" with completion of /sajoin:
+ /alias addcompletion %%sajoin forcejoin /quote forcejoin
----
// end::alias_commands[]
diff --git a/doc/pl/includes/autogen_user_default_aliases.pl.adoc b/doc/pl/includes/autogen_user_default_aliases.pl.adoc
index 87a19a17c..c6ffb73de 100644
--- a/doc/pl/includes/autogen_user_default_aliases.pl.adoc
+++ b/doc/pl/includes/autogen_user_default_aliases.pl.adoc
@@ -8,37 +8,37 @@
|===
| Alias | Komenda | Dopełnienie
-| /AAWAY | /allserv /away | -
-| /ANICK | /allserv /nick | -
-| /BEEP | /print -beep | -
-| /BYE | /quit | -
-| /C | /buffer clear | -
-| /CL | /buffer clear | -
-| /CLOSE | /buffer close | -
-| /CHAT | /dcc chat | -
-| /EXIT | /quit | -
-| /IG | /ignore | -
-| /J | /join | -
-| /K | /kick | -
-| /KB | /kickban | -
-| /LEAVE | /part | -
-| /M | /msg | -
-| /MUB | /unban * | -
-| /MSGBUF | /command -buffer $1 * /input send $2- | %(buffers_plugins_names)
-| /N | /names | -
-| /Q | /query | -
-| /REDRAW | /window refresh | -
-| /SAY | /msg * | -
-| /SIGNOFF | /quit | -
-| /T | /topic | -
-| /UB | /unban | -
-| /UMODE | /mode $nick | -
-| /V | /command core version | -
-| /W | /who | -
-| /WC | /window close | -
-| /WI | /whois | -
-| /WII | /whois $1 $1 | -
-| /WM | /window merge | -
-| /WW | /whowas | -
+| /aaway | /allserv /away | -
+| /anick | /allserv /nick | -
+| /beep | /print -beep | -
+| /bye | /quit | -
+| /c | /buffer clear | -
+| /cl | /buffer clear | -
+| /close | /buffer close | -
+| /chat | /dcc chat | -
+| /exit | /quit | -
+| /ig | /ignore | -
+| /j | /join | -
+| /k | /kick | -
+| /kb | /kickban | -
+| /leave | /part | -
+| /m | /msg | -
+| /mub | /unban * | -
+| /msgbuf | /command -buffer $1 * /input send $2- | %(buffers_plugins_names)
+| /n | /names | -
+| /q | /query | -
+| /redraw | /window refresh | -
+| /say | /msg * | -
+| /signoff | /quit | -
+| /t | /topic | -
+| /ub | /unban | -
+| /umode | /mode $nick | -
+| /v | /command core version | -
+| /w | /who | -
+| /wc | /window close | -
+| /wi | /whois | -
+| /wii | /whois $1 $1 | -
+| /wm | /window merge | -
+| /ww | /whowas | -
|===
// end::default_aliases[]
diff --git a/doc/pl/includes/autogen_user_options.pl.adoc b/doc/pl/includes/autogen_user_options.pl.adoc
index ff2fe5055..9463efa83 100644
--- a/doc/pl/includes/autogen_user_options.pl.adoc
+++ b/doc/pl/includes/autogen_user_options.pl.adoc
@@ -3,2109 +3,725 @@
// DO NOT EDIT BY HAND!
//
-// tag::sec_options[]
-* [[option_sec.crypt.cipher]] *sec.crypt.cipher*
-** opis: pass:none[szyfr używany do szyfrowania danych (numer za nazwą algorytmu to długość klucza w bitach)]
-** typ: liczba
-** wartości: aes128, aes192, aes256
-** domyślna wartość: `+aes256+`
+// tag::buflist_options[]
+* [[option_buflist.format.buffer]] *buflist.format.buffer*
+** opis: pass:none[format każdej linii w buforze (uwaga: zawartość jest przetwarzana, zobacz /help buflist); przykład: standardowy format dla elementu paska „buflist” i tylko numer bufora w nawiasach kwadratowych dla pozostałych elementów („buflist2” i „buflist3”): "${if:${bar_item.name}==buflist?${format_number}${indent}${format_nick_prefix}${color_hotlist}${format_name}:[${number}\]}"]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+"${format_number}${indent}${format_nick_prefix}${color_hotlist}${format_name}"+`
-* [[option_sec.crypt.hash_algo]] *sec.crypt.hash_algo*
-** opis: pass:none[algorytm haszujący użyty do sprawdzenia rozszyfrowanych danych]
-** typ: liczba
-** wartości: sha224, sha256, sha384, sha512
-** domyślna wartość: `+sha256+`
+* [[option_buflist.format.buffer_current]] *buflist.format.buffer_current*
+** opis: pass:none[format linii z obecnym buforem (uwaga: zawartość jest przetwarzana, zobacz /help buflist)]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+"${color:,blue}${format_buffer}"+`
-* [[option_sec.crypt.passphrase_command]] *sec.crypt.passphrase_command*
-** opis: pass:none[czyta hasło z wyjścia komendy systemowej (tylko pierwsza linia jest używana i nie może zawierać żadnych dodatkowych znaków); ta opcja jest używana tylko podczas odczytu pliku sec.conf i jeśli zmienna środowiskowa "WEECHAT_PASSPHRASE" nie jest ustawiona (zmienna środowiskowa ma wyższy priorytet); przykład z magazynem haseł: "/usr/bin/pass show weechat/passphrase"]
+* [[option_buflist.format.hotlist]] *buflist.format.hotlist*
+** opis: pass:none[format hotlisty (uwaga: zawartość jest przetwarzana, zobacz /help buflist)]
** typ: ciąg
** wartości: dowolny ciąg
-** domyślna wartość: `+""+`
+** domyślna wartość: `+" ${color:green}(${hotlist}${color:green})"+`
-* [[option_sec.crypt.salt]] *sec.crypt.salt*
-** opis: pass:none[użyj "solenia" podczas generowania klucza używanego w szyfrowaniu (zalecane dla maksimum bezpieczeństwa); jeśli włączone zawartość zaszyfrowanych danych w pliku sec.conf będzie się zmieniać z każdym zapisem pliku; jeśli plik sec.conf zostanie umieszczony w systemie kontroli wersji, można wyłączyć tą opcję (zawartość pliku będzie zawsze taka sama)]
+* [[option_buflist.format.hotlist_highlight]] *buflist.format.hotlist_highlight*
+** opis: pass:none[format dla bufora z poziomem hotlisty "highlight" (uwaga: zawartość jest przetwarzana, zobacz /help buflist)]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+"${color:magenta}"+`
+
+* [[option_buflist.format.hotlist_low]] *buflist.format.hotlist_low*
+** opis: pass:none[format dla bufora z poziomem hotlisty "low" (uwaga: zawartość jest przetwarzana, zobacz /help buflist)]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+"${color:white}"+`
+
+* [[option_buflist.format.hotlist_message]] *buflist.format.hotlist_message*
+** opis: pass:none[format dla bufora z poziomem hotlisty "message" (uwaga: zawartość jest przetwarzana, zobacz /help buflist)]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+"${color:brown}"+`
+
+* [[option_buflist.format.hotlist_none]] *buflist.format.hotlist_none*
+** opis: pass:none[format dla bufora nie znajdującego się na hotliście (uwaga: zawartość jest przetwarzana, zobacz /help buflist)]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+"${color:default}"+`
+
+* [[option_buflist.format.hotlist_private]] *buflist.format.hotlist_private*
+** opis: pass:none[format dla bufora z poziomem hotlisty "private" (uwaga: zawartość jest przetwarzana, zobacz /help buflist)]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+"${color:green}"+`
+
+* [[option_buflist.format.hotlist_separator]] *buflist.format.hotlist_separator*
+** opis: pass:none[separator dla zliczeń na hotliście (uwaga: zawartość jest przetwarzana, zobacz /help buflist)]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+"${color:default},"+`
+
+* [[option_buflist.format.indent]] *buflist.format.indent*
+** opis: pass:none[ciąg wyświetlany dla wyrównania kanału i prywatnego bufora (uwaga: zawartość jest przetwarzana, zobacz /help buflist)]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+" "+`
+
+* [[option_buflist.format.lag]] *buflist.format.lag*
+** opis: pass:none[format dla opóźnienia dla buforu serwera IRC (uwaga: zawartość jest przetwarzana, zobacz /help buflist)]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+" ${color:green}[${color:brown}${lag}${color:green}]"+`
+
+* [[option_buflist.format.name]] *buflist.format.name*
+** opis: pass:none[format dla nazwy bufora (uwaga: zawartość jest przetwarzana, zobacz /help buflist)]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+"${name}"+`
+
+* [[option_buflist.format.nick_prefix]] *buflist.format.nick_prefix*
+** opis: pass:none[format dla prefiksu nicka na kanale (uwaga: zawartość jest przetwarzana, zobacz /help buflist)]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+"${color_nick_prefix}${nick_prefix}"+`
+
+* [[option_buflist.format.number]] *buflist.format.number*
+** opis: pass:none[format dla numeru bufora, ${number} to wyrównany numr (uwaga: zawartość jest przetwarzana, zobacz /help buflist)]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+"${color:green}${number}${if:${number_displayed}?.: }"+`
+
+* [[option_buflist.format.tls_version]] *buflist.format.tls_version*
+** opis: pass:none[format dla wersji TLS w buforze serwera IRC (uwaga: zawartość jest przetwarzana, zobacz /help buflist)]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+" ${color:default}(${if:${tls_version}==TLS1.3?${color:green}:${if:${tls_version}==TLS1.2?${color:yellow}:${color:red}}}${translate:${tls_version}}${color:default})"+`
+
+* [[option_buflist.look.add_newline]] *buflist.look.add_newline*
+** opis: pass:none[dodaje pustą linię pomiędzy wyświetlanymi buforami, każdy bufor jest wyświetlany w oddzielnej linii (zalecane); jeśli wyłączone, nowe linie muszą być manualnie dodawane w formatach za pomocą "${\n}", oraz akcje myszy przestają być możliwe]
** typ: bool
** wartości: on, off
** domyślna wartość: `+on+`
-// end::sec_options[]
-// tag::weechat_options[]
-* [[option_weechat.color.bar_more]] *weechat.color.bar_more*
-** opis: pass:none[kolor tekstu dla "+" przy przewijaniu pasków]
-** typ: kolor
-** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+lightmagenta+`
+* [[option_buflist.look.auto_scroll]] *buflist.look.auto_scroll*
+** opis: pass:none[automatycznie przewiń litę kanałów, żeby zawsze wyświetlała obecny bufor (działa tylko, kiedy lita kanałów ma pozycję lewo/prawo z uzupełnianiem "vertical"); ta wartość określa procentowo ilość linii wyświetlanych przed obecnym buforem podczas przewijania (-1 = wyłącz przewijanie); na przykład 50 oznacza, że po przewinięciu obecny bufor jest na środku listy, 0 oznacza górę listy, 100 dół listy]
+** typ: liczba
+** wartości: -1 .. 100
+** domyślna wartość: `+50+`
-* [[option_weechat.color.chat]] *weechat.color.chat*
-** opis: pass:none[kolor tekstu czatu]
-** typ: kolor
-** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+default+`
+* [[option_buflist.look.display_conditions]] *buflist.look.display_conditions*
+** opis: pass:none[warunki do wyświetlenia buforu (uwaga: zawartość jest przetwarzana, zobacz /help buflist); na przykład w celu ukrycia buforów serwerów, kiedy są połączone z głównym buforem: "${buffer.hidden}==0 && ((${type}!=server && ${buffer.full_name}!=core.weechat) || ${buffer.active}==1)"]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+"${buffer.hidden}==0"+`
-* [[option_weechat.color.chat_bg]] *weechat.color.chat_bg*
-** opis: pass:none[kolor tła czatu]
-** typ: kolor
-** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+default+`
+* [[option_buflist.look.enabled]] *buflist.look.enabled*
+** opis: pass:none[włącza listę buforów; zaleca się użycie tej opcji zamiast ukrywania paska, usuwa także wewnętrzne hooki, które nie są potrzebne kiedy pasek jest ukryty; możesz użyć komendy "/buflist toggle" lub domyślnego skrótu klawiszowego alt+shift+b]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+on+`
-* [[option_weechat.color.chat_buffer]] *weechat.color.chat_buffer*
-** opis: pass:none[kolor nazw buforów]
-** typ: kolor
-** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+white+`
+* [[option_buflist.look.mouse_jump_visited_buffer]] *buflist.look.mouse_jump_visited_buffer*
+** opis: pass:none[jeśli włączone, kliknięcie lewym/prawym przyciskiem na linii z obecnym buforem przeskakuje do poprzedniego/następnego odwiedzonego buforu]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+off+`
-* [[option_weechat.color.chat_channel]] *weechat.color.chat_channel*
-** opis: pass:none[kolor nazw kanałów]
-** typ: kolor
-** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+white+`
+* [[option_buflist.look.mouse_move_buffer]] *buflist.look.mouse_move_buffer*
+** opis: pass:none[jeśli włączone, gesty myszy (przeciągnij i upuść) przesuwają bufory na liście]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+on+`
-* [[option_weechat.color.chat_day_change]] *weechat.color.chat_day_change*
-** opis: pass:none[kolor tekstu dla wiadomości o zmianie daty]
-** typ: kolor
-** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+cyan+`
+* [[option_buflist.look.mouse_wheel]] *buflist.look.mouse_wheel*
+** opis: pass:none[jeśli włączone, ruch rolką myszy w góre/dół przeskakuje do poprzedniego/następnego bufora na liście]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+on+`
-* [[option_weechat.color.chat_delimiters]] *weechat.color.chat_delimiters*
-** opis: pass:none[kolor separatorów]
-** typ: kolor
-** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+green+`
+* [[option_buflist.look.nick_prefix]] *buflist.look.nick_prefix*
+** opis: pass:none[pobiera prefiks i kolor nicka na liście nicków, dzięki czemu ${nick_prefix} może byc użyte w formacie; może to być wolne w buforach z duża ilością nicków widocznych na licie nicków, opcja domyślnie wyłączona]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+off+`
-* [[option_weechat.color.chat_highlight]] *weechat.color.chat_highlight*
-** opis: pass:none[kolor przedrostka podświetlenia]
-** typ: kolor
-** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+yellow+`
+* [[option_buflist.look.nick_prefix_empty]] *buflist.look.nick_prefix_empty*
+** opis: pass:none[kiedy prefiks nicka jet włączony, wywietla spacje, kiedy nick nie ma prefiksu w buforze]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+on+`
-* [[option_weechat.color.chat_highlight_bg]] *weechat.color.chat_highlight_bg*
-** opis: pass:none[kolor tła przedrostka podświetlenia]
-** typ: kolor
-** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+magenta+`
+* [[option_buflist.look.signals_refresh]] *buflist.look.signals_refresh*
+** opis: pass:none[oddzielona przecinkami lista dodatkowych podłączonych sygnałów i wyzwalających odświeżenie listy buforów; może to być przydatne jeśli ustawione są jakieś zmienne używane do formatowania wymagające odpowiedniego odświeżania]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+""+`
-* [[option_weechat.color.chat_host]] *weechat.color.chat_host*
-** opis: pass:none[kolor nazw hostów]
-** typ: kolor
-** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+cyan+`
+* [[option_buflist.look.sort]] *buflist.look.sort*
+** opis: pass:none[oddzielona przecinkami lista pól do sortowania buforów; każde pole to zmienna hdata bufora ("var"), zmienna hdata serwera IRC ("irc_server.var") lub zmienna hdata kanału IRC ("irc_channel.var"); znak "-" użyty przed nazwą pola odwraca kolejność, znak "~" może zostać użyty do porównań niewrażliwych na wielkość liter; przykład: "-~short_name" dla sortowania odwrotnego, niewrażliwego na wielkość liter po skróconej nazwie bufora (uwaga: zawartość jest przetwarzana zanim zostanie podzielona na pola, "bar_item" to jedyna zmienna, jaka może zostać użyta w celu rozróżnienia buforów, na przykład "${bar_item.name}")]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+"number,-active"+`
-* [[option_weechat.color.chat_inactive_buffer]] *weechat.color.chat_inactive_buffer*
-** opis: pass:none[kolor tekstu dla rozmowy, kiedy linia nie jest aktywna (bufor jest połączony z innymi i nie został wybrany)]
-** typ: kolor
-** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+default+`
+* [[option_buflist.look.use_items]] *buflist.look.use_items*
+** opis: pass:none[ilość elementów „buflist” na pasku, które mogą zostać użyte; nazwy tych elementów to: "buflist", "buflist2", "buflist3"; używanie więcej niż jednego elementu paska spowalnia wyświetlanie listy buforów]
+** typ: liczba
+** wartości: 1 .. 3
+** domyślna wartość: `+1+`
+// end::buflist_options[]
-* [[option_weechat.color.chat_inactive_window]] *weechat.color.chat_inactive_window*
-** opis: pass:none[kolor tekstu dla rozmowy, kiedy okno jest nieaktywne (obecnie nie wybrane okno)]
+// tag::charset_options[]
+* [[option_charset.default.decode]] *charset.default.decode*
+** opis: pass:none[globalne dekodowanie: kodowanie użyte do dekodowania przychodzących wiadomości, kiedy nie są one zgodne z UTF-8]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+"iso-8859-1"+`
+
+* [[option_charset.default.encode]] *charset.default.encode*
+** opis: pass:none[globalne dekodowanie: kodowanie użyte do dekodowania wychodzących wiadomości (jeśli się nie powiedzie, zostanie przywrócone UTF-8, ponieważ jest to domyślne kodowanie w WeeChat)]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+""+`
+// end::charset_options[]
+
+// tag::exec_options[]
+* [[option_exec.color.flag_finished]] *exec.color.flag_finished*
+** opis: pass:none[kolor tekstu dla flagi zakończonej komendy na liście komend]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+default+`
+** domyślna wartość: `+lightred+`
-* [[option_weechat.color.chat_nick]] *weechat.color.chat_nick*
-** opis: pass:none[kolor tekstu dla nicków w ekranach rozmów: używane w niektórych wiadomościach serwera i w wypadku nie znalezieniu koloru nicka; w większości przypadków kolor nicka jest brany z opcji weechat.color.chat_nick_colors]
+* [[option_exec.color.flag_running]] *exec.color.flag_running*
+** opis: pass:none[kolor dla flagi wykonywanej komendy na liście komend]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+lightcyan+`
+** domyślna wartość: `+lightgreen+`
-* [[option_weechat.color.chat_nick_colors]] *weechat.color.chat_nick_colors*
-** opis: pass:none[kolor tekstu nicków (oddzielona przecinkami lista kolorów, tło jest dozwolone za pomocą formatu: "fg:bg" na przykład: "lightred:blue")]
+* [[option_exec.command.default_options]] *exec.command.default_options*
+** opis: pass:none[domyślne opcje dla komendy /exec (zobacz /help exec): przykład: "-nosh -bg" uruchomi wszystkie komendy w tle (brak wyjścia) i bez używania powłoki]
** typ: ciąg
** wartości: dowolny ciąg
-** domyślna wartość: `+"cyan,magenta,green,brown,lightblue,default,lightcyan,lightmagenta,lightgreen,blue"+`
+** domyślna wartość: `+""+`
-* [[option_weechat.color.chat_nick_offline]] *weechat.color.chat_nick_offline*
-** opis: pass:none[kolor tekstu dla nieobecnego nicka (nie występuje już na liście nicków); ten kolor używany jest tylko jeśli włączona jest opcja weechat.look.color_nick_offline]
-** typ: kolor
-** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+default+`
+* [[option_exec.command.purge_delay]] *exec.command.purge_delay*
+** opis: pass:none[opóźnienie dla kasowania zakończonych komend (w sekundach, 0 = natychmiast, -1 = nigdy)]
+** typ: liczba
+** wartości: -1 .. 25920000
+** domyślna wartość: `+0+`
-* [[option_weechat.color.chat_nick_offline_highlight]] *weechat.color.chat_nick_offline_highlight*
-** opis: pass:none[kolor tekstu dla podświetlenia nieobecnego nicka; ten kolor używany jest tylko jeśli włączona jest opcja weechat.look.color_nick_offline]
-** typ: kolor
-** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+default+`
+* [[option_exec.command.shell]] *exec.command.shell*
+** opis: pass:none[powłoka używana przez komendę "/exec -sh"; może to być nazwa powłoki jeśli znajduje się ona w PATH (na przykład "bash") lub ścieżka absolutna (na przykład "/bin/bash"); jeśli wartość jest pusta, zostanie użyte "sh" (uwaga: zawartość jest przetwarzana, zobacz /help eval)]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+"${env:SHELL}"+`
+// end::exec_options[]
-* [[option_weechat.color.chat_nick_offline_highlight_bg]] *weechat.color.chat_nick_offline_highlight_bg*
-** opis: pass:none[kolor tła dla podświetlenia nieobecnego nicka; ten kolor używany jest tylko jeśli włączona jest opcja weechat.look.color_nick_offline]
-** typ: kolor
-** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+blue+`
+// tag::fifo_options[]
+* [[option_fifo.file.enabled]] *fifo.file.enabled*
+** opis: pass:none[włącza strumień FIFO]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+on+`
-* [[option_weechat.color.chat_nick_other]] *weechat.color.chat_nick_other*
-** opis: pass:none[kolor innego nicka w prywatnym buforze]
-** typ: kolor
-** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+cyan+`
+* [[option_fifo.file.path]] *fifo.file.path*
+** opis: pass:none[ścieżka do pliku FIFO; PID WeeChat może zostać w ścieżce za pomocą ${info:pid} (ścieżka jest przetwarzana, zobacz funkcje string_eval_path_home w opisie API wtyczek)]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+"${weechat_runtime_dir}/weechat_fifo_${info:pid}"+`
+// end::fifo_options[]
-* [[option_weechat.color.chat_nick_prefix]] *weechat.color.chat_nick_prefix*
-** opis: pass:none[kolor przedrostka nicka (przedrostek to ciąg wyświetlany przed nickiem w prafiksie)]
+// tag::fset_options[]
+* [[option_fset.color.default_value]] *fset.color.default_value*
+** opis: pass:none[kolor dla wartości domyślnej]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+green+`
+** domyślna wartość: `+default+`
-* [[option_weechat.color.chat_nick_self]] *weechat.color.chat_nick_self*
-** opis: pass:none[kolor lokalnego nicka w oknie rozmowy]
+* [[option_fset.color.default_value_selected]] *fset.color.default_value_selected*
+** opis: pass:none[kolor dla wartości domyślnej w zaznaczonej linii]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
** domyślna wartość: `+white+`
-* [[option_weechat.color.chat_nick_suffix]] *weechat.color.chat_nick_suffix*
-** opis: pass:none[kolor przyrostka nicka (przyrostek to ciąg wyświetlany za nickiem w prefiksie)]
+* [[option_fset.color.description]] *fset.color.description*
+** opis: pass:none[kolor dla opisu]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+green+`
+** domyślna wartość: `+default+`
-* [[option_weechat.color.chat_prefix_action]] *weechat.color.chat_prefix_action*
-** opis: pass:none[kolor przedrostka akcji]
+* [[option_fset.color.description_selected]] *fset.color.description_selected*
+** opis: pass:none[kolor dla opisu w zaznaczonej linii]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
** domyślna wartość: `+white+`
-* [[option_weechat.color.chat_prefix_buffer]] *weechat.color.chat_prefix_buffer*
-** opis: pass:none[kolor nazwy bufora (przed przedrostkiem, kiedy wiele buforów jest połączonych)]
-** typ: kolor
-** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+brown+`
-
-* [[option_weechat.color.chat_prefix_buffer_inactive_buffer]] *weechat.color.chat_prefix_buffer_inactive_buffer*
-** opis: pass:none[kolor tekstu dla nazwy nieaktywnego bufora (przed przedrostkiem, kiedy wiele buforów jest połączonych z tym samym numerem, oraz jeśli bufor nie jest wybrany)]
+* [[option_fset.color.file]] *fset.color.file*
+** opis: pass:none[kolor dla pliku]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
** domyślna wartość: `+default+`
-* [[option_weechat.color.chat_prefix_error]] *weechat.color.chat_prefix_error*
-** opis: pass:none[kolor przedrostka błędu]
+* [[option_fset.color.file_changed]] *fset.color.file_changed*
+** opis: pass:none[kolor dla pliku, jeśli wartość została zmieniona]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+yellow+`
+** domyślna wartość: `+brown+`
-* [[option_weechat.color.chat_prefix_join]] *weechat.color.chat_prefix_join*
-** opis: pass:none[kolor przedrostka wejścia na kanał]
+* [[option_fset.color.file_changed_selected]] *fset.color.file_changed_selected*
+** opis: pass:none[kolor dla pliku w zaznaczonej linii, jeśli wartość została zmieniona]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+lightgreen+`
+** domyślna wartość: `+yellow+`
-* [[option_weechat.color.chat_prefix_more]] *weechat.color.chat_prefix_more*
-** opis: pass:none[kolor tekstu dla "+" dla za długich przedrostków]
+* [[option_fset.color.file_selected]] *fset.color.file_selected*
+** opis: pass:none[kolor dla pliku w zaznaczonej linii]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+lightmagenta+`
+** domyślna wartość: `+white+`
-* [[option_weechat.color.chat_prefix_network]] *weechat.color.chat_prefix_network*
-** opis: pass:none[kolor przedrostka sieci]
+* [[option_fset.color.help_default_value]] *fset.color.help_default_value*
+** opis: pass:none[kolor dla domyślnej wartości w pasku pomocy]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+magenta+`
+** domyślna wartość: `+white+`
-* [[option_weechat.color.chat_prefix_quit]] *weechat.color.chat_prefix_quit*
-** opis: pass:none[kolor przedrostka wyjścia z IRC]
+* [[option_fset.color.help_description]] *fset.color.help_description*
+** opis: pass:none[kolor opisu w pasku pomocy]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+lightred+`
+** domyślna wartość: `+default+`
-* [[option_weechat.color.chat_prefix_suffix]] *weechat.color.chat_prefix_suffix*
-** opis: pass:none[kolor przyrostka (po przedrostku)]
+* [[option_fset.color.help_name]] *fset.color.help_name*
+** opis: pass:none[kolor nazwy w pasku pomocy]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+green+`
+** domyślna wartość: `+white+`
-* [[option_weechat.color.chat_read_marker]] *weechat.color.chat_read_marker*
-** opis: pass:none[kolor znacznika nieprzeczytanych wiadomości]
+* [[option_fset.color.help_quotes]] *fset.color.help_quotes*
+** opis: pass:none[kolor cudzysłowów do okoła wartości słownej]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+magenta+`
+** domyślna wartość: `+darkgray+`
-* [[option_weechat.color.chat_read_marker_bg]] *weechat.color.chat_read_marker_bg*
-** opis: pass:none[kolor tła znacznika nieprzeczytanych wiadomości]
+* [[option_fset.color.help_values]] *fset.color.help_values*
+** opis: pass:none[kolor dozwolonych wartości]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
** domyślna wartość: `+default+`
-* [[option_weechat.color.chat_server]] *weechat.color.chat_server*
-** opis: pass:none[kolor nazw serwerów]
-** typ: kolor
-** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+brown+`
-
-* [[option_weechat.color.chat_tags]] *weechat.color.chat_tags*
-** opis: pass:none[kolor tekstu dla tagów po wiadomościach (wyświetlanych za pomocą komendy /debug tags)]
+* [[option_fset.color.index]] *fset.color.index*
+** opis: pass:none[kolor indeksu opcji]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+red+`
+** domyślna wartość: `+cyan+`
-* [[option_weechat.color.chat_text_found]] *weechat.color.chat_text_found*
-** opis: pass:none[kolor znacznika linii, w których znaleziono szukany tekst]
+* [[option_fset.color.index_selected]] *fset.color.index_selected*
+** opis: pass:none[kolor indeksu opcji dla opcji w zaznaczonej linii]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+yellow+`
+** domyślna wartość: `+lightcyan+`
-* [[option_weechat.color.chat_text_found_bg]] *weechat.color.chat_text_found_bg*
-** opis: pass:none[kolor tła znacznika linii, w których znaleziono szukany tekst]
+* [[option_fset.color.line_marked_bg1]] *fset.color.line_marked_bg1*
+** opis: pass:none[kolor tła zaznaczonej linii (używany z pierwszym formatem, zobacz opcję fset.format.option1)]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+lightmagenta+`
+** domyślna wartość: `+default+`
-* [[option_weechat.color.chat_time]] *weechat.color.chat_time*
-** opis: pass:none[kolor czasu w oknie czatu]
+* [[option_fset.color.line_marked_bg2]] *fset.color.line_marked_bg2*
+** opis: pass:none[kolor tła zaznaczonej linii (używany z pierwszym formatem, zobacz opcję fset.format.option2)]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
** domyślna wartość: `+default+`
-* [[option_weechat.color.chat_time_delimiters]] *weechat.color.chat_time_delimiters*
-** opis: pass:none[kolor separatora czasu]
+* [[option_fset.color.line_selected_bg1]] *fset.color.line_selected_bg1*
+** opis: pass:none[kolor tła wybranej linii (używany z pierwszym formatem, zobacz opcję fset.format.option1)]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+brown+`
+** domyślna wartość: `+blue+`
-* [[option_weechat.color.chat_value]] *weechat.color.chat_value*
-** opis: pass:none[kolor wyświetlania wartości]
+* [[option_fset.color.line_selected_bg2]] *fset.color.line_selected_bg2*
+** opis: pass:none[kolor tła wybranej linii (używany z pierwszym formatem, zobacz opcję fset.format.option2)]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+cyan+`
+** domyślna wartość: `+red+`
-* [[option_weechat.color.chat_value_null]] *weechat.color.chat_value_null*
-** opis: pass:none[kolor wyświetlania wartości null (niezdefiniowane)]
+* [[option_fset.color.marked]] *fset.color.marked*
+** opis: pass:none[kolor znacznika zaznaczenia]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+blue+`
+** domyślna wartość: `+brown+`
-* [[option_weechat.color.emphasized]] *weechat.color.emphasized*
-** opis: pass:none[kolor dla wyróżnionego tekstu (na przykład podczas wyszukiwania); opcja używana tylko jeśli opcja weechat.look.emphasized_attributes jest pustym ciągiem (wartość domyślna)]
+* [[option_fset.color.marked_selected]] *fset.color.marked_selected*
+** opis: pass:none[kolor znacznika zaznaczenia w wybranej linii]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
** domyślna wartość: `+yellow+`
-* [[option_weechat.color.emphasized_bg]] *weechat.color.emphasized_bg*
-** opis: pass:none[kolor tła dla wyróżnionego tekstu (na przykład podczas wyszukiwania tekstu); opcja używana tylko jeśli opcja weechat.look.emphasized_attributes jest pustym ciągiem (wartość domyślna)]
+* [[option_fset.color.max]] *fset.color.max*
+** opis: pass:none[kolor maksymalnej wartości]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+magenta+`
+** domyślna wartość: `+default+`
-* [[option_weechat.color.input_actions]] *weechat.color.input_actions*
-** opis: pass:none[kolor akcji w wprowadzonej linii]
+* [[option_fset.color.max_selected]] *fset.color.max_selected*
+** opis: pass:none[kolor maksymalnej wartości w wybranej linii]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+lightgreen+`
+** domyślna wartość: `+white+`
-* [[option_weechat.color.input_text_not_found]] *weechat.color.input_text_not_found*
-** opis: pass:none[kolor nieudanego wyszukiwania tekstu w wprowadzonej linii]
+* [[option_fset.color.min]] *fset.color.min*
+** opis: pass:none[kolor minimalnej wartości]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+red+`
+** domyślna wartość: `+default+`
-* [[option_weechat.color.item_away]] *weechat.color.item_away*
-** opis: pass:none[kolor elementu nieobecności]
+* [[option_fset.color.min_selected]] *fset.color.min_selected*
+** opis: pass:none[kolor minimalnej wartości w wybranej linii]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+yellow+`
+** domyślna wartość: `+white+`
-* [[option_weechat.color.nicklist_away]] *weechat.color.nicklist_away*
-** opis: pass:none[kolor nicków ze statusem nieobecności]
+* [[option_fset.color.name]] *fset.color.name*
+** opis: pass:none[kolor nazwy]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+cyan+`
+** domyślna wartość: `+default+`
-* [[option_weechat.color.nicklist_group]] *weechat.color.nicklist_group*
-** opis: pass:none[kolor grup na liście nicków]
+* [[option_fset.color.name_changed]] *fset.color.name_changed*
+** opis: pass:none[kolor nazwy jeśli wartość została zmieniona]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+green+`
+** domyślna wartość: `+brown+`
-* [[option_weechat.color.separator]] *weechat.color.separator*
-** opis: pass:none[kolor tła dla separatorów (kiedy podzielone) i separatorów obok pasków (jak lista nicków)]
+* [[option_fset.color.name_changed_selected]] *fset.color.name_changed_selected*
+** opis: pass:none[kolor nazwy jeśli wartość została zmieniona w wybranej linii]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+blue+`
+** domyślna wartość: `+yellow+`
-* [[option_weechat.color.status_count_highlight]] *weechat.color.status_count_highlight*
-** opis: pass:none[kolor tekstu dla licznika podświetleń w hotliście (pasek statusu)]
+* [[option_fset.color.name_selected]] *fset.color.name_selected*
+** opis: pass:none[kolor nazwy w wybranej linii]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+magenta+`
+** domyślna wartość: `+white+`
-* [[option_weechat.color.status_count_msg]] *weechat.color.status_count_msg*
-** opis: pass:none[kolor tekstu dla licznika wiadomości w hotliście (pasek statusu)]
+* [[option_fset.color.option]] *fset.color.option*
+** opis: pass:none[kolor opcji]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+brown+`
+** domyślna wartość: `+default+`
-* [[option_weechat.color.status_count_other]] *weechat.color.status_count_other*
-** opis: pass:none[kolor tekstu dla licznika innych wiadomości w hotliście (pasek statusu)]
+* [[option_fset.color.option_changed]] *fset.color.option_changed*
+** opis: pass:none[kolor opcji jeśli wartość została zmieniona]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+default+`
+** domyślna wartość: `+brown+`
-* [[option_weechat.color.status_count_private]] *weechat.color.status_count_private*
-** opis: pass:none[kolor tekstu dla licznika prywatnych wiadomości w hotliście (pasek statusu)]
+* [[option_fset.color.option_changed_selected]] *fset.color.option_changed_selected*
+** opis: pass:none[kolor opcji jeśli wartość została zmieniona w wybranej linii]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+green+`
+** domyślna wartość: `+yellow+`
-* [[option_weechat.color.status_data_highlight]] *weechat.color.status_data_highlight*
-** opis: pass:none[kolor bufora z podświetleniem (pasek statusu)]
+* [[option_fset.color.option_selected]] *fset.color.option_selected*
+** opis: pass:none[kolor opcji w wybranej linii]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+lightmagenta+`
+** domyślna wartość: `+white+`
-* [[option_weechat.color.status_data_msg]] *weechat.color.status_data_msg*
-** opis: pass:none[kolor bufora z nowymi wiadomościami (pasek statusu)]
+* [[option_fset.color.parent_name]] *fset.color.parent_name*
+** opis: pass:none[kolor nazwy opcji nadrzędnej]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+yellow+`
+** domyślna wartość: `+default+`
-* [[option_weechat.color.status_data_other]] *weechat.color.status_data_other*
-** opis: pass:none[kolor bufora z nowymi zdarzeniami (nie wiadomościami) (pasek statusu)]
+* [[option_fset.color.parent_name_selected]] *fset.color.parent_name_selected*
+** opis: pass:none[kolor opcji nadrzędnej w wybranej linii]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+default+`
+** domyślna wartość: `+white+`
-* [[option_weechat.color.status_data_private]] *weechat.color.status_data_private*
-** opis: pass:none[kolor bufora z prywatną wiadomością (pasek statusu)]
+* [[option_fset.color.parent_value]] *fset.color.parent_value*
+** opis: pass:none[kolor wartości wybranej opcji]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+lightgreen+`
+** domyślna wartość: `+cyan+`
-* [[option_weechat.color.status_filter]] *weechat.color.status_filter*
-** opis: pass:none[kolor wskaźnika filtru w pasku statusu]
+* [[option_fset.color.parent_value_selected]] *fset.color.parent_value_selected*
+** opis: pass:none[kolor wartości wybranej opcji w wybranej linii]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+green+`
+** domyślna wartość: `+lightcyan+`
-* [[option_weechat.color.status_more]] *weechat.color.status_more*
-** opis: pass:none[kolor bufora z nowymi zdarzeniami (pasek statusu)]
+* [[option_fset.color.quotes]] *fset.color.quotes*
+** opis: pass:none[kolor cudzysłowów do okoła wartości słownej]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+yellow+`
+** domyślna wartość: `+darkgray+`
-* [[option_weechat.color.status_mouse]] *weechat.color.status_mouse*
-** opis: pass:none[kolor wskaźnika myszy w pasku statusu]
+* [[option_fset.color.quotes_changed]] *fset.color.quotes_changed*
+** opis: pass:none[kolor dla cudzysłowów do okoła wartości, które uległy zmianie]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+green+`
+** domyślna wartość: `+default+`
-* [[option_weechat.color.status_name]] *weechat.color.status_name*
-** opis: pass:none[kolor nazwy obecnego bufora w pasku statusu]
+* [[option_fset.color.quotes_changed_selected]] *fset.color.quotes_changed_selected*
+** opis: pass:none[kolor cudzysłowów do okoła zmienionych wartości w wybranej linii]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
** domyślna wartość: `+white+`
-* [[option_weechat.color.status_name_ssl]] *weechat.color.status_name_ssl*
-** opis: pass:none[kolor nazwy obecnego bufora w pasku statusu, jeśli połączenie jest szyfrowane np poprzez SSL]
+* [[option_fset.color.quotes_selected]] *fset.color.quotes_selected*
+** opis: pass:none[kolor cudzysłowów do okoła wartości w wybranej linii]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+lightgreen+`
+** domyślna wartość: `+default+`
-* [[option_weechat.color.status_nicklist_count]] *weechat.color.status_nicklist_count*
-** opis: pass:none[kolor tekstu dla numeru nicków w liście nicków (pasek statusu)]
+* [[option_fset.color.section]] *fset.color.section*
+** opis: pass:none[kolor zaznaczenia]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
** domyślna wartość: `+default+`
-* [[option_weechat.color.status_number]] *weechat.color.status_number*
-** opis: pass:none[kolor numeru obecnego bufora w pasku statusu]
+* [[option_fset.color.section_changed]] *fset.color.section_changed*
+** opis: pass:none[kolor sekcji, jeśli wartość została zmieniona]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+yellow+`
+** domyślna wartość: `+brown+`
-* [[option_weechat.color.status_time]] *weechat.color.status_time*
-** opis: pass:none[kolor czasu (pasek statusu)]
+* [[option_fset.color.section_changed_selected]] *fset.color.section_changed_selected*
+** opis: pass:none[kolor sekcji, jeśli wartość została zmieniona w wybranej linii]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+default+`
-
-* [[option_weechat.completion.base_word_until_cursor]] *weechat.completion.base_word_until_cursor*
-** opis: pass:none[jeśli włączone, bazowe słowo do dopełniania kończy się na znaku przed kursorem; w innym wypadku słowo bazowe kończy się na pierwszej spacji po kursorze]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+on+`
-
-* [[option_weechat.completion.command_inline]] *weechat.completion.command_inline*
-** opis: pass:none[jeśli włączone, komendy wewnątrz linii komend są dopełniane (komenda na początku linii ma wyższy priorytet i zostanie użyta pierwsza); uwaga: włączenie tej opcji wyłącza automatyczne dopełnianie ścieżek zaczynających się od "/" (poza argumentami komend)]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+on+`
-
-* [[option_weechat.completion.default_template]] *weechat.completion.default_template*
-** opis: pass:none[domyślny szablon dopełnień (zajrzyj do dokumentacji w celu uzyskania kodów i wartości szablonów: opis API wtyczek, funkcja "weechat_hook_command")]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+"%(nicks)|%(irc_channels)"+`
-
-* [[option_weechat.completion.nick_add_space]] *weechat.completion.nick_add_space*
-** opis: pass:none[dodaj spację po dopełnionym nicku (kiedy nick nie jest pierwszym słowem w linii poleceń)]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+on+`
-
-* [[option_weechat.completion.nick_case_sensitive]] *weechat.completion.nick_case_sensitive*
-** opis: pass:none[dopełnienie dla nicków (rozróżniana jest wielkość liter)]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+off+`
-
-* [[option_weechat.completion.nick_completer]] *weechat.completion.nick_completer*
-** opis: pass:none[ciąg wstawiany po dopełnionym nicku (kiedy nick jest pierwszym słowem w linii poleceń)]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+": "+`
-
-* [[option_weechat.completion.nick_first_only]] *weechat.completion.nick_first_only*
-** opis: pass:none[dopełniaj tylko pierwszym znalezionym nickiem]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+off+`
-
-* [[option_weechat.completion.nick_ignore_chars]] *weechat.completion.nick_ignore_chars*
-** opis: pass:none[znaki ignorowane przy dopełnieniu nicków]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+"[]`_-^"+`
-
-* [[option_weechat.completion.partial_completion_alert]] *weechat.completion.partial_completion_alert*
-** opis: pass:none[wyślij alarm (BEL), kiedy nastąpi częściowe dopełnienie]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+on+`
-
-* [[option_weechat.completion.partial_completion_command]] *weechat.completion.partial_completion_command*
-** opis: pass:none[częściowe dopełnienie nazwy komend (zatrzymaj, kiedy wiele komend zaczyna się od tych samych liter)]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+off+`
-
-* [[option_weechat.completion.partial_completion_command_arg]] *weechat.completion.partial_completion_command_arg*
-** opis: pass:none[częściowe dopełnienie argumentów komend (zatrzymaj, gdy wiele argumentów zaczyna się jednakowym przedrostkiem)]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+off+`
-
-* [[option_weechat.completion.partial_completion_count]] *weechat.completion.partial_completion_count*
-** opis: pass:none[wyświetlaj ilość wszystkich częściowych dopełnień w elemencie paska]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+on+`
-
-* [[option_weechat.completion.partial_completion_other]] *weechat.completion.partial_completion_other*
-** opis: pass:none[częściowe dopełnienie zewnętrznych komend (zatrzymaj, kiedy wiele słów zaczyna się takimi samymi literami)]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+off+`
-
-* [[option_weechat.completion.partial_completion_templates]] *weechat.completion.partial_completion_templates*
-** opis: pass:none[oddzielona przecinkiem lista wzorców, dla których częściowe doprłnienia są domyślnie włączone (za pomocą klawisza Tab zamiast shift-Tab); listę wzorców wzorców można znaleźć w dokumentacji: opis API wtyczek, funkcja "weechat_hook_command"]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+"config_options"+`
-
-* [[option_weechat.history.display_default]] *weechat.history.display_default*
-** opis: pass:none[maksymalna ilość komend domyślnie wyświetlanych w listingu historii (0 = bez ograniczeń)]
-** typ: liczba
-** wartości: 0 .. 2147483647
-** domyślna wartość: `+5+`
-
-* [[option_weechat.history.max_buffer_lines_minutes]] *weechat.history.max_buffer_lines_minutes*
-** opis: pass:none[maksymalna ilość minut w historii każdego bufora (0 = bez ograniczeń); przykłady: 1440 = dzień, 10080 = tydzień, 43200 = miesiąc, 525600 = rok; 0 można użyć TYLKO jeśli opcja weechat.history.max_buffer_lines_number NIE JEST ustawiona na 0]
-** typ: liczba
-** wartości: 0 .. 2147483647
-** domyślna wartość: `+0+`
-
-* [[option_weechat.history.max_buffer_lines_number]] *weechat.history.max_buffer_lines_number*
-** opis: pass:none[maksymalna ilość linii w historii każdego bufora (0 = bez ograniczeń); 0 można użyć TYLKO jeśli opcja weechat.history.max_buffer_lines_minutes NIE JEST ustawiona na 0]
-** typ: liczba
-** wartości: 0 .. 2147483647
-** domyślna wartość: `+4096+`
-
-* [[option_weechat.history.max_commands]] *weechat.history.max_commands*
-** opis: pass:none[maksymalna ilość komend użytkownika w historii (0 = bez ograniczeń, NIE ZALECANE: brak limitu w zajmowanej pamięci)]
-** typ: liczba
-** wartości: 0 .. 2147483647
-** domyślna wartość: `+100+`
-
-* [[option_weechat.history.max_visited_buffers]] *weechat.history.max_visited_buffers*
-** opis: pass:none[maksymalna ilość odwiedzonych buforów trzymana w pamięci]
-** typ: liczba
-** wartości: 0 .. 1000
-** domyślna wartość: `+50+`
-
-* [[option_weechat.look.align_end_of_lines]] *weechat.look.align_end_of_lines*
-** opis: pass:none[wyrównanie dla końca linii (wszystkie po pierwszej): zaczynają się od tego (time, buffer, prefix, suffix, message (domyślnie))]
-** typ: liczba
-** wartości: time, buffer, prefix, suffix, message
-** domyślna wartość: `+message+`
-
-* [[option_weechat.look.align_multiline_words]] *weechat.look.align_multiline_words*
-** opis: pass:none[wyrównanie dla wielolinijkowych słów zgodnie z opcją weechat.look.align_end_of_lines; jeśli wyłączone wieloliniowe słowa nie będą wyrównane, co może być przydatne do nie dzielenia długich adresów URL]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+on+`
-
-* [[option_weechat.look.bar_more_down]] *weechat.look.bar_more_down*
-** opis: pass:none[ciąg wyświetlany jeśli pasek może zostać przewinięty w dół (dla pasków z wypełnieniem innym niż "horizontal")]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+"++"+`
-
-* [[option_weechat.look.bar_more_left]] *weechat.look.bar_more_left*
-** opis: pass:none[ciąg wyświetlany jeśli pasek może zostać przewinięty w lewo (dla pasków z wypełnieniem innym niż "horizontal")]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+"<<"+`
-
-* [[option_weechat.look.bar_more_right]] *weechat.look.bar_more_right*
-** opis: pass:none[ciąg wyświetlany jeśli pasek może zostać przewinięty w prawo (dla pasków z wypełnieniem innym niż "horizontal")]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+">>"+`
-
-* [[option_weechat.look.bar_more_up]] *weechat.look.bar_more_up*
-** opis: pass:none[ciąg wyświetlany jeśli pasek może zostać przewinięty w górę (dla pasków z wypełnieniem innym niż "horizontal")]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+"--"+`
-
-* [[option_weechat.look.bare_display_exit_on_input]] *weechat.look.bare_display_exit_on_input*
-** opis: pass:none[wyjście z trybu niesformatowanego wyświetlania po każdej zmianie wejścia]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+on+`
-
-* [[option_weechat.look.bare_display_time_format]] *weechat.look.bare_display_time_format*
-** opis: pass:none[format czasu dla trybu niesformatowanego wyświetlania (zobacz man strftime dla specyfikatorów daty/czasu)]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+"%H:%M"+`
-
-* [[option_weechat.look.buffer_auto_renumber]] *weechat.look.buffer_auto_renumber*
-** opis: pass:none[automatyczna zmiana numerów buforów, aby uzyskać tylko kolejne numery i zaczynać od numeru 1; jeśli wyłączone dozwolone są przerwy między numerami buforów i pierwszy bufor może mieć numer większy od 1]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+on+`
-
-* [[option_weechat.look.buffer_notify_default]] *weechat.look.buffer_notify_default*
-** opis: pass:none[domyślny poziom powiadomień dla buforów (używany do powiedzenia WeeChat czy bufor musi być wyświetlany na hotliście czy nie, w zależności od wagi wiadomości): all=wszystkie wiadomości (domyślnie), message=wiadomości+podświetlenia, highlight=tylko podświetlenia, none=nigdy nie wyświetlany na hotliście]
-** typ: liczba
-** wartości: none, highlight, message, all
-** domyślna wartość: `+all+`
-
-* [[option_weechat.look.buffer_position]] *weechat.look.buffer_position*
-** opis: pass:none[pozycja nowego bufora: end = na końcu listy (numer = ostatni +1)(domyślne), first_gap = na pierwszym wolnym miejscu w liście (na końcu listy, jeśli nie ma wcześniej wolnego miejsca); ta opcja używana jest tylko, jeśli bufor nie ma numeru układu]
-** typ: liczba
-** wartości: end, first_gap
-** domyślna wartość: `+end+`
-
-* [[option_weechat.look.buffer_search_case_sensitive]] *weechat.look.buffer_search_case_sensitive*
-** opis: pass:none[domyślne wyszukiwanie w buforze: uwzględniające wielkość liter lub nie]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+off+`
-
-* [[option_weechat.look.buffer_search_force_default]] *weechat.look.buffer_search_force_default*
-** opis: pass:none[wymusza domyślne wartości dla wyszukiwań tekstowych w buforze (zamiast wartości z poprzedniego wyszukiwania)]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+off+`
-
-* [[option_weechat.look.buffer_search_regex]] *weechat.look.buffer_search_regex*
-** opis: pass:none[domyślne wyszukiwanie w buforze: jeśli włączone szukane jest rozszerzone wyrażenie regularne POSIX, w przeciwnym wypadku prosty ciąg]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+off+`
-
-* [[option_weechat.look.buffer_search_where]] *weechat.look.buffer_search_where*
-** opis: pass:none[domyślny tekst do wyszukiwania w buforze: w wiadomości, prefiksie, prefiksie i wiadomości]
-** typ: liczba
-** wartości: prefix, message, prefix_message
-** domyślna wartość: `+prefix_message+`
-
-* [[option_weechat.look.buffer_time_format]] *weechat.look.buffer_time_format*
-** opis: pass:none[format czasu używany dla każdej linii w buforze (zobacz man strftime dla specyfikatorów daty/czasu) (uwaga: zawartość jest przetwarzana, dlatego można użyć kolorów w formacie "${color:xxx}", zobacz /help eval); na przykład czas w odcieniach szarości (wymaga wsparcia dla 256 kolorów):"${color:252}%H${color:245}%M${color:240}%S"]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+"%H:%M:%S"+`
-
-* [[option_weechat.look.buffer_time_same]] *weechat.look.buffer_time_same*
-** opis: pass:none[czas wyświetlany dla wiadomości z takim samym czasem jak poprzednia wiadomość: spacja " " chowa czas, inny ciąg wyświetlany zamiast czasu lub pusty ciąg dla wyłączenia opcji (wyświetlanie czasu) (uwaga: zawartość jest przetwarzana, możesz użyć kolorów w formacie "$(color:xxx}", zobacz /help eval)]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+""+`
-
-* [[option_weechat.look.chat_space_right]] *weechat.look.chat_space_right*
-** opis: pass:none[zastawia miejsce po prawej stronie chatu w przypadku jak jest wyświetlany tam jakiś pasek (na tekst i znacznik przeczytania)]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+off+`
-
-* [[option_weechat.look.color_basic_force_bold]] *weechat.look.color_basic_force_bold*
-** opis: pass:none[wymusza atrybut "bold" dla jasnych kolorów oraz "darkgray" w kolorach podstawowych (ta opcja jest domyślnie wyłączona: pogrubienie jest używane tylko jeśli terminal obsługuje poniżej 16 kolorów)]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+off+`
-
-* [[option_weechat.look.color_inactive_buffer]] *weechat.look.color_inactive_buffer*
-** opis: pass:none[użycie rożnych kolorów dla linii w nieaktywnym buforze (kiedy linia pochodzi z niewybranego połączonego bufora)]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+on+`
-
-* [[option_weechat.look.color_inactive_message]] *weechat.look.color_inactive_message*
-** opis: pass:none[używa innego koloru dla nieaktywnych wiadomości (dla okien nie będących obecnie wybranych lub jeśli linia pochodzi z niewybranego z połączonych buforów)]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+on+`
-
-* [[option_weechat.look.color_inactive_prefix]] *weechat.look.color_inactive_prefix*
-** opis: pass:none[użyj różnych kolorów dla nieaktywnych prefiksów (kiedy okno nie jest obecnym oknem lub linia pochodzi z niewybranego z połączonych buforów)]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+on+`
-
-* [[option_weechat.look.color_inactive_prefix_buffer]] *weechat.look.color_inactive_prefix_buffer*
-** opis: pass:none[użycie rożnych kolorów dla przedrostka nazwy nieaktywnego bufora (kiedy okno nie jest obecnym, lub linia w połączonych buforach nie pochodzi z wybranego)]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+on+`
-
-* [[option_weechat.look.color_inactive_time]] *weechat.look.color_inactive_time*
-** opis: pass:none[używaj różnych kolorów dla czasu (dla okien poza obecnym lub jeśli linia pochodzi niewybranego z połączonych buforów)]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+off+`
-
-* [[option_weechat.look.color_inactive_window]] *weechat.look.color_inactive_window*
-** opis: pass:none[użycie rożnych kolorów dla linii w nieaktywnym oknie (kiedy okno nie jest obecnym oknem)]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+on+`
-
-* [[option_weechat.look.color_nick_offline]] *weechat.look.color_nick_offline*
-** opis: pass:none[użyj innego koloru dla nieobecnych nicków (nie znajdujących się na liście nicków)]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+off+`
-
-* [[option_weechat.look.color_pairs_auto_reset]] *weechat.look.color_pairs_auto_reset*
-** opis: pass:none[automatycznie resetuje tablicę par kolorów, kiedy ilość dostępnych par jest niższa lub równa tej wartości ( -1 = wyłączone, wymagane jest ręczne wykonywanie polecenia "/color reset", kiedy tablica jest pełna)]
-** typ: liczba
-** wartości: -1 .. 256
-** domyślna wartość: `+5+`
-
-* [[option_weechat.look.color_real_white]] *weechat.look.color_real_white*
-** opis: pass:none[jeśli ustawiona, używa prawdziwego białego koloru, domyślnie wyłączona dla terminali z białym tłem (jeśli biały kolor tła nigdy nie jest używany powinno się włączyć tę opcję, aby zobaczyć prawdziwy biały zamiast domyślnego koloru czcionki w terminalu)]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+off+`
-
-* [[option_weechat.look.command_chars]] *weechat.look.command_chars*
-** opis: pass:none[znaki użyte do określenia czy wprowadzony ciąg jest komendą czy nie: wprowadzony ciąg musi się zaczynać od jednego z tych znaków; slash ("/") jest zawsze uważany za prefiks komendy (np: ".$")]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+""+`
-
-* [[option_weechat.look.command_incomplete]] *weechat.look.command_incomplete*
-** opis: pass:none[jeśli ustawione, niekompletne i jednoznaczne komendy są dozwolone, na przykład /he dla /help]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+off+`
-
-* [[option_weechat.look.confirm_quit]] *weechat.look.confirm_quit*
-** opis: pass:none[jeśli ustawione, komenda /quit musi być potwierdzona dodatkowym argumentem "-yes" (zobacz /help quit)]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+off+`
-
-* [[option_weechat.look.confirm_upgrade]] *weechat.look.confirm_upgrade*
-** opis: pass:none[jeśli ustawione, komenda /upgrade musi być potwierdzona dodatkowym argumentem "-yes" (zobacz /help upgrade)]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+off+`
-
-* [[option_weechat.look.day_change]] *weechat.look.day_change*
-** opis: pass:none[wyświetlaj specjalną wiadomość, kiedy zmienia się dzień]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+on+`
-
-* [[option_weechat.look.day_change_message_1date]] *weechat.look.day_change_message_1date*
-** opis: pass:none[wiadomość wyświetlana po zmianie dnia, wyświetlając tylko jedną datę (na przykład na początku bufora) (zobacz man strftime dla listy specyfikatorów daty/czasu) (uwaga: zawartość jest przetwarzana, dlatego można używać kolorów w formacie "${color:xxx}", zobacz /help eval)]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+"-- %a, %d %b %Y --"+`
-
-* [[option_weechat.look.day_change_message_2dates]] *weechat.look.day_change_message_2dates*
-** opis: pass:none[wiadomość wyświetlana po zmianie dnia, wyświetlając dwie daty (pomiędzy wiadomościami); specyfikatory drugiej daty muszą zaczynać się od dwóch "%" ponieważ strftime jest wywoływane dwa razy dla tego ciągu (zobacz man strftime dla listy specyfikatorów daty/czasu) (uwaga: zawartość jest przetwarzana, dlatego można używać kolorów w formacie "${color:xxx}", zobacz /help eval)]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+"-- %%a, %%d %%b %%Y (%a, %d %b %Y) --"+`
-
-* [[option_weechat.look.eat_newline_glitch]] *weechat.look.eat_newline_glitch*
-** opis: pass:none[jeśli ustawione eat_newline_glitch zostanie ustawione na 0; używa się tego w celu nie dodawania znaku nowej linii na końcu każdej linii, powoduje to nie łamanie tekstu podczas kopiowania/wklejania tekstu z WeeChat do innej aplikacji (domyślnie ta opcja jest wyłączona, ponieważ może spowodować poważne błędy wyświetlania)]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+off+`
-
-* [[option_weechat.look.emphasized_attributes]] *weechat.look.emphasized_attributes*
-** opis: pass:none[atrybuty dla wyróżnionego tekstu: jeden lub więcej znaków atrybutu ("%" dla mrygania, "." dla "przyciemnienia" (połowa jasności), "*" dla pogrubienia, "!" dla odwrócenia, "/" dla pochylenia, "_" dla podkreślenia); jeśli ciąg jest pusty, używane są kolory weechat.color.emphasized*]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+""+`
-
-* [[option_weechat.look.highlight]] *weechat.look.highlight*
-** opis: pass:none[lista słów do podświetlania oddzielona przecinkami; wielkość znaków nie ma znaczenia przy porównywaniu (użyj "(?-i)" na początku słów, aby wielkość znaków miała znaczenie), słowa mogą zaczynać się od "*" dla częściowego dopasowania; przykład: "test,(?-i)*toto*,flash*"]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+""+`
-
-* [[option_weechat.look.highlight_disable_regex]] *weechat.look.highlight_disable_regex*
-** opis: pass:none[Rozszerzone wyrażenie regularne POSIX używane do wyłączenia podświetleń od wiadomości: ta opcja ma priorytet nad pozostałymi opcjami dotyczącymi podświetleń (jeśli ciąg zostanie znaleziony w wiadomości, podświetlenie zostanie wyłączone i pozostałe opcje są ignorowane), wyrażenie regularne ignoruje wielkość znaków (użyj „(?-i)” na początku, aby wielość znaków nie była ignorowana), przykłady: „<flash.*>”, „(?-i)<Flash.*>”]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+""+`
-
-* [[option_weechat.look.highlight_regex]] *weechat.look.highlight_regex*
-** opis: pass:none[Rozszerzone wyrażenie regularne POSIX używane do sprawdzenia, czy wiadomość posiada podświetlenie czy nie, przynajmniej jedno dopasowanie w ciąg musi być otoczone separatorami (znaki inne niż: alfanumeryczne, "-", "_" lub "|"), wielkość znaków nie ma wpływu na wyrażenie (użyj "(?-i)" na początku, aby wielkość znaków miała znaczenie), przykłady: "flashcode|flashy", "(?-i)FlashCode|flashy"]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+""+`
-
-* [[option_weechat.look.highlight_tags]] *weechat.look.highlight_tags*
-** opis: pass:none[oddzielona przecinkami lista tagów do podświetleń; porównywanie bez uwzględnienia wielkości znaków; wildcard "*" jest dozwolony w każdym tagu; wiele tagów może być oddzielonych "+" jako logicznym "i" pomiędzy tagami; przykłady: "nick_flashcode" dla wiadomości od nicka "FlashCode", "irc_notice+nick_toto*" dla powiadomień od nicka zaczynającego się na "toto"]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+""+`
-
-* [[option_weechat.look.hotlist_add_conditions]] *weechat.look.hotlist_add_conditions*
-** opis: pass:none[warunki dla dodania buforu na hotlistę (jeśli poziom powiadomień jest OK dla bufora); możesz użyć następujących warunków: "window" (wskaźnik obecnego okna), "buffer" (wskaźnik bufora do dodania na hotlistę), "priority" (0 = niski, 1 = wiadomość, 2 = rozmowa prywatna, 3 = highlight); domyślnie bufor jest dodawany do hotlisty jeśli jesteś niedostępny lub jeśli bufor nie jest widoczny na ekranie (nie jest wyświetlany w żadnym oknie), lub jeśli przynajmniej jeden klient relay jest podłączony za pomocą protokołu weechat]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+"${away} || ${buffer.num_displayed} == 0 || ${info:relay_client_count,weechat,connected} > 0"+`
-
-* [[option_weechat.look.hotlist_buffer_separator]] *weechat.look.hotlist_buffer_separator*
-** opis: pass:none[ciąg znaków wyświetlany pomiędzy buforami w hotliście]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+", "+`
-
-* [[option_weechat.look.hotlist_count_max]] *weechat.look.hotlist_count_max*
-** opis: pass:none[maksymalna ilość wiadomości do wyświetlenia w hotliście dla bufora: 0 = nigdy nie wyświetlaj, inna liczba = wyświetlaj maksymalnie N ilości wiadomości (od najwyższego do najniższego priorytetu)]
-** typ: liczba
-** wartości: 0 .. 4
-** domyślna wartość: `+2+`
-
-* [[option_weechat.look.hotlist_count_min_msg]] *weechat.look.hotlist_count_min_msg*
-** opis: pass:none[wyświetla licznik wiadomości jeśli ilość wiadomości jest większa lub równa tej wartości]
-** typ: liczba
-** wartości: 1 .. 100
-** domyślna wartość: `+2+`
-
-* [[option_weechat.look.hotlist_names_count]] *weechat.look.hotlist_names_count*
-** opis: pass:none[maksymalna ilość nazw w hotliście (0 = żadna nazwa nie zostanie wyświetlona, tylko numery buforów)]
-** typ: liczba
-** wartości: 0 .. 10000
-** domyślna wartość: `+3+`
-
-* [[option_weechat.look.hotlist_names_length]] *weechat.look.hotlist_names_length*
-** opis: pass:none[maksymalna długość nazwy w hotliście (0 = brak limitu)]
-** typ: liczba
-** wartości: 0 .. 32
-** domyślna wartość: `+0+`
-
-* [[option_weechat.look.hotlist_names_level]] *weechat.look.hotlist_names_level*
-** opis: pass:none[poziom wyświetlania nazw w hotlście (kombinacja: 1 = join/part, 2 = wiadomość, 4 = prywatne, 8 = podświetlenie, na przykład: 12 = prywatne+podświetlenie)]
-** typ: liczba
-** wartości: 1 .. 15
-** domyślna wartość: `+12+`
-
-* [[option_weechat.look.hotlist_names_merged_buffers]] *weechat.look.hotlist_names_merged_buffers*
-** opis: pass:none[jeśli ustawione, wymusza wyświetlanie nazw w hotliście dla połączonych buforów]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+off+`
-
-* [[option_weechat.look.hotlist_prefix]] *weechat.look.hotlist_prefix*
-** opis: pass:none[ciąg znaków wyświetlany na początku hotlisty]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+"H: "+`
-
-* [[option_weechat.look.hotlist_remove]] *weechat.look.hotlist_remove*
-** opis: pass:none[usuwa bufor z hotlisty: buffer = usuwa bufor po buforze, merged = usuwa wszystkie widoczne połączone bufory]
-** typ: liczba
-** wartości: buffer, merged
-** domyślna wartość: `+merged+`
-
-* [[option_weechat.look.hotlist_short_names]] *weechat.look.hotlist_short_names*
-** opis: pass:none[jeśli ustawione, używa krótkich nazw do wyświetlania nazw buforów w hotliście (zaczyna po pierwszym wystąpieniu '.' w nazwie)]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+on+`
-
-* [[option_weechat.look.hotlist_sort]] *weechat.look.hotlist_sort*
-** opis: pass:none[sortowanie hotlisty: group_time_*: grupuj po poziomie powiadomień (powiadomienia pierwsze) następnie sortuj po czasie, group_number_*: grupuj po poziomie powiadomień (powiadomienia pierwsze) następnie sortuj po numerze, number_*: sortuj po numerze; asc = sortowanie rosnące, desc = sortowanie malejące]
-** typ: liczba
-** wartości: group_time_asc, group_time_desc, group_number_asc, group_number_desc, number_asc, number_desc
-** domyślna wartość: `+group_time_asc+`
-
-* [[option_weechat.look.hotlist_suffix]] *weechat.look.hotlist_suffix*
-** opis: pass:none[ciąg znaków wyświetlany na końcu hotlisty]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+""+`
-
-* [[option_weechat.look.hotlist_unique_numbers]] *weechat.look.hotlist_unique_numbers*
-** opis: pass:none[zatrzymaj unikalne numery na hotliście (stosowane tylko dla elementów hotlisty, w których nazwa NIE jest wyświetlana po numerze)]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+on+`
-
-* [[option_weechat.look.hotlist_update_on_buffer_switch]] *weechat.look.hotlist_update_on_buffer_switch*
-** opis: pass:none[aktualizuj hotlistę podczas przełączania buforów]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+on+`
-
-* [[option_weechat.look.input_cursor_scroll]] *weechat.look.input_cursor_scroll*
-** opis: pass:none[ilość znaków wyświetlanych po końcu linii wejściowej, kiedy przewijamy do wyświetlenia końca linii]
-** typ: liczba
-** wartości: 0 .. 100
-** domyślna wartość: `+20+`
-
-* [[option_weechat.look.input_share]] *weechat.look.input_share*
-** opis: pass:none[udostępnia komendy, tekst lub oba w wejściach dla wszystkich buforów (nadal każdy bufor posiada lokalną historię)]
-** typ: liczba
-** wartości: none, commands, text, all
-** domyślna wartość: `+none+`
-
-* [[option_weechat.look.input_share_overwrite]] *weechat.look.input_share_overwrite*
-** opis: pass:none[jeśli ustawiono i wejście jest dzielone, zawsze nadpisuje wejście w danym buforze]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+off+`
-
-* [[option_weechat.look.input_undo_max]] *weechat.look.input_undo_max*
-** opis: pass:none[maksymalna ilość "cofnięć" dla linii poleceń dla bufora (0 = wyłączone)]
-** typ: liczba
-** wartości: 0 .. 65535
-** domyślna wartość: `+32+`
-
-* [[option_weechat.look.item_away_message]] *weechat.look.item_away_message*
-** opis: pass:none[wyświetla wiadomość o nieobecności dla serwera w elemencie paska]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+on+`
-
-* [[option_weechat.look.item_buffer_filter]] *weechat.look.item_buffer_filter*
-** opis: pass:none[ciąg użyty do pokazania, że część linii jest filtrowana w obecnym buforze (element paska "buffer_filter")]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+"*"+`
-
-* [[option_weechat.look.item_buffer_zoom]] *weechat.look.item_buffer_zoom*
-** opis: pass:none[ciąg użyty do pokazania przybliżenia w połączonym buforze (element paska "buffer_zoom")]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+"!"+`
-
-* [[option_weechat.look.item_mouse_status]] *weechat.look.item_mouse_status*
-** opis: pass:none[ciąg użyty do pokazania czy obsługa myszy jest włączona (element paska "mouse_status")]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+"M"+`
-
-* [[option_weechat.look.item_time_format]] *weechat.look.item_time_format*
-** opis: pass:none[format czasu dla elementu paska "time" (listę dostępnych specyfikatorów daty/czasu można znaleźć w man strftime) (uwaga: zawartość jest przetwarzana, dlatego można użyć kolorów w formacie "${color:xxx}", zobacz /help eval)]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+"%H:%M"+`
-
-* [[option_weechat.look.jump_current_to_previous_buffer]] *weechat.look.jump_current_to_previous_buffer*
-** opis: pass:none[skocz do poprzednio wyświetlanego bufora, podczas skoku do obecnego bufora o numerze za pomocą /buffer *N (gdzie N jest numerem bufora), aby łatwo przełączyć się do kolejnego bufora, następnie wracając do obecnego]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+on+`
-
-* [[option_weechat.look.jump_previous_buffer_when_closing]] *weechat.look.jump_previous_buffer_when_closing*
-** opis: pass:none[skocz do poprzedniego buforu, po zamknięciu obecnego (jeśli wyłączona, wtedy skocz do buforu numer -1)]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+on+`
-
-* [[option_weechat.look.jump_smart_back_to_buffer]] *weechat.look.jump_smart_back_to_buffer*
-** opis: pass:none[wróć do początkowego buforu po dotarciu na koniec hotlisty]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+on+`
-
-* [[option_weechat.look.key_bind_safe]] *weechat.look.key_bind_safe*
-** opis: pass:none[pozwala przypisać tylko "bezpieczne" skróty (zaczynające się od kodu ctrl albo meta)]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+on+`
-
-* [[option_weechat.look.key_grab_delay]] *weechat.look.key_grab_delay*
-** opis: pass:none[domyślne opóźnienie (w milisekundach) do przechwycenia klawiszy (za pomocą domyślnego skrótu alt-k); to opóźnienie może zostać nadpisane przez komendę /input (zobacz /help input)]
-** typ: liczba
-** wartości: 1 .. 10000
-** domyślna wartość: `+800+`
-
-* [[option_weechat.look.mouse]] *weechat.look.mouse*
-** opis: pass:none[włącza wsparcie dla myszy]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+off+`
-
-* [[option_weechat.look.mouse_timer_delay]] *weechat.look.mouse_timer_delay*
-** opis: pass:none[odstęp (w milisekundach) przechwytywania zdarzeń myszy: WeeChat zawsze poczeka ten czas przed obsługą zdarzenia]
-** typ: liczba
-** wartości: 1 .. 10000
-** domyślna wartość: `+100+`
-
-* [[option_weechat.look.nick_color_force]] *weechat.look.nick_color_force*
-** opis: pass:none[wymusza kolory dla niektórych nicków: hash połączony z nickiem w celu znalezienia koloru nie zostanie użyty dla tych nicków (format: "nick1:kolor1;nick2:kolor2"); wyszukiwanie nicków odbywa się na zasadzie dopasowania porównania dokładnego, następnie z małych liter, jest więc możliwe używanie tylko małych liter w tej opcji; kolor może zawierać tło w formacie "tekst,tło", na przykład "yellow,red"]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+""+`
-
-* [[option_weechat.look.nick_color_hash]] *weechat.look.nick_color_hash*
-** opis: pass:none[algorytm haszujący używany do znalezienia koloru dla nicka: djb2 = odmiana djb2 (pozycja liter ma znaczenie: anagramy nicka mają różne kolory), djb2_32 = wariant djb2 używający 32 bitowej liczby zamiast 64 bitowej, sum = suma liter, sum_32 = suma liter używając 32 bitowej liczby zamiast 64 bitowej]
-** typ: liczba
-** wartości: djb2, sum, djb2_32, sum_32
-** domyślna wartość: `+djb2+`
-
-* [[option_weechat.look.nick_color_hash_salt]] *weechat.look.nick_color_hash_salt*
-** opis: pass:none[sól dla algorytmu haszującego używanego do wyszukiwania kolorów nicków (nick jest dodawany do tej soli i algorytm pracuje na tym ciągu); zmiana wartości powoduje przetasowanie kolorów nicków]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+""+`
-
-* [[option_weechat.look.nick_color_stop_chars]] *weechat.look.nick_color_stop_chars*
-** opis: pass:none[znaki używane do zatrzymania odczytywania koloru nicka (przynajmniej jeden znak poza tą listą musi się znajdować przed zatrzymaniem) (przykład: nick "|nick|away" ze znakami "|" zwróci kolor nicka "|nick"); ta opcja ma wpływ na opcję weechat.look.nick_color_force, nick z wymuszonym kolorem nie może zawierać znaków ignorowanych przez tą opcję]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+"_|["+`
-
-* [[option_weechat.look.nick_prefix]] *weechat.look.nick_prefix*
-** opis: pass:none[teks wyświetlany przed nickiem w prefiksie wiadomości, przykład: "<"]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+""+`
-
-* [[option_weechat.look.nick_suffix]] *weechat.look.nick_suffix*
-** opis: pass:none[teks wyświetlany za nickiem w prefiksie wiadomości, przykład: przykład: ">"]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+""+`
-
-* [[option_weechat.look.paste_auto_add_newline]] *weechat.look.paste_auto_add_newline*
-** opis: pass:none[automatyczne dodawanie nowej linii na końcu wklejanego tesktu jeśli wklejane są co najmniej dwie linie i jeśli potwierdzenie jest wmagane]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+on+`
-
-* [[option_weechat.look.paste_bracketed]] *weechat.look.paste_bracketed*
-** opis: pass:none[włącza tryb terminala "bracketed paste mode" (nie wszystkie terminale/multiplexery ją wspierają): w tym trybie, wklejany tekst jest otoczony sekwencją kontrolna, dzięki czemu WeeChat może odróżnić tekst wklejony od wpisanego ("ESC[200~", wklejony tekst, "ESC[201~")]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+on+`
-
-* [[option_weechat.look.paste_bracketed_timer_delay]] *weechat.look.paste_bracketed_timer_delay*
-** opis: pass:none[wymusza zakończenie ograniczenia wklejanego tekstu po upływie określonego czasu (w sekundach) jeśli sekwencja kontrolna zakańczająca wklejany tekst ("ESC[201~") nie została otrzymana na czas]
-** typ: liczba
-** wartości: 1 .. 60
-** domyślna wartość: `+10+`
-
-* [[option_weechat.look.paste_max_lines]] *weechat.look.paste_max_lines*
-** opis: pass:none[maksymalna ilość linii do wklejenia bez pytania użytkownika (-1 = wyłącz tą opcję); ta opcja jest używana tylko jesli element "input_paste" jest użyty w przynajmniej jednym pasku (domyślnie używany jest w pasku "input")]
-** typ: liczba
-** wartości: -1 .. 2147483647
-** domyślna wartość: `+1+`
-
-* [[option_weechat.look.prefix_action]] *weechat.look.prefix_action*
-** opis: pass:none[przedrostek dla wiadomości o akcjach (uwaga: zawartość jest przetwarzana, dlatego można użyć kolorów w formacie "${color:xxx}", zobacz /help eval)]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+" *"+`
-
-* [[option_weechat.look.prefix_align]] *weechat.look.prefix_align*
-** opis: pass:none[wyrównanie przedrostków (none, left, right (domyślne))]
-** typ: liczba
-** wartości: none, left, right
-** domyślna wartość: `+right+`
-
-* [[option_weechat.look.prefix_align_max]] *weechat.look.prefix_align_max*
-** opis: pass:none[maksymalny rozmiar przedrostka (0 = brak maksymalnego rozmiaru)]
-** typ: liczba
-** wartości: 0 .. 128
-** domyślna wartość: `+0+`
-
-* [[option_weechat.look.prefix_align_min]] *weechat.look.prefix_align_min*
-** opis: pass:none[minimalny rozmiar przedrostka]
-** typ: liczba
-** wartości: 0 .. 128
-** domyślna wartość: `+0+`
-
-* [[option_weechat.look.prefix_align_more]] *weechat.look.prefix_align_more*
-** opis: pass:none[znak wyświetlany jeśli przedrostek został obcięty (dokładnie jeden znak na ekranie)]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+"+"+`
-
-* [[option_weechat.look.prefix_align_more_after]] *weechat.look.prefix_align_more_after*
-** opis: pass:none[znak wyświetlany jako skrócenie (domyślnie "+") po tekście (zamiast spacji, która powinna zostać wyświetlona); jeśli wyłączone, znak zastępuje ostatni znak tekstu]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+on+`
-
-* [[option_weechat.look.prefix_buffer_align]] *weechat.look.prefix_buffer_align*
-** opis: pass:none[wyrównanie przedrostków nazw buforów, kiedy wiele buforów jest połączonych z tą samą nazwą (none, left, right (domyślnie))]
-** typ: liczba
-** wartości: none, left, right
-** domyślna wartość: `+right+`
-
-* [[option_weechat.look.prefix_buffer_align_max]] *weechat.look.prefix_buffer_align_max*
-** opis: pass:none[maksymalna długość nazwy bufora, kiedy wiele buforów jest połączonych z identycznym numerem (0 = brak maksymalnej długości)]
-** typ: liczba
-** wartości: 0 .. 128
-** domyślna wartość: `+0+`
-
-* [[option_weechat.look.prefix_buffer_align_more]] *weechat.look.prefix_buffer_align_more*
-** opis: pass:none[znak wyświetlany jeśli nazwa bufora została obcięta (kiedy wiele buforów jest scalonych z takim samym numerem)(dokładnie jeden znak na ekranie)]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+"+"+`
-
-* [[option_weechat.look.prefix_buffer_align_more_after]] *weechat.look.prefix_buffer_align_more_after*
-** opis: pass:none[znak wyświetlany jako skrócenie (domyślnie "+") po tekście (zamiast spacji, która powinna zostać wyświetlona); jeśli wyłączone, znak zastępuje ostatni znak tekstu]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+on+`
-
-* [[option_weechat.look.prefix_error]] *weechat.look.prefix_error*
-** opis: pass:none[przedrostek dla wiadomości o błędach (uwaga: zawartość jest przetwarzana, dlatego można użyć kolorów w formacie "${color:xxx}", zobacz /help eval)]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+"=!="+`
-
-* [[option_weechat.look.prefix_join]] *weechat.look.prefix_join*
-** opis: pass:none[prefiks dla wiadomości o wejściach na kanał (uwaga: zawartość jest przetwarzana, dlatego można użyć kolorów w formacie "${color:xxx}", zobacz /help eval)]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+"-->"+`
-
-* [[option_weechat.look.prefix_network]] *weechat.look.prefix_network*
-** opis: pass:none[przedrostek dla wiadomości sieciowych (uwaga: zawartość jest przetwarzana, dlatego można użyć kolorów w formacie "${color:xxx}", zobacz /help eval)]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+"--"+`
-
-* [[option_weechat.look.prefix_quit]] *weechat.look.prefix_quit*
-** opis: pass:none[prefiks dla wiadomości o wyjściach (uwaga: zawartość jest przetwarzana, dlatego można użyć kolorów w formacie "${color:xxx}", zobacz /help eval)]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+"<--"+`
-
-* [[option_weechat.look.prefix_same_nick]] *weechat.look.prefix_same_nick*
-** opis: pass:none[prefiks wyświetlany dla wiadomości z takim samym nickiem jak poprzednia ale nie jak następna wiadomość: spacja " " chowa prefiks, inny ciąg wyświetlany zamiast prefiksu lub pusty ciąg dla wyłączenia opcji (wyświetlanie przedrostka)]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+""+`
-
-* [[option_weechat.look.prefix_same_nick_middle]] *weechat.look.prefix_same_nick_middle*
-** opis: pass:none[prefiks wyświetlany dla wiadomości z takim samym nickiem jak poprzednia i następna wiadomość: spacja " " chowa prefiks, inny ciąg wyświetlany zamiast prefiksu lub pusty ciąg dla wyłączenia opcji (wyświetlanie przedrostka)]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+""+`
-
-* [[option_weechat.look.prefix_suffix]] *weechat.look.prefix_suffix*
-** opis: pass:none[ciąg wyświetlany po przedrostku]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+"|"+`
-
-* [[option_weechat.look.quote_nick_prefix]] *weechat.look.quote_nick_prefix*
-** opis: pass:none[teks wyświetlany przed nickiem podczas cytowania wiadomości (zobacz /help cursor)]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+"<"+`
-
-* [[option_weechat.look.quote_nick_suffix]] *weechat.look.quote_nick_suffix*
-** opis: pass:none[teks wyświetlany za nickiem podczas cytowania wiadomości (zobacz /help cursor)]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+">"+`
-
-* [[option_weechat.look.quote_time_format]] *weechat.look.quote_time_format*
-** opis: pass:none[format czasu podczas cytowania wiadomości (zobacz /help cursor)]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+"%H:%M:%S"+`
-
-* [[option_weechat.look.read_marker]] *weechat.look.read_marker*
-** opis: pass:none[używaj znacznika (linii albo znaku) do zaznaczania pierwszej nieprzeczytanej linii w buforze]
-** typ: liczba
-** wartości: none, line, char
-** domyślna wartość: `+line+`
-
-* [[option_weechat.look.read_marker_always_show]] *weechat.look.read_marker_always_show*
-** opis: pass:none[zawsze pokazuj wskaźnik przeczytania, nawet jeśli jest po ostatniej linii w buforze]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+off+`
-
-* [[option_weechat.look.read_marker_string]] *weechat.look.read_marker_string*
-** opis: pass:none[ciąg używany do rysowania znacznika przeczytanej linii (ciąg jest powtarzany do końca linii)]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+"- "+`
-
-* [[option_weechat.look.read_marker_update_on_buffer_switch]] *weechat.look.read_marker_update_on_buffer_switch*
-** opis: pass:none[aktualizuj wskaźnik przeczytania podczas przełączania buforów]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+on+`
-
-* [[option_weechat.look.save_config_on_exit]] *weechat.look.save_config_on_exit*
-** opis: pass:none[zapisz plik konfiguracyjny przy wyjściu]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+on+`
-
-* [[option_weechat.look.save_config_with_fsync]] *weechat.look.save_config_with_fsync*
-** opis: pass:none[użyj fsync do synchronizacji konfiguracji na zewnętrznym nośniku (zobacz man fsync); jest to wolniejsze ale powinno zapobiec utracie danych w przypadku zaniku napięcia podczas zapisu danych konfiguracyjnych]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+off+`
-
-* [[option_weechat.look.save_layout_on_exit]] *weechat.look.save_layout_on_exit*
-** opis: pass:none[zapisz układ przy wyjściu (bufory, okna lub oba)]
-** typ: liczba
-** wartości: none, buffers, windows, all
-** domyślna wartość: `+none+`
-
-* [[option_weechat.look.scroll_amount]] *weechat.look.scroll_amount*
-** opis: pass:none[ile linii przewijać za pomocą scroll_up i scroll_down]
-** typ: liczba
-** wartości: 1 .. 2147483647
-** domyślna wartość: `+3+`
-
-* [[option_weechat.look.scroll_bottom_after_switch]] *weechat.look.scroll_bottom_after_switch*
-** opis: pass:none[przewiń na spód okna po przełączeniu do innego bufora (nie zapamiętuj pozycji w oknie); przewijanie wykonywane jest tylko w buforach ze sformatowaną zawartością]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+off+`
-
-* [[option_weechat.look.scroll_page_percent]] *weechat.look.scroll_page_percent*
-** opis: pass:none[procent ekranu do przewinięcia podczas przewijania strony w górę lub w dół (na przykład 100 oznacza jedną stronę, 50 pół strony)]
-** typ: liczba
-** wartości: 1 .. 100
-** domyślna wartość: `+100+`
-
-* [[option_weechat.look.search_text_not_found_alert]] *weechat.look.search_text_not_found_alert*
-** opis: pass:none[powiadamia użytkownika, kiedy wyszukiwany tekst nie został znaleziony w buforze]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+on+`
-
-* [[option_weechat.look.separator_horizontal]] *weechat.look.separator_horizontal*
-** opis: pass:none[znak używany do rysowania poziomych separatorów dookoła pasków i okien (pusta wartość oznacza rysowanie prawdziwych linii za pomocą ncurses, jednak może powodować błędy w zaznaczaniu URLi w niektórych terminalach); szerokość na ekranie musi wynosić dokładnie jeden znak]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+"-"+`
-
-* [[option_weechat.look.separator_vertical]] *weechat.look.separator_vertical*
-** opis: pass:none[znak używany do rysowania poziomych separatorów dookoła pasków i okien (pusta wartość oznacza rysowanie prawdziwych linii za pomocą ncurses); szerokość na ekranie musi wynosić dokładnie jeden znak]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+""+`
-
-* [[option_weechat.look.tab_width]] *weechat.look.tab_width*
-** opis: pass:none[liczba spacji używana do wyświetlania tabulacji w wiadomościach]
-** typ: liczba
-** wartości: 1 .. 64
-** domyślna wartość: `+1+`
-
-* [[option_weechat.look.time_format]] *weechat.look.time_format*
-** opis: pass:none[format czasu dla dat, konwertowany do ciągu i wyświetlany w wiadomościach (zobacz man strftime dla specyfikatorów daty/czasu)]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+"%a, %d %b %Y %T"+`
-
-* [[option_weechat.look.window_auto_zoom]] *weechat.look.window_auto_zoom*
-** opis: pass:none[automatycznie skup się na obecnym oknie jeśli terminal stanie się zbyt mały do wyświetlenia wszystkich okien (użyj alt-z w celu oddalenia okien, kiedy terminal będzie dostatecznie duży)]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+off+`
-
-* [[option_weechat.look.window_separator_horizontal]] *weechat.look.window_separator_horizontal*
-** opis: pass:none[wyświetl poziomy separator pomiędzy oknami]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+on+`
-
-* [[option_weechat.look.window_separator_vertical]] *weechat.look.window_separator_vertical*
-** opis: pass:none[wyświetl pionowy separator pomiędzy oknami]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+on+`
-
-* [[option_weechat.look.window_title]] *weechat.look.window_title*
-** opis: pass:none[tytuł dla okna (terminal dla GUI Curses), ustawiany na starcie; pusty ciąg pozostawi tytuł bez zmian (zawartość jest przetwarzana, zobacz /help eval); przykład: "WeeChat ${info:version}"]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+""+`
-
-* [[option_weechat.look.word_chars_highlight]] *weechat.look.word_chars_highlight*
-** opis: pass:none[oddzielona przecinkami lista znaków (lub zakres znaków) rozważanych jako część słowa podświetlenia; każdy element może być pojedynczym znakiem, zakresem znaków (format: a-z), klasą znaków (przykład "alnum", zobacz man wctype); znak "!" przed elementem neguje go (znak NIE jest uznawany za część słowa); wartość "*" pasuje do dowolnego znaku; znaki unikodu są dozwolone w formacie \u1234, na przykład \u00A0 dla niełamliwej spacji (wspierane formaty można znaleźć w /help print)]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+"!\u00A0,-,_,|,alnum"+`
-
-* [[option_weechat.look.word_chars_input]] *weechat.look.word_chars_input*
-** opis: pass:none[oddzielona przecinkami lista znaków (lub zakres znaków) rozważanych jako część słowa linii poleceń; każdy element może być pojedynczym znakiem, zakresem znaków (format: a-z), klasą znaków (przykład "alnum", zobacz man wctype); znak "!" przed elementem neguje go (znak NIE jest uznawany za część słowa); wartość "*" pasuje do dowolnego znaku; znaki unikodu są dozwolone w formacie \u1234, na przykład \u00A0 dla niełamliwej spacji (wspierane formaty można znaleźć w /help print)]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+"!\u00A0,-,_,|,alnum"+`
-
-* [[option_weechat.network.connection_timeout]] *weechat.network.connection_timeout*
-** opis: pass:none[czas oczekiwania (w sekundach) na połączenie ze zdalnym serwerem (wykonywane w procesie potomnym)]
-** typ: liczba
-** wartości: 1 .. 2147483647
-** domyślna wartość: `+60+`
-
-* [[option_weechat.network.gnutls_ca_system]] *weechat.network.gnutls_ca_system*
-** opis: pass:none[ładuje zaufane, systemowe urzędy certyfikacyjne podczas uruchomienia; można to wyłączyć w celu oszczędzenia pamięci tylko jeśli połączenia SSL nie są używane]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+on+`
-
-* [[option_weechat.network.gnutls_ca_user]] *weechat.network.gnutls_ca_user*
-** opis: pass:none[dodatkowy plik(i) z urzędami certyfikacji; wiele plików można oddzielić dwukropkiem (każda ścieżka jest przetwarzana, zobacz funkcję string_eval_path_home w opisie API wtyczek)]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+""+`
-
-* [[option_weechat.network.gnutls_handshake_timeout]] *weechat.network.gnutls_handshake_timeout*
-** opis: pass:none[czas oczekiwania (w sekundach) na uwierzytelnienie gnutls]
-** typ: liczba
-** wartości: 1 .. 2147483647
-** domyślna wartość: `+30+`
-
-* [[option_weechat.network.proxy_curl]] *weechat.network.proxy_curl*
-** opis: pass:none[nazwa pośrednika używanego do pobierania URLi za pomocą Curl (używane do pobierania listy skryptów oraz w skryptach wywołujących funkcję hook_process); pośrednik musi być zdefiniowany za pomocą komendy /proxy]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+""+`
-
-* [[option_weechat.plugin.autoload]] *weechat.plugin.autoload*
-** opis: pass:none[oddzielona przecinkami lista wtyczek do automatycznego załadowania podczas startu, "*" oznacza wszystkie znalezione wtyczki, nazwa zaczynająca się od "!" powoduje nie ładowanie tej wtyczki, wildcard "*" jest dozwolony w nazwach (przykłady: "*" lub "*,!lua,!tcl")]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+"*"+`
-
-* [[option_weechat.plugin.extension]] *weechat.plugin.extension*
-** opis: pass:none[oddzielona przecinkami lista rozszerzeń nazw plików dla wtyczek]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+".so,.dll"+`
-
-* [[option_weechat.plugin.path]] *weechat.plugin.path*
-** opis: pass:none[ścieżka do wtyczek (ścieżka jest przetwarzana, zobacz funkcje string_eval_path_home w opisie API wtyczek)]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+"${weechat_data_dir}/plugins"+`
-
-* [[option_weechat.plugin.save_config_on_unload]] *weechat.plugin.save_config_on_unload*
-** opis: pass:none[zapisuj pliki konfiguracyjne przy wyładowywaniu wtyczek]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+on+`
-
-* [[option_weechat.signal.sighup]] *weechat.signal.sighup*
-** opis: pass:none[komenda wykonana po otrzymaniu sygnału, wiele komend można oddzielić średnikiem (uwaga: zawartość jest przetwarzana, zobacz /help eval)]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+"${if:${info:weechat_headless}?/reload:/quit -yes}"+`
-
-* [[option_weechat.signal.sigquit]] *weechat.signal.sigquit*
-** opis: pass:none[komenda wykonana po otrzymaniu sygnału, wiele komend można oddzielić średnikiem (uwaga: zawartość jest przetwarzana, zobacz /help eval)]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+"/quit -yes"+`
-
-* [[option_weechat.signal.sigterm]] *weechat.signal.sigterm*
-** opis: pass:none[komenda wykonana po otrzymaniu sygnału, wiele komend można oddzielić średnikiem (uwaga: zawartość jest przetwarzana, zobacz /help eval)]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+"/quit -yes"+`
-
-* [[option_weechat.signal.sigusr1]] *weechat.signal.sigusr1*
-** opis: pass:none[komenda wykonana po otrzymaniu sygnału, wiele komend można oddzielić średnikiem (uwaga: zawartość jest przetwarzana, zobacz /help eval)]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+""+`
-
-* [[option_weechat.signal.sigusr2]] *weechat.signal.sigusr2*
-** opis: pass:none[komenda wykonana po otrzymaniu sygnału, wiele komend można oddzielić średnikiem (uwaga: zawartość jest przetwarzana, zobacz /help eval)]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+""+`
-
-* [[option_weechat.startup.command_after_plugins]] *weechat.startup.command_after_plugins*
-** opis: pass:none[komenda wykonana kiedy WeeChat jest uruchamiany, po załadowaniu wtyczek; wiele komend można oddzielić średnikami (uwaga: zawartość jest przetwarzana, zobacz /help eval)]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+""+`
-
-* [[option_weechat.startup.command_before_plugins]] *weechat.startup.command_before_plugins*
-** opis: pass:none[komenda wykonana kiedy WeeChat jest uruchamiany, przed załadowaniem wtyczek; wiele komend można oddzielić średnikami (uwaga: zawartość jest przetwarzana, zobacz /help eval)]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+""+`
-
-* [[option_weechat.startup.display_logo]] *weechat.startup.display_logo*
-** opis: pass:none[wyświetl logo WeeChat podczas uruchamiania]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+on+`
-
-* [[option_weechat.startup.display_version]] *weechat.startup.display_version*
-** opis: pass:none[wyświetl wersję WeeChat podczas uruchamiania]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+on+`
-
-* [[option_weechat.startup.sys_rlimit]] *weechat.startup.sys_rlimit*
-** opis: pass:none[ustawia limit zasobów dla procesu WeeChat, format: "res1:limit1,res2:limit2"; nazwa zasobu to końcówka stałej (RLIMIT_XXX) pisana małymi literami (wartości można znaleźć w man setrlimit); limit -1 oznacza "nieograniczone"; przykład ustawienie braku limitu dla rdzenia i maksymalnie 1 GB dla pamięci wirtualnej: "core:-1,as:1000000000"]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+""+`
-// end::weechat_options[]
-
-// tag::charset_options[]
-* [[option_charset.default.decode]] *charset.default.decode*
-** opis: pass:none[globalne dekodowanie: kodowanie użyte do dekodowania przychodzących wiadomości, kiedy nie są one zgodne z UTF-8]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+"iso-8859-1"+`
-
-* [[option_charset.default.encode]] *charset.default.encode*
-** opis: pass:none[globalne dekodowanie: kodowanie użyte do dekodowania wychodzących wiadomości (jeśli się nie powiedzie, zostanie przywrócone UTF-8, ponieważ jest to domyślne kodowanie w WeeChat)]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+""+`
-// end::charset_options[]
+** domyślna wartość: `+yellow+`
-// tag::logger_options[]
-* [[option_logger.color.backlog_end]] *logger.color.backlog_end*
-** opis: pass:none[kolor linii kończącej backloga]
+* [[option_fset.color.section_selected]] *fset.color.section_selected*
+** opis: pass:none[kolor sekcji w wybranej linii]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+default+`
+** domyślna wartość: `+white+`
-* [[option_logger.color.backlog_line]] *logger.color.backlog_line*
-** opis: pass:none[kolor linii backloga, używany tylko jeśli opcja logger.file.color_lines jest wyłączona]
+* [[option_fset.color.string_values]] *fset.color.string_values*
+** opis: pass:none[kolor dla wartości ciągów]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
** domyślna wartość: `+default+`
-* [[option_logger.file.auto_log]] *logger.file.auto_log*
-** opis: pass:none[automatycznie zapisuj zawartość buforów do plików (chyba, że bufor ma wyłączone logowanie); jeśli wyłączone logowanie jest wyłączone we wszystkich buforach]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+on+`
-
-* [[option_logger.file.color_lines]] *logger.file.color_lines*
-** opis: pass:none[użyj kodów kolorów ANSI w liniach zapisywanych do plików z logami oraz wyświetlaj linie backloga z tymi kolorami]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+off+`
-
-* [[option_logger.file.flush_delay]] *logger.file.flush_delay*
-** opis: pass:none[ilość sekund pomiędzy zapisywaniem plików z logami (0 = zapisuj pliki natychmiast po pojawieniu sie każdej nowej linii)]
-** typ: liczba
-** wartości: 0 .. 3600
-** domyślna wartość: `+120+`
-
-* [[option_logger.file.fsync]] *logger.file.fsync*
-** opis: pass:none[użyj fsync do synchronizacji plików z logami z zewnętrznym nośnikiem (zobacz man fsync); jest to wolniejsze ale powinno zapobiec utracie danych w przypadku zaniku napięcia podczas zapisu plików z logami]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+off+`
-
-* [[option_logger.file.info_lines]] *logger.file.info_lines*
-** opis: pass:none[zapisuje informacje w pliku z logami o rozpoczęciu i zakończeniu logowania buforu]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+off+`
-
-* [[option_logger.file.mask]] *logger.file.mask*
-** opis: pass:none[domyślna maska nazw plików z logami (format to "ścieżka/do/pliku" lub "plik", bez pierwszego "/" ponieważ opcja "path" jest użyta do stworzenia kompletnej ścieżki do pliku); lokalne zmienne buforów dozwolone; (powinno się używać tylko zmiennych zdefiniowanych dla wszytkich buforów, na przykład nie należy używać $server ani $channel); określenia dla daty są dozwolone (zobacz man strftime)]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+"$plugin.$name.weechatlog"+`
-
-* [[option_logger.file.name_lower_case]] *logger.file.name_lower_case*
-** opis: pass:none[używaj tylko małych liter dla nazw plików z logami]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+on+`
-
-* [[option_logger.file.nick_prefix]] *logger.file.nick_prefix*
-** opis: pass:none[tekst wyświetlany przed nickiem w przedrostku wiadomości, przykład: "<"]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+""+`
-
-* [[option_logger.file.nick_suffix]] *logger.file.nick_suffix*
-** opis: pass:none[tekst wyświetlany za nickiem w przedrostku wiadomości, przykład: ">"]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+""+`
-
-* [[option_logger.file.path]] *logger.file.path*
-** opis: pass:none[ścieżka do plików z logami WeeChat; specyfikatory daty są dozwolone (zobacz man strftime) (ścieżka jest przetwarzana, zobacz funkcje string_eval_path_home w opisie API wtyczek)]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+"${weechat_data_dir}/logs"+`
-
-* [[option_logger.file.replacement_char]] *logger.file.replacement_char*
-** opis: pass:none[znak zastępczy dla znaków specjalnych w plikach stworzonych przy użyciu maski (jak separator katalogów)]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+"_"+`
-
-* [[option_logger.file.rotation_compression_level]] *logger.file.rotation_compression_level*
-** opis: pass:none[poziom kompresji dla rotowanych plików logów (z rozszerzeniem ".1", ".2", etc.), jeśli opcja logger.file.rotation_compression_type jest włączona: 1 = niska kompresja / szybkie ... 100 = najlepsza kompresja / wolne; wartość procentowa przeliczana na 1-9 dla gzip i 1-19 dla zstd; zalecana jest domyślna wartość, oferuje ona dobry kompromis pomiędzy kompresją i szybkością]
-** typ: liczba
-** wartości: 1 .. 100
-** domyślna wartość: `+20+`
-
-* [[option_logger.file.rotation_compression_type]] *logger.file.rotation_compression_type*
-** opis: pass:none[typ kompresji dla rotowanych plików logów; jeśli ustawiona na "none" rotowane pliki logów nie będą kompresowane; UWAGA: jeśli rotacja była włączona z innym typem kompresji (lub bez), musisz najpierw wyładować wtyczkę logger, skompresować pliki na nowo (lub rozpakować), następnie zmienić opcję w pliku logger.conf, następnie załadować wtyczkę logger]
-** typ: liczba
-** wartości: none, gzip, zstd
-** domyślna wartość: `+none+`
-
-* [[option_logger.file.rotation_size_max]] *logger.file.rotation_size_max*
-** opis: pass:none[kiedy plik osiągnie podany rozmiar, zostanie on zrotowany: nazwy istniejących plików zostaną zmienione (.1 stanie się .2, .2 stanie się .3, etc.) i obecny plik otrzyma rozszerzenie .1; liczba całkowita z sufiksem jest dozwolona: b = bajty (domyślnie jeśli nie podamy jednostki), k = kilobajty, m = megabajty, g = gigabajty, t = terabajty; przykład "2g" spowoduje rotację jeśli rozmiar pliku przekroczy 2 000 000 000 bajtów; jeśli ustawione na "0" pliki nie będą rotowane (nieograniczony rozmiar); UWAGA: przed zmianą tej opcji powinieneś najpierw ustawić typ kompresji za pomocą opcji logger.file.rotation_compression_type]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+"0"+`
-
-* [[option_logger.file.time_format]] *logger.file.time_format*
-** opis: pass:none[format czasu użyty w plikach z logami (zobacz man strftime dla specyfikatorów daty/czasu)]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+"%Y-%m-%d %H:%M:%S"+`
-
-* [[option_logger.look.backlog]] *logger.look.backlog*
-** opis: pass:none[maksymalna ilość linii wyświetlana z logu podczas tworzenia nowego bufora (0 = bez historii)]
-** typ: liczba
-** wartości: 0 .. 2147483647
-** domyślna wartość: `+20+`
-
-* [[option_logger.look.backlog_conditions]] *logger.look.backlog_conditions*
-** opis: pass:none[warunki do wyświetlania backlogu (uwaga: zawartość jest przetwarzana, zobacz /help eval); pusta wartość wyświetla backlog we wszystkich buforach; na przykład żeby wyświetlić backlog tylko w prywatnych buforach: "${type} == private"]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+""+`
-// end::logger_options[]
-
-// tag::exec_options[]
-* [[option_exec.color.flag_finished]] *exec.color.flag_finished*
-** opis: pass:none[kolor tekstu dla flagi zakończonej komendy na liście komend]
+* [[option_fset.color.string_values_selected]] *fset.color.string_values_selected*
+** opis: pass:none[kolor dla wartości ciągów w wybranej linii]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+lightred+`
+** domyślna wartość: `+white+`
-* [[option_exec.color.flag_running]] *exec.color.flag_running*
-** opis: pass:none[kolor dla flagi wykonywanej komendy na liście komend]
+* [[option_fset.color.title_count_options]] *fset.color.title_count_options*
+** opis: pass:none[kolor liczby znalezionych opcji z użyciem obecnego filtra w tytule bofora]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+lightgreen+`
-
-* [[option_exec.command.default_options]] *exec.command.default_options*
-** opis: pass:none[domyślne opcje dla komendy /exec (zobacz /help exec): przykład: "-nosh -bg" uruchomi wszystkie komendy w tle (brak wyjścia) i bez używania powłoki]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+""+`
-
-* [[option_exec.command.purge_delay]] *exec.command.purge_delay*
-** opis: pass:none[opóźnienie dla kasowania zakończonych komend (w sekundach, 0 = natychmiast, -1 = nigdy)]
-** typ: liczba
-** wartości: -1 .. 25920000
-** domyślna wartość: `+0+`
-
-* [[option_exec.command.shell]] *exec.command.shell*
-** opis: pass:none[powłoka używana przez komendę "/exec -sh"; może to być nazwa powłoki jeśli znajduje się ona w PATH (na przykład "bash") lub ścieżka absolutna (na przykład "/bin/bash"); jeśli wartość jest pusta, zostanie użyte "sh" (uwaga: zawartość jest przetwarzana, zobacz /help eval)]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+"${env:SHELL}"+`
-// end::exec_options[]
+** domyślna wartość: `+cyan+`
-// tag::trigger_options[]
-* [[option_trigger.color.flag_command]] *trigger.color.flag_command*
-** opis: pass:none[kolor tekstu dla flag komend (w /trigger list)]
+* [[option_fset.color.title_current_option]] *fset.color.title_current_option*
+** opis: pass:none[kolor obecnego numeru opcji w tytule bufora]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+lightgreen+`
+** domyślna wartość: `+lightcyan+`
-* [[option_trigger.color.flag_conditions]] *trigger.color.flag_conditions*
-** opis: pass:none[kolor tekstu dla flag warunków (w /trigger list)]
+* [[option_fset.color.title_filter]] *fset.color.title_filter*
+** opis: pass:none[kolor filtru w tytule bufora]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
** domyślna wartość: `+yellow+`
-* [[option_trigger.color.flag_post_action]] *trigger.color.flag_post_action*
-** opis: pass:none[kolor tekstu dla flagi końca akcji (w /trigger list)]
+* [[option_fset.color.title_marked_options]] *fset.color.title_marked_options*
+** opis: pass:none[kolor numeru zaznaczonych opcji w tytule bufora]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+lightblue+`
+** domyślna wartość: `+lightgreen+`
-* [[option_trigger.color.flag_regex]] *trigger.color.flag_regex*
-** opis: pass:none[kolor tekstu dla flag wyrażeń regularnych (w /trigger list)]
+* [[option_fset.color.title_sort]] *fset.color.title_sort*
+** opis: pass:none[kolor sortowania w tytule okna]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+lightcyan+`
+** domyślna wartość: `+white+`
-* [[option_trigger.color.flag_return_code]] *trigger.color.flag_return_code*
-** opis: pass:none[kolor tekstu dla flagi zwracanego kodu (w /trigger list)]
+* [[option_fset.color.type]] *fset.color.type*
+** opis: pass:none[kolor typu]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+lightmagenta+`
+** domyślna wartość: `+green+`
-* [[option_trigger.color.identifier]] *trigger.color.identifier*
-** opis: pass:none[kolor tekstu dla identyfikatorów kontekstu triggera w buforze monitorującym]
+* [[option_fset.color.type_selected]] *fset.color.type_selected*
+** opis: pass:none[kolor typu w zaznaczonej linii]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+cyan+`
+** domyślna wartość: `+lightgreen+`
-* [[option_trigger.color.regex]] *trigger.color.regex*
-** opis: pass:none[kolor tekstu dla wyrażeń regularnych]
+* [[option_fset.color.unmarked]] *fset.color.unmarked*
+** opis: pass:none[kolor znacznika zaznaczenia, kiedy opcja nie jest zaznaczona]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+white+`
+** domyślna wartość: `+default+`
-* [[option_trigger.color.replace]] *trigger.color.replace*
-** opis: pass:none[kolor tekstu dla tekstu zastępczego (dla wyrażeń regularnych)]
+* [[option_fset.color.unmarked_selected]] *fset.color.unmarked_selected*
+** opis: pass:none[kolor znacznika zaznaczenia w wybranej linii, kiedy opcja nie jest zaznaczona]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+cyan+`
+** domyślna wartość: `+white+`
-* [[option_trigger.color.trigger]] *trigger.color.trigger*
-** opis: pass:none[kolor tekstu dla nazwy triggera]
+* [[option_fset.color.value]] *fset.color.value*
+** opis: pass:none[kolor wartości]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+green+`
+** domyślna wartość: `+cyan+`
-* [[option_trigger.color.trigger_disabled]] *trigger.color.trigger_disabled*
-** opis: pass:none[kolor tekstu dla nazwy wyłączonego triggera]
+* [[option_fset.color.value_changed]] *fset.color.value_changed*
+** opis: pass:none[kolor dla zmienionej wartości (inny niż domyślny)]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+red+`
-
-* [[option_trigger.look.enabled]] *trigger.look.enabled*
-** opis: pass:none[włącza wsparcie dla triggerów]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+on+`
-
-* [[option_trigger.look.monitor_strip_colors]] *trigger.look.monitor_strip_colors*
-** opis: pass:none[usuń kolory w wartościach tablic haszy wyświetlanych w buforze monitorującym]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+off+`
-// end::trigger_options[]
-
-// tag::spell_options[]
-* [[option_spell.check.commands]] *spell.check.commands*
-** opis: pass:none[oddzielona przecinkiem lista komend, dla których sprawdzana jest poprawna pisownia (sprawdzanie pisowni jest wyłączone dla pozostałych komend)]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+"away,command,cycle,kick,kickban,me,msg,notice,part,query,quit,topic"+`
-
-* [[option_spell.check.default_dict]] *spell.check.default_dict*
-** opis: pass:none[domyślny słownik (lub oddzielona przecinkami lista słowników) używany, kiedy bufor nie ma zdefiniowanego słownika (zostaw puste, aby wyłączyć sprawdzanie pisowni w buforach, w których nie zostało to włączone)]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+""+`
-
-* [[option_spell.check.during_search]] *spell.check.during_search*
-** opis: pass:none[sprawdzaj słowa podczas wyszukiwania tekstu w buforze]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+off+`
-
-* [[option_spell.check.enabled]] *spell.check.enabled*
-** opis: pass:none[włącza sprawdzanie pisowni dla linii komend]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+off+`
-
-* [[option_spell.check.real_time]] *spell.check.real_time*
-** opis: pass:none[sprawdzanie pisowni w czasie rzeczywistym (wolniejsze, wyłączone domyślnie: słowa są sprawdzane tylko jeśli za nimi znajduje się separator)]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+off+`
-
-* [[option_spell.check.suggestions]] *spell.check.suggestions*
-** opis: pass:none[numer podpowiedzi wyświetlanych w elemencie paska "spell_suggest" dla każdego słownika ustawionego w buforze (-1 = wyłącza podpowiedzi, 0 = wyświetla wszystkie możliwe podpowiedzi dla każdego języka)]
-** typ: liczba
-** wartości: -1 .. 2147483647
-** domyślna wartość: `+-1+`
-
-* [[option_spell.check.word_min_length]] *spell.check.word_min_length*
-** opis: pass:none[minimalna długość słowa do sprawdzenia ( 0 - sprawdzaj wszystkie słowa)]
-** typ: liczba
-** wartości: 0 .. 2147483647
-** domyślna wartość: `+2+`
+** domyślna wartość: `+brown+`
-* [[option_spell.color.misspelled]] *spell.color.misspelled*
-** opis: pass:none[kolor używany dla błędnie zapisanych słów (pasek wprowadzania)]
+* [[option_fset.color.value_changed_selected]] *fset.color.value_changed_selected*
+** opis: pass:none[kolor dla zmienionej wartości (inny niż domyślny) w wybranej linii]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+lightred+`
+** domyślna wartość: `+yellow+`
-* [[option_spell.color.suggestion]] *spell.color.suggestion*
-** opis: pass:none[kolor tekstu sugestii dla błędnie wprowadzonego słowa w elemencie paska "spell_suggest"]
+* [[option_fset.color.value_selected]] *fset.color.value_selected*
+** opis: pass:none[kolor wartości w wybranej linii]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+default+`
+** domyślna wartość: `+lightcyan+`
-* [[option_spell.color.suggestion_delimiter_dict]] *spell.color.suggestion_delimiter_dict*
-** opis: pass:none[kolor tekstu separatorów wyświetlanych pomiędzy dwoma słownikami w elemenci paska "spell_suggest"]
+* [[option_fset.color.value_undef]] *fset.color.value_undef*
+** opis: pass:none[kolor niezdefiniowanej wartości]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+cyan+`
+** domyślna wartość: `+magenta+`
-* [[option_spell.color.suggestion_delimiter_word]] *spell.color.suggestion_delimiter_word*
-** opis: pass:none[kolor tekstu dla separatorów wyświetlanych pomiędzy dwoma słowami w elemencie paska "spell_suggest"]
+* [[option_fset.color.value_undef_selected]] *fset.color.value_undef_selected*
+** opis: pass:none[kolor niezdefiniowanej wartości w wybranej linii]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+cyan+`
-
-* [[option_spell.look.suggestion_delimiter_dict]] *spell.look.suggestion_delimiter_dict*
-** opis: pass:none[separator wyświetlany pomiędzy dwoma słownikami w elemencie paska "spell_suggest"]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+" / "+`
-
-* [[option_spell.look.suggestion_delimiter_word]] *spell.look.suggestion_delimiter_word*
-** opis: pass:none[separator wyświetlany pomiędzy dwoma słowami w elemencie paska "spell_suggest"]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+","+`
-// end::spell_options[]
-
-// tag::buflist_options[]
-* [[option_buflist.format.buffer]] *buflist.format.buffer*
-** opis: pass:none[format każdej linii w buforze (uwaga: zawartość jest przetwarzana, zobacz /help buflist); przykład: standardowy format dla elementu paska „buflist” i tylko numer bufora w nawiasach kwadratowych dla pozostałych elementów („buflist2” i „buflist3”): "${if:${bar_item.name}==buflist?${format_number}${indent}${format_nick_prefix}${color_hotlist}${format_name}:[${number}\]}"]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+"${format_number}${indent}${format_nick_prefix}${color_hotlist}${format_name}"+`
-
-* [[option_buflist.format.buffer_current]] *buflist.format.buffer_current*
-** opis: pass:none[format linii z obecnym buforem (uwaga: zawartość jest przetwarzana, zobacz /help buflist)]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+"${color:,blue}${format_buffer}"+`
-
-* [[option_buflist.format.hotlist]] *buflist.format.hotlist*
-** opis: pass:none[format hotlisty (uwaga: zawartość jest przetwarzana, zobacz /help buflist)]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+" ${color:green}(${hotlist}${color:green})"+`
-
-* [[option_buflist.format.hotlist_highlight]] *buflist.format.hotlist_highlight*
-** opis: pass:none[format dla bufora z poziomem hotlisty "highlight" (uwaga: zawartość jest przetwarzana, zobacz /help buflist)]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+"${color:magenta}"+`
-
-* [[option_buflist.format.hotlist_low]] *buflist.format.hotlist_low*
-** opis: pass:none[format dla bufora z poziomem hotlisty "low" (uwaga: zawartość jest przetwarzana, zobacz /help buflist)]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+"${color:white}"+`
-
-* [[option_buflist.format.hotlist_message]] *buflist.format.hotlist_message*
-** opis: pass:none[format dla bufora z poziomem hotlisty "message" (uwaga: zawartość jest przetwarzana, zobacz /help buflist)]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+"${color:brown}"+`
-
-* [[option_buflist.format.hotlist_none]] *buflist.format.hotlist_none*
-** opis: pass:none[format dla bufora nie znajdującego się na hotliście (uwaga: zawartość jest przetwarzana, zobacz /help buflist)]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+"${color:default}"+`
-
-* [[option_buflist.format.hotlist_private]] *buflist.format.hotlist_private*
-** opis: pass:none[format dla bufora z poziomem hotlisty "private" (uwaga: zawartość jest przetwarzana, zobacz /help buflist)]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+"${color:green}"+`
-
-* [[option_buflist.format.hotlist_separator]] *buflist.format.hotlist_separator*
-** opis: pass:none[separator dla zliczeń na hotliście (uwaga: zawartość jest przetwarzana, zobacz /help buflist)]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+"${color:default},"+`
+** domyślna wartość: `+lightmagenta+`
-* [[option_buflist.format.indent]] *buflist.format.indent*
-** opis: pass:none[ciąg wyświetlany dla wyrównania kanału i prywatnego bufora (uwaga: zawartość jest przetwarzana, zobacz /help buflist)]
+* [[option_fset.format.export_help]] *fset.format.export_help*
+** opis: pass:none[format linii z pomocą zapisanej przed każdą opcją eskportowaną do pliku (uwaga: zawartość jest przetwarzana, zobacz /help fset)]
** typ: ciąg
** wartości: dowolny ciąg
-** domyślna wartość: `+" "+`
+** domyślna wartość: `+"# ${description2}"+`
-* [[option_buflist.format.lag]] *buflist.format.lag*
-** opis: pass:none[format dla opóźnienia dla buforu serwera IRC (uwaga: zawartość jest przetwarzana, zobacz /help buflist)]
+* [[option_fset.format.export_option]] *fset.format.export_option*
+** opis: pass:none[format każdej opcji eskportowanej do pliku (uwaga: zawartość jest przetwarzana, zobacz /help fset)]
** typ: ciąg
** wartości: dowolny ciąg
-** domyślna wartość: `+" ${color:green}[${color:brown}${lag}${color:green}]"+`
+** domyślna wartość: `+"/set ${name} ${quoted_value}"+`
-* [[option_buflist.format.name]] *buflist.format.name*
-** opis: pass:none[format dla nazwy bufora (uwaga: zawartość jest przetwarzana, zobacz /help buflist)]
+* [[option_fset.format.export_option_null]] *fset.format.export_option_null*
+** opis: pass:none[format każdej opcji z wartością "null" eksportowanej do pliku (uwaga: zawartość jest przetwarzana, zobacz /help fset)]
** typ: ciąg
** wartości: dowolny ciąg
-** domyślna wartość: `+"${name}"+`
+** domyślna wartość: `+"/unset ${name}"+`
-* [[option_buflist.format.nick_prefix]] *buflist.format.nick_prefix*
-** opis: pass:none[format dla prefiksu nicka na kanale (uwaga: zawartość jest przetwarzana, zobacz /help buflist)]
+* [[option_fset.format.option1]] *fset.format.option1*
+** opis: pass:none[pierwszy format dla każdej linii, użyty kiedy opcja fset.look.format_number ma wartość 1 (uwaga: zawartość jest przetwarzana, zobacz /help fset); pusty ciąg używa domyślnego formatu ("${marked} ${name} ${type} ${value2}"), który nie przetwarza ciągów, przez co jest szybszy; formaty można zmienić za pomocą ctrl-X]
** typ: ciąg
** wartości: dowolny ciąg
-** domyślna wartość: `+"${color_nick_prefix}${nick_prefix}"+`
+** domyślna wartość: `+""+`
-* [[option_buflist.format.number]] *buflist.format.number*
-** opis: pass:none[format dla numeru bufora, ${number} to wyrównany numr (uwaga: zawartość jest przetwarzana, zobacz /help buflist)]
+* [[option_fset.format.option2]] *fset.format.option2*
+** opis: pass:none[drugi format dla każdej linii, użyty kiedy opcja fset.look.format_number ma wartość 2 (uwaga: zawartość jest przetwarzana, zobacz /help fset); pusty ciąg używa domyślnego formatu ("${marked} ${name} ${type} ${value2}"), który nie przetwarza ciągów, przez co jest szybszy; formaty można zmienić za pomocą ctrl-X]
** typ: ciąg
** wartości: dowolny ciąg
-** domyślna wartość: `+"${color:green}${number}${if:${number_displayed}?.: }"+`
+** domyślna wartość: `+"${marked} ${name} ${type} ${value2}${newline} ${empty_name} ${_default_value}${color:darkgray} -- ${min}..${max}${newline} ${empty_name} ${description}"+`
-* [[option_buflist.format.tls_version]] *buflist.format.tls_version*
-** opis: pass:none[format dla wersji TLS w buforze serwera IRC (uwaga: zawartość jest przetwarzana, zobacz /help buflist)]
+* [[option_fset.look.auto_refresh]] *fset.look.auto_refresh*
+** opis: pass:none[oddzielona przecinkami lista opcji odświeżanych automatycznie w buforze fset (jeśli jest on otwarty); "*" oznacza wszystkie opcje (zalecane), nazwa zaczynająca się od "!" oznacza wartość negatywną i zapobiega odświeżeniu opcji, "*" jest dozwolone w nazwach (przykład: "*,!plugin.section.*")]
** typ: ciąg
** wartości: dowolny ciąg
-** domyślna wartość: `+" ${color:default}(${if:${tls_version}==TLS1.3?${color:green}:${if:${tls_version}==TLS1.2?${color:yellow}:${color:red}}}${translate:${tls_version}}${color:default})"+`
+** domyślna wartość: `+"*"+`
-* [[option_buflist.look.add_newline]] *buflist.look.add_newline*
-** opis: pass:none[dodaje pustą linię pomiędzy wyświetlanymi buforami, każdy bufor jest wyświetlany w oddzielnej linii (zalecane); jeśli wyłączone, nowe linie muszą być manualnie dodawane w formatach za pomocą "${\n}", oraz akcje myszy przestają być możliwe]
+* [[option_fset.look.auto_unmark]] *fset.look.auto_unmark*
+** opis: pass:none[automatycznie odznacza wszystkie opcje po akcji na zaznaczonych opcjach lub po odświerzeniu]
** typ: bool
** wartości: on, off
-** domyślna wartość: `+on+`
-
-* [[option_buflist.look.auto_scroll]] *buflist.look.auto_scroll*
-** opis: pass:none[automatycznie przewiń litę kanałów, żeby zawsze wyświetlała obecny bufor (działa tylko, kiedy lita kanałów ma pozycję lewo/prawo z uzupełnianiem "vertical"); ta wartość określa procentowo ilość linii wyświetlanych przed obecnym buforem podczas przewijania (-1 = wyłącz przewijanie); na przykład 50 oznacza, że po przewinięciu obecny bufor jest na środku listy, 0 oznacza górę listy, 100 dół listy]
-** typ: liczba
-** wartości: -1 .. 100
-** domyślna wartość: `+50+`
+** domyślna wartość: `+off+`
-* [[option_buflist.look.display_conditions]] *buflist.look.display_conditions*
-** opis: pass:none[warunki do wyświetlenia buforu (uwaga: zawartość jest przetwarzana, zobacz /help buflist); na przykład w celu ukrycia buforów serwerów, kiedy są połączone z głównym buforem: "${buffer.hidden}==0 && ((${type}!=server && ${buffer.full_name}!=core.weechat) || ${buffer.active}==1)"]
+* [[option_fset.look.condition_catch_set]] *fset.look.condition_catch_set*
+** opis: pass:none[warunek do zlapania polecenia /set i wyświetlenia jego wyniku w buforze fset; następujące zmienne mogą zostać użyte: ${name} (nazwa opcji podana w komendzie /set), ${count} (ilość opcji znalezionych dla argumentu funkcji /set); pusty ciąg wyłącza przechwytywanie; wartość "1" oznacza przechwytywanie wszytkich użyć komendy /set przez bufor fset]
** typ: ciąg
** wartości: dowolny ciąg
-** domyślna wartość: `+"${buffer.hidden}==0"+`
-
-* [[option_buflist.look.enabled]] *buflist.look.enabled*
-** opis: pass:none[włącza listę buforów; zaleca się użycie tej opcji zamiast ukrywania paska, usuwa także wewnętrzne hooki, które nie są potrzebne kiedy pasek jest ukryty; możesz użyć komendy "/buflist toggle" lub domyślnego skrótu klawiszowego alt+shift+b]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+on+`
-
-* [[option_buflist.look.mouse_jump_visited_buffer]] *buflist.look.mouse_jump_visited_buffer*
-** opis: pass:none[jeśli włączone, kliknięcie lewym/prawym przyciskiem na linii z obecnym buforem przeskakuje do poprzedniego/następnego odwiedzonego buforu]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+off+`
-
-* [[option_buflist.look.mouse_move_buffer]] *buflist.look.mouse_move_buffer*
-** opis: pass:none[jeśli włączone, gesty myszy (przeciągnij i upuść) przesuwają bufory na liście]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+on+`
-
-* [[option_buflist.look.mouse_wheel]] *buflist.look.mouse_wheel*
-** opis: pass:none[jeśli włączone, ruch rolką myszy w góre/dół przeskakuje do poprzedniego/następnego bufora na liście]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+on+`
-
-* [[option_buflist.look.nick_prefix]] *buflist.look.nick_prefix*
-** opis: pass:none[pobiera prefiks i kolor nicka na liście nicków, dzięki czemu ${nick_prefix} może byc użyte w formacie; może to być wolne w buforach z duża ilością nicków widocznych na licie nicków, opcja domyślnie wyłączona]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+off+`
+** domyślna wartość: `+"${count} >= 1"+`
-* [[option_buflist.look.nick_prefix_empty]] *buflist.look.nick_prefix_empty*
-** opis: pass:none[kiedy prefiks nicka jet włączony, wywietla spacje, kiedy nick nie ma prefiksu w buforze]
+* [[option_fset.look.export_help_default]] *fset.look.export_help_default*
+** opis: pass:none[domyślnie wypisz pomoc dla każdej eksportowanej opcji (może to zostać zmienione poprzez argumenty "-help" i "-nohelp" dla komendy /fset -export)]
** typ: bool
** wartości: on, off
** domyślna wartość: `+on+`
-* [[option_buflist.look.signals_refresh]] *buflist.look.signals_refresh*
-** opis: pass:none[oddzielona przecinkami lista dodatkowych podłączonych sygnałów i wyzwalających odświeżenie listy buforów; może to być przydatne jeśli ustawione są jakieś zmienne używane do formatowania wymagające odpowiedniego odświeżania]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+""+`
-
-* [[option_buflist.look.sort]] *buflist.look.sort*
-** opis: pass:none[oddzielona przecinkami lista pól do sortowania buforów; każde pole to zmienna hdata bufora ("var"), zmienna hdata serwera IRC ("irc_server.var") lub zmienna hdata kanału IRC ("irc_channel.var"); znak "-" użyty przed nazwą pola odwraca kolejność, znak "~" może zostać użyty do porównań niewrażliwych na wielkość liter; przykład: "-~short_name" dla sortowania odwrotnego, niewrażliwego na wielkość liter po skróconej nazwie bufora (uwaga: zawartość jest przetwarzana zanim zostanie podzielona na pola, "bar_item" to jedyna zmienna, jaka może zostać użyta w celu rozróżnienia buforów, na przykład "${bar_item.name}")]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+"number,-active"+`
-
-* [[option_buflist.look.use_items]] *buflist.look.use_items*
-** opis: pass:none[ilość elementów „buflist” na pasku, które mogą zostać użyte; nazwy tych elementów to: "buflist", "buflist2", "buflist3"; używanie więcej niż jednego elementu paska spowalnia wyświetlanie listy buforów]
+* [[option_fset.look.format_number]] *fset.look.format_number*
+** opis: pass:none[numer formatu użyty do wyświetlania opcji; jest dynamicznie zmieniany przy uzyciu skrótu ctrl-X w buforze fset]
** typ: liczba
-** wartości: 1 .. 3
+** wartości: 1 .. 2
** domyślna wartość: `+1+`
-// end::buflist_options[]
-// tag::fifo_options[]
-* [[option_fifo.file.enabled]] *fifo.file.enabled*
-** opis: pass:none[włącza strumień FIFO]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+on+`
-
-* [[option_fifo.file.path]] *fifo.file.path*
-** opis: pass:none[ścieżka do pliku FIFO; PID WeeChat może zostać w ścieżce za pomocą ${info:pid} (ścieżka jest przetwarzana, zobacz funkcje string_eval_path_home w opisie API wtyczek)]
+* [[option_fset.look.marked_string]] *fset.look.marked_string*
+** opis: pass:none[ciąg wyświetlany, kiedy opcja jest zaznaczona (w celu wykonania akcji na wielu opcjach)]
** typ: ciąg
** wartości: dowolny ciąg
-** domyślna wartość: `+"${weechat_runtime_dir}/weechat_fifo_${info:pid}"+`
-// end::fifo_options[]
-
-// tag::typing_options[]
-* [[option_typing.look.delay_purge_paused]] *typing.look.delay_purge_paused*
-** opis: pass:none[ilość sekund po ustawieniu statusu pauzy: jeśli osiągnięty, status pisania zostaje usunięty]
-** typ: liczba
-** wartości: 1 .. 2147483647
-** domyślna wartość: `+30+`
-
-* [[option_typing.look.delay_purge_typing]] *typing.look.delay_purge_typing*
-** opis: pass:none[ilość sekund po ustawieniu statusu o pisaniu: jeśli osiągnięte, status pisania zostaje usunięty]
-** typ: liczba
-** wartości: 1 .. 2147483647
-** domyślna wartość: `+6+`
+** domyślna wartość: `+"*"+`
-* [[option_typing.look.delay_set_paused]] *typing.look.delay_set_paused*
-** opis: pass:none[ilość sekund po napisaniu ostatniego znaku: jeśli osiągnięte, status pisania zmieni się na "paused" i kolejne sygnały nie będą wysyłane]
+* [[option_fset.look.scroll_horizontal]] *fset.look.scroll_horizontal*
+** opis: pass:none[przewinięcie w lewo/prawo w buforze fset (procent szerokości)]
** typ: liczba
-** wartości: 1 .. 2147483647
+** wartości: 1 .. 100
** domyślna wartość: `+10+`
-* [[option_typing.look.enabled_nicks]] *typing.look.enabled_nicks*
-** opis: pass:none[powiadomienia o pisaniu przez innych włączone (wyświetlaj informacje o tym że inne osoby piszą coś w obecnym buforze)]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+off+`
-
-* [[option_typing.look.enabled_self]] *typing.look.enabled_self*
-** opis: pass:none[wysylanie informacji o pisaniu włączone (wysyłaj tą informację do innych użytkowników)]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+off+`
-
-* [[option_typing.look.input_min_chars]] *typing.look.input_min_chars*
-** opis: pass:none[minimalna ilość znaków w wiadomości po której zostaną wysłane sygnały o pisaniu wiadomości]
-** typ: liczba
-** wartości: 1 .. 2147483647
-** domyślna wartość: `+4+`
-
-* [[option_typing.look.item_max_length]] *typing.look.item_max_length*
-** opis: pass:none[maksymalna ilość znaków wyświetlana w elemencie paska "typing" (0 = nie ograniczaj zawartości)]
-** typ: liczba
-** wartości: 0 .. 2147483647
-** domyślna wartość: `+0+`
-// end::typing_options[]
-
-// tag::xfer_options[]
-* [[option_xfer.color.status_aborted]] *xfer.color.status_aborted*
-** opis: pass:none[kolor statusu "aborted"]
-** typ: kolor
-** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+lightred+`
-
-* [[option_xfer.color.status_active]] *xfer.color.status_active*
-** opis: pass:none[kolor statusu "active"]
-** typ: kolor
-** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+lightblue+`
-
-* [[option_xfer.color.status_connecting]] *xfer.color.status_connecting*
-** opis: pass:none[kolor statusu "connecting"]
-** typ: kolor
-** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+yellow+`
-
-* [[option_xfer.color.status_done]] *xfer.color.status_done*
-** opis: pass:none[kolor statusu "done"]
-** typ: kolor
-** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+lightgreen+`
-
-* [[option_xfer.color.status_failed]] *xfer.color.status_failed*
-** opis: pass:none[kolor statusu "failed"]
-** typ: kolor
-** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+lightred+`
-
-* [[option_xfer.color.status_waiting]] *xfer.color.status_waiting*
-** opis: pass:none[kolor statusu "waiting"]
-** typ: kolor
-** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+lightcyan+`
-
-* [[option_xfer.color.text]] *xfer.color.text*
-** opis: pass:none[kolor tekstu w buforze xfer]
-** typ: kolor
-** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+default+`
-
-* [[option_xfer.color.text_bg]] *xfer.color.text_bg*
-** opis: pass:none[kolor tła w buforze xfer]
-** typ: kolor
-** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+default+`
-
-* [[option_xfer.color.text_selected]] *xfer.color.text_selected*
-** opis: pass:none[kolor tekstu zaznaczonej linii w buforze xfer]
-** typ: kolor
-** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+white+`
-
-* [[option_xfer.file.auto_accept_chats]] *xfer.file.auto_accept_chats*
-** opis: pass:none[automatycznie akceptuj prośby o rozmowę (ostrożnie!)]
+* [[option_fset.look.show_plugins_desc]] *fset.look.show_plugins_desc*
+** opis: pass:none[pokazuje opis opcji wtyczki (plugins.desc.*)]
** typ: bool
** wartości: on, off
** domyślna wartość: `+off+`
-* [[option_xfer.file.auto_accept_files]] *xfer.file.auto_accept_files*
-** opis: pass:none[automatycznie akceptuj pliki przychodzące (ostrożnie!)]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+off+`
+* [[option_fset.look.sort]] *fset.look.sort*
+** opis: pass:none[oddzielona przecinkami lista pól do sortowania opcji (listę pól można znaleźć w wyniku polecenia /help fset); znak "-" użyty przed nazwą pola odwraca kolejność , znak "~" może zostać użyty do porównania bez uwzględniania wielkości znaków; na przykład: "-~name" dla odwrócenia wyniku sortowania z porównaniem nazwy bez uwzględnienia wielkości znaków]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+"~name"+`
-* [[option_xfer.file.auto_accept_nicks]] *xfer.file.auto_accept_nicks*
-** opis: pass:none[oddzielona przecinkami lista nicków, od których przychodzące pliki i rozmowy są automatycznie akceptowane; format to "serwer.nick" (dla konkretnego serwera) lub "nick" (dla wszystkich serwerów; przykład "libera.FlashCode,andrew"]
+* [[option_fset.look.unmarked_string]] *fset.look.unmarked_string*
+** opis: pass:none[ciąg znaków wyświetlany dla niezaznaczonej opcji]
** typ: ciąg
** wartości: dowolny ciąg
-** domyślna wartość: `+""+`
+** domyślna wartość: `+" "+`
-* [[option_xfer.file.auto_check_crc32]] *xfer.file.auto_check_crc32*
-** opis: pass:none[automatycznie sprawdzaj sumę CRC32 dla pliku, jeśli znajduje się ona w jego nazwie (osiem znaków heksadecymalnych)]
+* [[option_fset.look.use_color_value]] *fset.look.use_color_value*
+** opis: pass:none[użyj koloru do wyświetlenia wartości dla opcji koloru]
** typ: bool
** wartości: on, off
** domyślna wartość: `+off+`
-* [[option_xfer.file.auto_rename]] *xfer.file.auto_rename*
-** opis: pass:none[zmień nazwę pliku przychodzącego jeśli juz istnieje (dodaj ".1", ".2", ...)]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+on+`
-
-* [[option_xfer.file.auto_resume]] *xfer.file.auto_resume*
-** opis: pass:none[automatycznie wznów przesył po utracie połączenia]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+on+`
-
-* [[option_xfer.file.convert_spaces]] *xfer.file.convert_spaces*
-** opis: pass:none[zamień spacje na podkreślenia podczas wysyłania i odbierania plików]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+on+`
-
-* [[option_xfer.file.download_path]] *xfer.file.download_path*
-** opis: pass:none[ścieżka do zapisania przychodzących plików (ścieżka jest przetwarzana, zobacz funkcje string_eval_path_home w opisie API wtyczek)]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+"${weechat_data_dir}/xfer"+`
-
-* [[option_xfer.file.download_temporary_suffix]] *xfer.file.download_temporary_suffix*
-** opis: pass:none[sufiks tymczasowego pliku użyty podczas pobierania pliku, zostanie usunięty po pomyślnym transferze; pusty ciąg oznacza, że nie zostanie użyty żaden przyrostek podczas transferu pliku]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+".part"+`
-
-* [[option_xfer.file.upload_path]] *xfer.file.upload_path*
-** opis: pass:none[ścieżka do wczytywania plików podczas wysyłania (ścieżka jest przetwarzana, zobacz funkcje string_eval_path_home zobacz w opisie API wtyczek)]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+"~"+`
-
-* [[option_xfer.file.use_nick_in_filename]] *xfer.file.use_nick_in_filename*
-** opis: pass:none[użyj nicku nadawcy jako przedrostka w nazwie odebranego pliku]
+* [[option_fset.look.use_keys]] *fset.look.use_keys*
+** opis: pass:none[użyj skrótu alt+X w buforze fset, aby wykonać akcję na opcji; jeśli wyłączone dozwolone jest tylko używanie linii poleceń]
** typ: bool
** wartości: on, off
** domyślna wartość: `+on+`
-* [[option_xfer.look.auto_open_buffer]] *xfer.look.auto_open_buffer*
-** opis: pass:none[automatycznie otwieraj bufor xfer, kiedy nowy xfer zostanie dodany do listy]
+* [[option_fset.look.use_mute]] *fset.look.use_mute*
+** opis: pass:none[użyj komendy /mute do ustawienia opcji]
** typ: bool
** wartości: on, off
-** domyślna wartość: `+on+`
-
-* [[option_xfer.look.progress_bar_size]] *xfer.look.progress_bar_size*
-** opis: pass:none[rozmiar paska postępu, w znakach (jeśli 0 pasek postępu zostanie wyłączony)]
-** typ: liczba
-** wartości: 0 .. 256
-** domyślna wartość: `+20+`
-
-* [[option_xfer.look.pv_tags]] *xfer.look.pv_tags*
-** opis: pass:none[oddzielona przecinkami lista tagów użytych w prywatnych wiadomościach na przykład: "notify_message", "notify_private" or "notify_highlight"]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+"notify_private"+`
-
-* [[option_xfer.network.blocksize]] *xfer.network.blocksize*
-** opis: pass:none[rozmiar bloku dla wysyłanych pakietów, w bajtach]
-** typ: liczba
-** wartości: 1024 .. 102400
-** domyślna wartość: `+65536+`
+** domyślna wartość: `+off+`
+// end::fset_options[]
-* [[option_xfer.network.fast_send]] *xfer.network.fast_send*
-** opis: pass:none[nie czeka na potwierdzenie podczas wysyłania pliku]
+// tag::guile_options[]
+* [[option_guile.look.check_license]] *guile.look.check_license*
+** opis: pass:none[sprawdza licencję skryptów podczas ich ładowania: jeśli licencja jest inna niż licencja wtyczki wyświetlane jest ostrzeżenie]
** typ: bool
** wartości: on, off
-** domyślna wartość: `+on+`
-
-* [[option_xfer.network.own_ip]] *xfer.network.own_ip*
-** opis: pass:none[Adres IP lub DNS użyty do wysłania pliku/rozmowy (jeśli pusty zostanie użyty adres IP lokalnego interfejsu)]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+""+`
-
-* [[option_xfer.network.port_range]] *xfer.network.port_range*
-** opis: pass:none[ogranicza wychodzące pliki/rozmowy do używania tylko portów w podanym zakresie (przydatne dla NAT) (składnia: pojedynczy port, np. 5000 lub zakres portów, np. 5000-5015, pusta wartość oznacza dowolny port, zaleca się stosowanie portów powyżej 1024, ponieważ niższe porty mogą być użyte tylko przez roota)]
-** typ: ciąg
-** wartości: dowolny ciąg
-** domyślna wartość: `+""+`
+** domyślna wartość: `+off+`
-* [[option_xfer.network.send_ack]] *xfer.network.send_ack*
-** opis: pass:none[wysyła ack podczas odbierania plików; jeśli wyłączone przesyłanie może się zawiesić jeśli nadawca czeka na ack (na przykład WeeChat wysyłający plik z opcją xfer.network.fast_send ustawioną na off); z drugiej strony, wyłączenie tej opcji może zapobiec zawieszeniu jeśli ack nie zostaną wysłane od razu do nadawcy]
+* [[option_guile.look.eval_keep_context]] *guile.look.eval_keep_context*
+** opis: pass:none[przechowuj kontekst pomiędzy dwoma odwołaniami do wykonania tego samego kodu źródłowego (opcja "eval" komendy script lub info "%s_eval"); ukryty sktypt jest używany do wykonania kodu skryptu; jeśli ta opcja jest wyłączona, ukryty skrypt jest wyładowywany po każdym wykonaniu: zajmuje to mniej pamięci, ale jest wolniejsze]
** typ: bool
** wartości: on, off
** domyślna wartość: `+on+`
-
-* [[option_xfer.network.speed_limit_recv]] *xfer.network.speed_limit_recv*
-** opis: pass:none[limit prędkości odbierania plików, w kilobajtach na sekundę (0 oznacza brak limitu)]
-** typ: liczba
-** wartości: 0 .. 2147483647
-** domyślna wartość: `+0+`
-
-* [[option_xfer.network.speed_limit_send]] *xfer.network.speed_limit_send*
-** opis: pass:none[limit prędkości wysyłania plików, w kilobajtach na sekundę (0 oznacza brak limitu)]
-** typ: liczba
-** wartości: 0 .. 2147483647
-** domyślna wartość: `+0+`
-
-* [[option_xfer.network.timeout]] *xfer.network.timeout*
-** opis: pass:none[czas oczekiwania na żądanie xfer (w sekundach)]
-** typ: liczba
-** wartości: 5 .. 2147483647
-** domyślna wartość: `+300+`
-// end::xfer_options[]
+// end::guile_options[]
// tag::irc_options[]
* [[option_irc.color.input_nick]] *irc.color.input_nick*
@@ -2985,6 +1601,192 @@
** domyślna wartość: `+""+`
// end::irc_options[]
+// tag::javascript_options[]
+* [[option_javascript.look.check_license]] *javascript.look.check_license*
+** opis: pass:none[sprawdza licencję skryptów podczas ich ładowania: jeśli licencja jest inna niż licencja wtyczki wyświetlane jest ostrzeżenie]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+off+`
+
+* [[option_javascript.look.eval_keep_context]] *javascript.look.eval_keep_context*
+** opis: pass:none[przechowuj kontekst pomiędzy dwoma odwołaniami do wykonania tego samego kodu źródłowego (opcja "eval" komendy script lub info "%s_eval"); ukryty sktypt jest używany do wykonania kodu skryptu; jeśli ta opcja jest wyłączona, ukryty skrypt jest wyładowywany po każdym wykonaniu: zajmuje to mniej pamięci, ale jest wolniejsze]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+on+`
+// end::javascript_options[]
+
+// tag::logger_options[]
+* [[option_logger.color.backlog_end]] *logger.color.backlog_end*
+** opis: pass:none[kolor linii kończącej backloga]
+** typ: kolor
+** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
+** domyślna wartość: `+default+`
+
+* [[option_logger.color.backlog_line]] *logger.color.backlog_line*
+** opis: pass:none[kolor linii backloga, używany tylko jeśli opcja logger.file.color_lines jest wyłączona]
+** typ: kolor
+** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
+** domyślna wartość: `+default+`
+
+* [[option_logger.file.auto_log]] *logger.file.auto_log*
+** opis: pass:none[automatycznie zapisuj zawartość buforów do plików (chyba, że bufor ma wyłączone logowanie); jeśli wyłączone logowanie jest wyłączone we wszystkich buforach]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+on+`
+
+* [[option_logger.file.color_lines]] *logger.file.color_lines*
+** opis: pass:none[użyj kodów kolorów ANSI w liniach zapisywanych do plików z logami oraz wyświetlaj linie backloga z tymi kolorami]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+off+`
+
+* [[option_logger.file.flush_delay]] *logger.file.flush_delay*
+** opis: pass:none[ilość sekund pomiędzy zapisywaniem plików z logami (0 = zapisuj pliki natychmiast po pojawieniu sie każdej nowej linii)]
+** typ: liczba
+** wartości: 0 .. 3600
+** domyślna wartość: `+120+`
+
+* [[option_logger.file.fsync]] *logger.file.fsync*
+** opis: pass:none[użyj fsync do synchronizacji plików z logami z zewnętrznym nośnikiem (zobacz man fsync); jest to wolniejsze ale powinno zapobiec utracie danych w przypadku zaniku napięcia podczas zapisu plików z logami]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+off+`
+
+* [[option_logger.file.info_lines]] *logger.file.info_lines*
+** opis: pass:none[zapisuje informacje w pliku z logami o rozpoczęciu i zakończeniu logowania buforu]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+off+`
+
+* [[option_logger.file.mask]] *logger.file.mask*
+** opis: pass:none[domyślna maska nazw plików z logami (format to "ścieżka/do/pliku" lub "plik", bez pierwszego "/" ponieważ opcja "path" jest użyta do stworzenia kompletnej ścieżki do pliku); lokalne zmienne buforów dozwolone; (powinno się używać tylko zmiennych zdefiniowanych dla wszytkich buforów, na przykład nie należy używać $server ani $channel); określenia dla daty są dozwolone (zobacz man strftime)]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+"$plugin.$name.weechatlog"+`
+
+* [[option_logger.file.name_lower_case]] *logger.file.name_lower_case*
+** opis: pass:none[używaj tylko małych liter dla nazw plików z logami]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+on+`
+
+* [[option_logger.file.nick_prefix]] *logger.file.nick_prefix*
+** opis: pass:none[tekst wyświetlany przed nickiem w przedrostku wiadomości, przykład: "<"]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+""+`
+
+* [[option_logger.file.nick_suffix]] *logger.file.nick_suffix*
+** opis: pass:none[tekst wyświetlany za nickiem w przedrostku wiadomości, przykład: ">"]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+""+`
+
+* [[option_logger.file.path]] *logger.file.path*
+** opis: pass:none[ścieżka do plików z logami WeeChat; specyfikatory daty są dozwolone (zobacz man strftime) (ścieżka jest przetwarzana, zobacz funkcje string_eval_path_home w opisie API wtyczek)]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+"${weechat_data_dir}/logs"+`
+
+* [[option_logger.file.replacement_char]] *logger.file.replacement_char*
+** opis: pass:none[znak zastępczy dla znaków specjalnych w plikach stworzonych przy użyciu maski (jak separator katalogów)]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+"_"+`
+
+* [[option_logger.file.rotation_compression_level]] *logger.file.rotation_compression_level*
+** opis: pass:none[poziom kompresji dla rotowanych plików logów (z rozszerzeniem ".1", ".2", etc.), jeśli opcja logger.file.rotation_compression_type jest włączona: 1 = niska kompresja / szybkie ... 100 = najlepsza kompresja / wolne; wartość procentowa przeliczana na 1-9 dla gzip i 1-19 dla zstd; zalecana jest domyślna wartość, oferuje ona dobry kompromis pomiędzy kompresją i szybkością]
+** typ: liczba
+** wartości: 1 .. 100
+** domyślna wartość: `+20+`
+
+* [[option_logger.file.rotation_compression_type]] *logger.file.rotation_compression_type*
+** opis: pass:none[typ kompresji dla rotowanych plików logów; jeśli ustawiona na "none" rotowane pliki logów nie będą kompresowane; UWAGA: jeśli rotacja była włączona z innym typem kompresji (lub bez), musisz najpierw wyładować wtyczkę logger, skompresować pliki na nowo (lub rozpakować), następnie zmienić opcję w pliku logger.conf, następnie załadować wtyczkę logger]
+** typ: liczba
+** wartości: none, gzip, zstd
+** domyślna wartość: `+none+`
+
+* [[option_logger.file.rotation_size_max]] *logger.file.rotation_size_max*
+** opis: pass:none[kiedy plik osiągnie podany rozmiar, zostanie on zrotowany: nazwy istniejących plików zostaną zmienione (.1 stanie się .2, .2 stanie się .3, etc.) i obecny plik otrzyma rozszerzenie .1; liczba całkowita z sufiksem jest dozwolona: b = bajty (domyślnie jeśli nie podamy jednostki), k = kilobajty, m = megabajty, g = gigabajty, t = terabajty; przykład "2g" spowoduje rotację jeśli rozmiar pliku przekroczy 2 000 000 000 bajtów; jeśli ustawione na "0" pliki nie będą rotowane (nieograniczony rozmiar); UWAGA: przed zmianą tej opcji powinieneś najpierw ustawić typ kompresji za pomocą opcji logger.file.rotation_compression_type]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+"0"+`
+
+* [[option_logger.file.time_format]] *logger.file.time_format*
+** opis: pass:none[format czasu użyty w plikach z logami (zobacz man strftime dla specyfikatorów daty/czasu)]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+"%Y-%m-%d %H:%M:%S"+`
+
+* [[option_logger.look.backlog]] *logger.look.backlog*
+** opis: pass:none[maksymalna ilość linii wyświetlana z logu podczas tworzenia nowego bufora (0 = bez historii)]
+** typ: liczba
+** wartości: 0 .. 2147483647
+** domyślna wartość: `+20+`
+
+* [[option_logger.look.backlog_conditions]] *logger.look.backlog_conditions*
+** opis: pass:none[warunki do wyświetlania backlogu (uwaga: zawartość jest przetwarzana, zobacz /help eval); pusta wartość wyświetla backlog we wszystkich buforach; na przykład żeby wyświetlić backlog tylko w prywatnych buforach: "${type} == private"]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+""+`
+// end::logger_options[]
+
+// tag::lua_options[]
+* [[option_lua.look.check_license]] *lua.look.check_license*
+** opis: pass:none[sprawdza licencję skryptów podczas ich ładowania: jeśli licencja jest inna niż licencja wtyczki wyświetlane jest ostrzeżenie]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+off+`
+
+* [[option_lua.look.eval_keep_context]] *lua.look.eval_keep_context*
+** opis: pass:none[przechowuj kontekst pomiędzy dwoma odwołaniami do wykonania tego samego kodu źródłowego (opcja "eval" komendy script lub info "%s_eval"); ukryty sktypt jest używany do wykonania kodu skryptu; jeśli ta opcja jest wyłączona, ukryty skrypt jest wyładowywany po każdym wykonaniu: zajmuje to mniej pamięci, ale jest wolniejsze]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+on+`
+// end::lua_options[]
+
+// tag::perl_options[]
+* [[option_perl.look.check_license]] *perl.look.check_license*
+** opis: pass:none[sprawdza licencję skryptów podczas ich ładowania: jeśli licencja jest inna niż licencja wtyczki wyświetlane jest ostrzeżenie]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+off+`
+
+* [[option_perl.look.eval_keep_context]] *perl.look.eval_keep_context*
+** opis: pass:none[przechowuj kontekst pomiędzy dwoma odwołaniami do wykonania tego samego kodu źródłowego (opcja "eval" komendy script lub info "%s_eval"); ukryty sktypt jest używany do wykonania kodu skryptu; jeśli ta opcja jest wyłączona, ukryty skrypt jest wyładowywany po każdym wykonaniu: zajmuje to mniej pamięci, ale jest wolniejsze]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+on+`
+// end::perl_options[]
+
+// tag::php_options[]
+* [[option_php.look.check_license]] *php.look.check_license*
+** opis: pass:none[sprawdza licencję skryptów podczas ich ładowania: jeśli licencja jest inna niż licencja wtyczki wyświetlane jest ostrzeżenie]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+off+`
+
+* [[option_php.look.eval_keep_context]] *php.look.eval_keep_context*
+** opis: pass:none[przechowuj kontekst pomiędzy dwoma odwołaniami do wykonania tego samego kodu źródłowego (opcja "eval" komendy script lub info "%s_eval"); ukryty sktypt jest używany do wykonania kodu skryptu; jeśli ta opcja jest wyłączona, ukryty skrypt jest wyładowywany po każdym wykonaniu: zajmuje to mniej pamięci, ale jest wolniejsze]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+on+`
+// end::php_options[]
+
+// tag::python_options[]
+* [[option_python.look.check_license]] *python.look.check_license*
+** opis: pass:none[sprawdza licencję skryptów podczas ich ładowania: jeśli licencja jest inna niż licencja wtyczki wyświetlane jest ostrzeżenie]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+off+`
+
+* [[option_python.look.eval_keep_context]] *python.look.eval_keep_context*
+** opis: pass:none[przechowuj kontekst pomiędzy dwoma odwołaniami do wykonania tego samego kodu źródłowego (opcja "eval" komendy script lub info "%s_eval"); ukryty sktypt jest używany do wykonania kodu skryptu; jeśli ta opcja jest wyłączona, ukryty skrypt jest wyładowywany po każdym wykonaniu: zajmuje to mniej pamięci, ale jest wolniejsze]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+on+`
+// end::python_options[]
+
// tag::relay_options[]
* [[option_relay.color.client]] *relay.color.client*
** opis: pass:none[kolor tekstu dla opisu klienta]
@@ -3197,90 +1999,6 @@
** domyślna wartość: `+""+`
// end::relay_options[]
-// tag::guile_options[]
-* [[option_guile.look.check_license]] *guile.look.check_license*
-** opis: pass:none[sprawdza licencję skryptów podczas ich ładowania: jeśli licencja jest inna niż licencja wtyczki wyświetlane jest ostrzeżenie]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+off+`
-
-* [[option_guile.look.eval_keep_context]] *guile.look.eval_keep_context*
-** opis: pass:none[przechowuj kontekst pomiędzy dwoma odwołaniami do wykonania tego samego kodu źródłowego (opcja "eval" komendy script lub info "%s_eval"); ukryty sktypt jest używany do wykonania kodu skryptu; jeśli ta opcja jest wyłączona, ukryty skrypt jest wyładowywany po każdym wykonaniu: zajmuje to mniej pamięci, ale jest wolniejsze]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+on+`
-// end::guile_options[]
-
-// tag::javascript_options[]
-* [[option_javascript.look.check_license]] *javascript.look.check_license*
-** opis: pass:none[sprawdza licencję skryptów podczas ich ładowania: jeśli licencja jest inna niż licencja wtyczki wyświetlane jest ostrzeżenie]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+off+`
-
-* [[option_javascript.look.eval_keep_context]] *javascript.look.eval_keep_context*
-** opis: pass:none[przechowuj kontekst pomiędzy dwoma odwołaniami do wykonania tego samego kodu źródłowego (opcja "eval" komendy script lub info "%s_eval"); ukryty sktypt jest używany do wykonania kodu skryptu; jeśli ta opcja jest wyłączona, ukryty skrypt jest wyładowywany po każdym wykonaniu: zajmuje to mniej pamięci, ale jest wolniejsze]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+on+`
-// end::javascript_options[]
-
-// tag::lua_options[]
-* [[option_lua.look.check_license]] *lua.look.check_license*
-** opis: pass:none[sprawdza licencję skryptów podczas ich ładowania: jeśli licencja jest inna niż licencja wtyczki wyświetlane jest ostrzeżenie]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+off+`
-
-* [[option_lua.look.eval_keep_context]] *lua.look.eval_keep_context*
-** opis: pass:none[przechowuj kontekst pomiędzy dwoma odwołaniami do wykonania tego samego kodu źródłowego (opcja "eval" komendy script lub info "%s_eval"); ukryty sktypt jest używany do wykonania kodu skryptu; jeśli ta opcja jest wyłączona, ukryty skrypt jest wyładowywany po każdym wykonaniu: zajmuje to mniej pamięci, ale jest wolniejsze]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+on+`
-// end::lua_options[]
-
-// tag::perl_options[]
-* [[option_perl.look.check_license]] *perl.look.check_license*
-** opis: pass:none[sprawdza licencję skryptów podczas ich ładowania: jeśli licencja jest inna niż licencja wtyczki wyświetlane jest ostrzeżenie]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+off+`
-
-* [[option_perl.look.eval_keep_context]] *perl.look.eval_keep_context*
-** opis: pass:none[przechowuj kontekst pomiędzy dwoma odwołaniami do wykonania tego samego kodu źródłowego (opcja "eval" komendy script lub info "%s_eval"); ukryty sktypt jest używany do wykonania kodu skryptu; jeśli ta opcja jest wyłączona, ukryty skrypt jest wyładowywany po każdym wykonaniu: zajmuje to mniej pamięci, ale jest wolniejsze]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+on+`
-// end::perl_options[]
-
-// tag::php_options[]
-* [[option_php.look.check_license]] *php.look.check_license*
-** opis: pass:none[sprawdza licencję skryptów podczas ich ładowania: jeśli licencja jest inna niż licencja wtyczki wyświetlane jest ostrzeżenie]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+off+`
-
-* [[option_php.look.eval_keep_context]] *php.look.eval_keep_context*
-** opis: pass:none[przechowuj kontekst pomiędzy dwoma odwołaniami do wykonania tego samego kodu źródłowego (opcja "eval" komendy script lub info "%s_eval"); ukryty sktypt jest używany do wykonania kodu skryptu; jeśli ta opcja jest wyłączona, ukryty skrypt jest wyładowywany po każdym wykonaniu: zajmuje to mniej pamięci, ale jest wolniejsze]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+on+`
-// end::php_options[]
-
-// tag::python_options[]
-* [[option_python.look.check_license]] *python.look.check_license*
-** opis: pass:none[sprawdza licencję skryptów podczas ich ładowania: jeśli licencja jest inna niż licencja wtyczki wyświetlane jest ostrzeżenie]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+off+`
-
-* [[option_python.look.eval_keep_context]] *python.look.eval_keep_context*
-** opis: pass:none[przechowuj kontekst pomiędzy dwoma odwołaniami do wykonania tego samego kodu źródłowego (opcja "eval" komendy script lub info "%s_eval"); ukryty sktypt jest używany do wykonania kodu skryptu; jeśli ta opcja jest wyłączona, ukryty skrypt jest wyładowywany po każdym wykonaniu: zajmuje to mniej pamięci, ale jest wolniejsze]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+on+`
-// end::python_options[]
-
// tag::ruby_options[]
* [[option_ruby.look.check_license]] *ruby.look.check_license*
** opis: pass:none[sprawdza licencję skryptów podczas ich ładowania: jeśli licencja jest inna niż licencja wtyczki wyświetlane jest ostrzeżenie]
@@ -3295,20 +2013,6 @@
** domyślna wartość: `+on+`
// end::ruby_options[]
-// tag::tcl_options[]
-* [[option_tcl.look.check_license]] *tcl.look.check_license*
-** opis: pass:none[sprawdza licencję skryptów podczas ich ładowania: jeśli licencja jest inna niż licencja wtyczki wyświetlane jest ostrzeżenie]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+off+`
-
-* [[option_tcl.look.eval_keep_context]] *tcl.look.eval_keep_context*
-** opis: pass:none[przechowuj kontekst pomiędzy dwoma odwołaniami do wykonania tego samego kodu źródłowego (opcja "eval" komendy script lub info "%s_eval"); ukryty sktypt jest używany do wykonania kodu skryptu; jeśli ta opcja jest wyłączona, ukryty skrypt jest wyładowywany po każdym wykonaniu: zajmuje to mniej pamięci, ale jest wolniejsze]
-** typ: bool
-** wartości: on, off
-** domyślna wartość: `+on+`
-// end::tcl_options[]
-
// tag::script_options[]
* [[option_script.color.status_autoloaded]] *script.color.status_autoloaded*
** opis: pass:none[kolor dla statusu "automatycznie ładowany" ("a")]
@@ -3557,484 +2261,1780 @@
** domyślna wartość: `+"https://weechat.org/files/plugins.xml.gz"+`
// end::script_options[]
-// tag::fset_options[]
-* [[option_fset.color.default_value]] *fset.color.default_value*
-** opis: pass:none[kolor dla wartości domyślnej]
-** typ: kolor
-** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+default+`
+// tag::sec_options[]
+* [[option_sec.crypt.cipher]] *sec.crypt.cipher*
+** opis: pass:none[szyfr używany do szyfrowania danych (numer za nazwą algorytmu to długość klucza w bitach)]
+** typ: liczba
+** wartości: aes128, aes192, aes256
+** domyślna wartość: `+aes256+`
-* [[option_fset.color.default_value_selected]] *fset.color.default_value_selected*
-** opis: pass:none[kolor dla wartości domyślnej w zaznaczonej linii]
+* [[option_sec.crypt.hash_algo]] *sec.crypt.hash_algo*
+** opis: pass:none[algorytm haszujący użyty do sprawdzenia rozszyfrowanych danych]
+** typ: liczba
+** wartości: sha224, sha256, sha384, sha512
+** domyślna wartość: `+sha256+`
+
+* [[option_sec.crypt.passphrase_command]] *sec.crypt.passphrase_command*
+** opis: pass:none[czyta hasło z wyjścia komendy systemowej (tylko pierwsza linia jest używana i nie może zawierać żadnych dodatkowych znaków); ta opcja jest używana tylko podczas odczytu pliku sec.conf i jeśli zmienna środowiskowa "WEECHAT_PASSPHRASE" nie jest ustawiona (zmienna środowiskowa ma wyższy priorytet); przykład z magazynem haseł: "/usr/bin/pass show weechat/passphrase"]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+""+`
+
+* [[option_sec.crypt.salt]] *sec.crypt.salt*
+** opis: pass:none[użyj "solenia" podczas generowania klucza używanego w szyfrowaniu (zalecane dla maksimum bezpieczeństwa); jeśli włączone zawartość zaszyfrowanych danych w pliku sec.conf będzie się zmieniać z każdym zapisem pliku; jeśli plik sec.conf zostanie umieszczony w systemie kontroli wersji, można wyłączyć tą opcję (zawartość pliku będzie zawsze taka sama)]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+on+`
+// end::sec_options[]
+
+// tag::spell_options[]
+* [[option_spell.check.commands]] *spell.check.commands*
+** opis: pass:none[oddzielona przecinkiem lista komend, dla których sprawdzana jest poprawna pisownia (sprawdzanie pisowni jest wyłączone dla pozostałych komend)]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+"away,command,cycle,kick,kickban,me,msg,notice,part,query,quit,topic"+`
+
+* [[option_spell.check.default_dict]] *spell.check.default_dict*
+** opis: pass:none[domyślny słownik (lub oddzielona przecinkami lista słowników) używany, kiedy bufor nie ma zdefiniowanego słownika (zostaw puste, aby wyłączyć sprawdzanie pisowni w buforach, w których nie zostało to włączone)]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+""+`
+
+* [[option_spell.check.during_search]] *spell.check.during_search*
+** opis: pass:none[sprawdzaj słowa podczas wyszukiwania tekstu w buforze]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+off+`
+
+* [[option_spell.check.enabled]] *spell.check.enabled*
+** opis: pass:none[włącza sprawdzanie pisowni dla linii komend]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+off+`
+
+* [[option_spell.check.real_time]] *spell.check.real_time*
+** opis: pass:none[sprawdzanie pisowni w czasie rzeczywistym (wolniejsze, wyłączone domyślnie: słowa są sprawdzane tylko jeśli za nimi znajduje się separator)]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+off+`
+
+* [[option_spell.check.suggestions]] *spell.check.suggestions*
+** opis: pass:none[numer podpowiedzi wyświetlanych w elemencie paska "spell_suggest" dla każdego słownika ustawionego w buforze (-1 = wyłącza podpowiedzi, 0 = wyświetla wszystkie możliwe podpowiedzi dla każdego języka)]
+** typ: liczba
+** wartości: -1 .. 2147483647
+** domyślna wartość: `+-1+`
+
+* [[option_spell.check.word_min_length]] *spell.check.word_min_length*
+** opis: pass:none[minimalna długość słowa do sprawdzenia ( 0 - sprawdzaj wszystkie słowa)]
+** typ: liczba
+** wartości: 0 .. 2147483647
+** domyślna wartość: `+2+`
+
+* [[option_spell.color.misspelled]] *spell.color.misspelled*
+** opis: pass:none[kolor używany dla błędnie zapisanych słów (pasek wprowadzania)]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+white+`
+** domyślna wartość: `+lightred+`
-* [[option_fset.color.description]] *fset.color.description*
-** opis: pass:none[kolor dla opisu]
+* [[option_spell.color.suggestion]] *spell.color.suggestion*
+** opis: pass:none[kolor tekstu sugestii dla błędnie wprowadzonego słowa w elemencie paska "spell_suggest"]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
** domyślna wartość: `+default+`
-* [[option_fset.color.description_selected]] *fset.color.description_selected*
-** opis: pass:none[kolor dla opisu w zaznaczonej linii]
+* [[option_spell.color.suggestion_delimiter_dict]] *spell.color.suggestion_delimiter_dict*
+** opis: pass:none[kolor tekstu separatorów wyświetlanych pomiędzy dwoma słownikami w elemenci paska "spell_suggest"]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+white+`
+** domyślna wartość: `+cyan+`
-* [[option_fset.color.file]] *fset.color.file*
-** opis: pass:none[kolor dla pliku]
+* [[option_spell.color.suggestion_delimiter_word]] *spell.color.suggestion_delimiter_word*
+** opis: pass:none[kolor tekstu dla separatorów wyświetlanych pomiędzy dwoma słowami w elemencie paska "spell_suggest"]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+default+`
+** domyślna wartość: `+cyan+`
-* [[option_fset.color.file_changed]] *fset.color.file_changed*
-** opis: pass:none[kolor dla pliku, jeśli wartość została zmieniona]
+* [[option_spell.look.suggestion_delimiter_dict]] *spell.look.suggestion_delimiter_dict*
+** opis: pass:none[separator wyświetlany pomiędzy dwoma słownikami w elemencie paska "spell_suggest"]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+" / "+`
+
+* [[option_spell.look.suggestion_delimiter_word]] *spell.look.suggestion_delimiter_word*
+** opis: pass:none[separator wyświetlany pomiędzy dwoma słowami w elemencie paska "spell_suggest"]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+","+`
+// end::spell_options[]
+
+// tag::tcl_options[]
+* [[option_tcl.look.check_license]] *tcl.look.check_license*
+** opis: pass:none[sprawdza licencję skryptów podczas ich ładowania: jeśli licencja jest inna niż licencja wtyczki wyświetlane jest ostrzeżenie]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+off+`
+
+* [[option_tcl.look.eval_keep_context]] *tcl.look.eval_keep_context*
+** opis: pass:none[przechowuj kontekst pomiędzy dwoma odwołaniami do wykonania tego samego kodu źródłowego (opcja "eval" komendy script lub info "%s_eval"); ukryty sktypt jest używany do wykonania kodu skryptu; jeśli ta opcja jest wyłączona, ukryty skrypt jest wyładowywany po każdym wykonaniu: zajmuje to mniej pamięci, ale jest wolniejsze]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+on+`
+// end::tcl_options[]
+
+// tag::trigger_options[]
+* [[option_trigger.color.flag_command]] *trigger.color.flag_command*
+** opis: pass:none[kolor tekstu dla flag komend (w /trigger list)]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+brown+`
+** domyślna wartość: `+lightgreen+`
-* [[option_fset.color.file_changed_selected]] *fset.color.file_changed_selected*
-** opis: pass:none[kolor dla pliku w zaznaczonej linii, jeśli wartość została zmieniona]
+* [[option_trigger.color.flag_conditions]] *trigger.color.flag_conditions*
+** opis: pass:none[kolor tekstu dla flag warunków (w /trigger list)]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
** domyślna wartość: `+yellow+`
-* [[option_fset.color.file_selected]] *fset.color.file_selected*
-** opis: pass:none[kolor dla pliku w zaznaczonej linii]
+* [[option_trigger.color.flag_post_action]] *trigger.color.flag_post_action*
+** opis: pass:none[kolor tekstu dla flagi końca akcji (w /trigger list)]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+white+`
+** domyślna wartość: `+lightblue+`
-* [[option_fset.color.help_default_value]] *fset.color.help_default_value*
-** opis: pass:none[kolor dla domyślnej wartości w pasku pomocy]
+* [[option_trigger.color.flag_regex]] *trigger.color.flag_regex*
+** opis: pass:none[kolor tekstu dla flag wyrażeń regularnych (w /trigger list)]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+white+`
+** domyślna wartość: `+lightcyan+`
-* [[option_fset.color.help_description]] *fset.color.help_description*
-** opis: pass:none[kolor opisu w pasku pomocy]
+* [[option_trigger.color.flag_return_code]] *trigger.color.flag_return_code*
+** opis: pass:none[kolor tekstu dla flagi zwracanego kodu (w /trigger list)]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+default+`
+** domyślna wartość: `+lightmagenta+`
-* [[option_fset.color.help_name]] *fset.color.help_name*
-** opis: pass:none[kolor nazwy w pasku pomocy]
+* [[option_trigger.color.identifier]] *trigger.color.identifier*
+** opis: pass:none[kolor tekstu dla identyfikatorów kontekstu triggera w buforze monitorującym]
+** typ: kolor
+** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
+** domyślna wartość: `+cyan+`
+
+* [[option_trigger.color.regex]] *trigger.color.regex*
+** opis: pass:none[kolor tekstu dla wyrażeń regularnych]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
** domyślna wartość: `+white+`
-* [[option_fset.color.help_quotes]] *fset.color.help_quotes*
-** opis: pass:none[kolor cudzysłowów do okoła wartości słownej]
+* [[option_trigger.color.replace]] *trigger.color.replace*
+** opis: pass:none[kolor tekstu dla tekstu zastępczego (dla wyrażeń regularnych)]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+darkgray+`
+** domyślna wartość: `+cyan+`
-* [[option_fset.color.help_values]] *fset.color.help_values*
-** opis: pass:none[kolor dozwolonych wartości]
+* [[option_trigger.color.trigger]] *trigger.color.trigger*
+** opis: pass:none[kolor tekstu dla nazwy triggera]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+default+`
+** domyślna wartość: `+green+`
-* [[option_fset.color.index]] *fset.color.index*
-** opis: pass:none[kolor indeksu opcji]
+* [[option_trigger.color.trigger_disabled]] *trigger.color.trigger_disabled*
+** opis: pass:none[kolor tekstu dla nazwy wyłączonego triggera]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+cyan+`
+** domyślna wartość: `+red+`
-* [[option_fset.color.index_selected]] *fset.color.index_selected*
-** opis: pass:none[kolor indeksu opcji dla opcji w zaznaczonej linii]
+* [[option_trigger.look.enabled]] *trigger.look.enabled*
+** opis: pass:none[włącza wsparcie dla triggerów]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+on+`
+
+* [[option_trigger.look.monitor_strip_colors]] *trigger.look.monitor_strip_colors*
+** opis: pass:none[usuń kolory w wartościach tablic haszy wyświetlanych w buforze monitorującym]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+off+`
+// end::trigger_options[]
+
+// tag::typing_options[]
+* [[option_typing.look.delay_purge_paused]] *typing.look.delay_purge_paused*
+** opis: pass:none[ilość sekund po ustawieniu statusu pauzy: jeśli osiągnięty, status pisania zostaje usunięty]
+** typ: liczba
+** wartości: 1 .. 2147483647
+** domyślna wartość: `+30+`
+
+* [[option_typing.look.delay_purge_typing]] *typing.look.delay_purge_typing*
+** opis: pass:none[ilość sekund po ustawieniu statusu o pisaniu: jeśli osiągnięte, status pisania zostaje usunięty]
+** typ: liczba
+** wartości: 1 .. 2147483647
+** domyślna wartość: `+6+`
+
+* [[option_typing.look.delay_set_paused]] *typing.look.delay_set_paused*
+** opis: pass:none[ilość sekund po napisaniu ostatniego znaku: jeśli osiągnięte, status pisania zmieni się na "paused" i kolejne sygnały nie będą wysyłane]
+** typ: liczba
+** wartości: 1 .. 2147483647
+** domyślna wartość: `+10+`
+
+* [[option_typing.look.enabled_nicks]] *typing.look.enabled_nicks*
+** opis: pass:none[powiadomienia o pisaniu przez innych włączone (wyświetlaj informacje o tym że inne osoby piszą coś w obecnym buforze)]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+off+`
+
+* [[option_typing.look.enabled_self]] *typing.look.enabled_self*
+** opis: pass:none[wysylanie informacji o pisaniu włączone (wysyłaj tą informację do innych użytkowników)]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+off+`
+
+* [[option_typing.look.input_min_chars]] *typing.look.input_min_chars*
+** opis: pass:none[minimalna ilość znaków w wiadomości po której zostaną wysłane sygnały o pisaniu wiadomości]
+** typ: liczba
+** wartości: 1 .. 2147483647
+** domyślna wartość: `+4+`
+
+* [[option_typing.look.item_max_length]] *typing.look.item_max_length*
+** opis: pass:none[maksymalna ilość znaków wyświetlana w elemencie paska "typing" (0 = nie ograniczaj zawartości)]
+** typ: liczba
+** wartości: 0 .. 2147483647
+** domyślna wartość: `+0+`
+// end::typing_options[]
+
+// tag::weechat_options[]
+* [[option_weechat.color.bar_more]] *weechat.color.bar_more*
+** opis: pass:none[kolor tekstu dla "+" przy przewijaniu pasków]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+lightcyan+`
+** domyślna wartość: `+lightmagenta+`
-* [[option_fset.color.line_marked_bg1]] *fset.color.line_marked_bg1*
-** opis: pass:none[kolor tła zaznaczonej linii (używany z pierwszym formatem, zobacz opcję fset.format.option1)]
+* [[option_weechat.color.chat]] *weechat.color.chat*
+** opis: pass:none[kolor tekstu czatu]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
** domyślna wartość: `+default+`
-* [[option_fset.color.line_marked_bg2]] *fset.color.line_marked_bg2*
-** opis: pass:none[kolor tła zaznaczonej linii (używany z pierwszym formatem, zobacz opcję fset.format.option2)]
+* [[option_weechat.color.chat_bg]] *weechat.color.chat_bg*
+** opis: pass:none[kolor tła czatu]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
** domyślna wartość: `+default+`
-* [[option_fset.color.line_selected_bg1]] *fset.color.line_selected_bg1*
-** opis: pass:none[kolor tła wybranej linii (używany z pierwszym formatem, zobacz opcję fset.format.option1)]
+* [[option_weechat.color.chat_buffer]] *weechat.color.chat_buffer*
+** opis: pass:none[kolor nazw buforów]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+blue+`
+** domyślna wartość: `+white+`
-* [[option_fset.color.line_selected_bg2]] *fset.color.line_selected_bg2*
-** opis: pass:none[kolor tła wybranej linii (używany z pierwszym formatem, zobacz opcję fset.format.option2)]
+* [[option_weechat.color.chat_channel]] *weechat.color.chat_channel*
+** opis: pass:none[kolor nazw kanałów]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+red+`
+** domyślna wartość: `+white+`
-* [[option_fset.color.marked]] *fset.color.marked*
-** opis: pass:none[kolor znacznika zaznaczenia]
+* [[option_weechat.color.chat_day_change]] *weechat.color.chat_day_change*
+** opis: pass:none[kolor tekstu dla wiadomości o zmianie daty]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+brown+`
+** domyślna wartość: `+cyan+`
-* [[option_fset.color.marked_selected]] *fset.color.marked_selected*
-** opis: pass:none[kolor znacznika zaznaczenia w wybranej linii]
+* [[option_weechat.color.chat_delimiters]] *weechat.color.chat_delimiters*
+** opis: pass:none[kolor separatorów]
+** typ: kolor
+** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
+** domyślna wartość: `+green+`
+
+* [[option_weechat.color.chat_highlight]] *weechat.color.chat_highlight*
+** opis: pass:none[kolor przedrostka podświetlenia]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
** domyślna wartość: `+yellow+`
-* [[option_fset.color.max]] *fset.color.max*
-** opis: pass:none[kolor maksymalnej wartości]
+* [[option_weechat.color.chat_highlight_bg]] *weechat.color.chat_highlight_bg*
+** opis: pass:none[kolor tła przedrostka podświetlenia]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+default+`
+** domyślna wartość: `+magenta+`
-* [[option_fset.color.max_selected]] *fset.color.max_selected*
-** opis: pass:none[kolor maksymalnej wartości w wybranej linii]
+* [[option_weechat.color.chat_host]] *weechat.color.chat_host*
+** opis: pass:none[kolor nazw hostów]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+white+`
+** domyślna wartość: `+cyan+`
-* [[option_fset.color.min]] *fset.color.min*
-** opis: pass:none[kolor minimalnej wartości]
+* [[option_weechat.color.chat_inactive_buffer]] *weechat.color.chat_inactive_buffer*
+** opis: pass:none[kolor tekstu dla rozmowy, kiedy linia nie jest aktywna (bufor jest połączony z innymi i nie został wybrany)]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
** domyślna wartość: `+default+`
-* [[option_fset.color.min_selected]] *fset.color.min_selected*
-** opis: pass:none[kolor minimalnej wartości w wybranej linii]
+* [[option_weechat.color.chat_inactive_window]] *weechat.color.chat_inactive_window*
+** opis: pass:none[kolor tekstu dla rozmowy, kiedy okno jest nieaktywne (obecnie nie wybrane okno)]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+white+`
+** domyślna wartość: `+default+`
-* [[option_fset.color.name]] *fset.color.name*
-** opis: pass:none[kolor nazwy]
+* [[option_weechat.color.chat_nick]] *weechat.color.chat_nick*
+** opis: pass:none[kolor tekstu dla nicków w ekranach rozmów: używane w niektórych wiadomościach serwera i w wypadku nie znalezieniu koloru nicka; w większości przypadków kolor nicka jest brany z opcji weechat.color.chat_nick_colors]
+** typ: kolor
+** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
+** domyślna wartość: `+lightcyan+`
+
+* [[option_weechat.color.chat_nick_colors]] *weechat.color.chat_nick_colors*
+** opis: pass:none[kolor tekstu nicków (oddzielona przecinkami lista kolorów, tło jest dozwolone za pomocą formatu: "fg:bg" na przykład: "lightred:blue")]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+"cyan,magenta,green,brown,lightblue,default,lightcyan,lightmagenta,lightgreen,blue"+`
+
+* [[option_weechat.color.chat_nick_offline]] *weechat.color.chat_nick_offline*
+** opis: pass:none[kolor tekstu dla nieobecnego nicka (nie występuje już na liście nicków); ten kolor używany jest tylko jeśli włączona jest opcja weechat.look.color_nick_offline]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
** domyślna wartość: `+default+`
-* [[option_fset.color.name_changed]] *fset.color.name_changed*
-** opis: pass:none[kolor nazwy jeśli wartość została zmieniona]
+* [[option_weechat.color.chat_nick_offline_highlight]] *weechat.color.chat_nick_offline_highlight*
+** opis: pass:none[kolor tekstu dla podświetlenia nieobecnego nicka; ten kolor używany jest tylko jeśli włączona jest opcja weechat.look.color_nick_offline]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+brown+`
+** domyślna wartość: `+default+`
-* [[option_fset.color.name_changed_selected]] *fset.color.name_changed_selected*
-** opis: pass:none[kolor nazwy jeśli wartość została zmieniona w wybranej linii]
+* [[option_weechat.color.chat_nick_offline_highlight_bg]] *weechat.color.chat_nick_offline_highlight_bg*
+** opis: pass:none[kolor tła dla podświetlenia nieobecnego nicka; ten kolor używany jest tylko jeśli włączona jest opcja weechat.look.color_nick_offline]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+yellow+`
+** domyślna wartość: `+blue+`
-* [[option_fset.color.name_selected]] *fset.color.name_selected*
-** opis: pass:none[kolor nazwy w wybranej linii]
+* [[option_weechat.color.chat_nick_other]] *weechat.color.chat_nick_other*
+** opis: pass:none[kolor innego nicka w prywatnym buforze]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+white+`
+** domyślna wartość: `+cyan+`
-* [[option_fset.color.option]] *fset.color.option*
-** opis: pass:none[kolor opcji]
+* [[option_weechat.color.chat_nick_prefix]] *weechat.color.chat_nick_prefix*
+** opis: pass:none[kolor przedrostka nicka (przedrostek to ciąg wyświetlany przed nickiem w prafiksie)]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+default+`
+** domyślna wartość: `+green+`
-* [[option_fset.color.option_changed]] *fset.color.option_changed*
-** opis: pass:none[kolor opcji jeśli wartość została zmieniona]
+* [[option_weechat.color.chat_nick_self]] *weechat.color.chat_nick_self*
+** opis: pass:none[kolor lokalnego nicka w oknie rozmowy]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+brown+`
+** domyślna wartość: `+white+`
-* [[option_fset.color.option_changed_selected]] *fset.color.option_changed_selected*
-** opis: pass:none[kolor opcji jeśli wartość została zmieniona w wybranej linii]
+* [[option_weechat.color.chat_nick_suffix]] *weechat.color.chat_nick_suffix*
+** opis: pass:none[kolor przyrostka nicka (przyrostek to ciąg wyświetlany za nickiem w prefiksie)]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+yellow+`
+** domyślna wartość: `+green+`
-* [[option_fset.color.option_selected]] *fset.color.option_selected*
-** opis: pass:none[kolor opcji w wybranej linii]
+* [[option_weechat.color.chat_prefix_action]] *weechat.color.chat_prefix_action*
+** opis: pass:none[kolor przedrostka akcji]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
** domyślna wartość: `+white+`
-* [[option_fset.color.parent_name]] *fset.color.parent_name*
-** opis: pass:none[kolor nazwy opcji nadrzędnej]
+* [[option_weechat.color.chat_prefix_buffer]] *weechat.color.chat_prefix_buffer*
+** opis: pass:none[kolor nazwy bufora (przed przedrostkiem, kiedy wiele buforów jest połączonych)]
+** typ: kolor
+** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
+** domyślna wartość: `+brown+`
+
+* [[option_weechat.color.chat_prefix_buffer_inactive_buffer]] *weechat.color.chat_prefix_buffer_inactive_buffer*
+** opis: pass:none[kolor tekstu dla nazwy nieaktywnego bufora (przed przedrostkiem, kiedy wiele buforów jest połączonych z tym samym numerem, oraz jeśli bufor nie jest wybrany)]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
** domyślna wartość: `+default+`
-* [[option_fset.color.parent_name_selected]] *fset.color.parent_name_selected*
-** opis: pass:none[kolor opcji nadrzędnej w wybranej linii]
+* [[option_weechat.color.chat_prefix_error]] *weechat.color.chat_prefix_error*
+** opis: pass:none[kolor przedrostka błędu]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+white+`
+** domyślna wartość: `+yellow+`
-* [[option_fset.color.parent_value]] *fset.color.parent_value*
-** opis: pass:none[kolor wartości wybranej opcji]
+* [[option_weechat.color.chat_prefix_join]] *weechat.color.chat_prefix_join*
+** opis: pass:none[kolor przedrostka wejścia na kanał]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+cyan+`
+** domyślna wartość: `+lightgreen+`
-* [[option_fset.color.parent_value_selected]] *fset.color.parent_value_selected*
-** opis: pass:none[kolor wartości wybranej opcji w wybranej linii]
+* [[option_weechat.color.chat_prefix_more]] *weechat.color.chat_prefix_more*
+** opis: pass:none[kolor tekstu dla "+" dla za długich przedrostków]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+lightcyan+`
+** domyślna wartość: `+lightmagenta+`
-* [[option_fset.color.quotes]] *fset.color.quotes*
-** opis: pass:none[kolor cudzysłowów do okoła wartości słownej]
+* [[option_weechat.color.chat_prefix_network]] *weechat.color.chat_prefix_network*
+** opis: pass:none[kolor przedrostka sieci]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+darkgray+`
+** domyślna wartość: `+magenta+`
-* [[option_fset.color.quotes_changed]] *fset.color.quotes_changed*
-** opis: pass:none[kolor dla cudzysłowów do okoła wartości, które uległy zmianie]
+* [[option_weechat.color.chat_prefix_quit]] *weechat.color.chat_prefix_quit*
+** opis: pass:none[kolor przedrostka wyjścia z IRC]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+default+`
+** domyślna wartość: `+lightred+`
-* [[option_fset.color.quotes_changed_selected]] *fset.color.quotes_changed_selected*
-** opis: pass:none[kolor cudzysłowów do okoła zmienionych wartości w wybranej linii]
+* [[option_weechat.color.chat_prefix_suffix]] *weechat.color.chat_prefix_suffix*
+** opis: pass:none[kolor przyrostka (po przedrostku)]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+white+`
+** domyślna wartość: `+green+`
-* [[option_fset.color.quotes_selected]] *fset.color.quotes_selected*
-** opis: pass:none[kolor cudzysłowów do okoła wartości w wybranej linii]
+* [[option_weechat.color.chat_read_marker]] *weechat.color.chat_read_marker*
+** opis: pass:none[kolor znacznika nieprzeczytanych wiadomości]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+default+`
+** domyślna wartość: `+magenta+`
-* [[option_fset.color.section]] *fset.color.section*
-** opis: pass:none[kolor zaznaczenia]
+* [[option_weechat.color.chat_read_marker_bg]] *weechat.color.chat_read_marker_bg*
+** opis: pass:none[kolor tła znacznika nieprzeczytanych wiadomości]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
** domyślna wartość: `+default+`
-* [[option_fset.color.section_changed]] *fset.color.section_changed*
-** opis: pass:none[kolor sekcji, jeśli wartość została zmieniona]
+* [[option_weechat.color.chat_server]] *weechat.color.chat_server*
+** opis: pass:none[kolor nazw serwerów]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
** domyślna wartość: `+brown+`
-* [[option_fset.color.section_changed_selected]] *fset.color.section_changed_selected*
-** opis: pass:none[kolor sekcji, jeśli wartość została zmieniona w wybranej linii]
+* [[option_weechat.color.chat_tags]] *weechat.color.chat_tags*
+** opis: pass:none[kolor tekstu dla tagów po wiadomościach (wyświetlanych za pomocą komendy /debug tags)]
+** typ: kolor
+** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
+** domyślna wartość: `+red+`
+
+* [[option_weechat.color.chat_text_found]] *weechat.color.chat_text_found*
+** opis: pass:none[kolor znacznika linii, w których znaleziono szukany tekst]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
** domyślna wartość: `+yellow+`
-* [[option_fset.color.section_selected]] *fset.color.section_selected*
-** opis: pass:none[kolor sekcji w wybranej linii]
+* [[option_weechat.color.chat_text_found_bg]] *weechat.color.chat_text_found_bg*
+** opis: pass:none[kolor tła znacznika linii, w których znaleziono szukany tekst]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+white+`
+** domyślna wartość: `+lightmagenta+`
-* [[option_fset.color.string_values]] *fset.color.string_values*
-** opis: pass:none[kolor dla wartości ciągów]
+* [[option_weechat.color.chat_time]] *weechat.color.chat_time*
+** opis: pass:none[kolor czasu w oknie czatu]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
** domyślna wartość: `+default+`
-* [[option_fset.color.string_values_selected]] *fset.color.string_values_selected*
-** opis: pass:none[kolor dla wartości ciągów w wybranej linii]
+* [[option_weechat.color.chat_time_delimiters]] *weechat.color.chat_time_delimiters*
+** opis: pass:none[kolor separatora czasu]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+white+`
+** domyślna wartość: `+brown+`
-* [[option_fset.color.title_count_options]] *fset.color.title_count_options*
-** opis: pass:none[kolor liczby znalezionych opcji z użyciem obecnego filtra w tytule bofora]
+* [[option_weechat.color.chat_value]] *weechat.color.chat_value*
+** opis: pass:none[kolor wyświetlania wartości]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
** domyślna wartość: `+cyan+`
-* [[option_fset.color.title_current_option]] *fset.color.title_current_option*
-** opis: pass:none[kolor obecnego numeru opcji w tytule bufora]
+* [[option_weechat.color.chat_value_null]] *weechat.color.chat_value_null*
+** opis: pass:none[kolor wyświetlania wartości null (niezdefiniowane)]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+lightcyan+`
+** domyślna wartość: `+blue+`
-* [[option_fset.color.title_filter]] *fset.color.title_filter*
-** opis: pass:none[kolor filtru w tytule bufora]
+* [[option_weechat.color.emphasized]] *weechat.color.emphasized*
+** opis: pass:none[kolor dla wyróżnionego tekstu (na przykład podczas wyszukiwania); opcja używana tylko jeśli opcja weechat.look.emphasized_attributes jest pustym ciągiem (wartość domyślna)]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
** domyślna wartość: `+yellow+`
-* [[option_fset.color.title_marked_options]] *fset.color.title_marked_options*
-** opis: pass:none[kolor numeru zaznaczonych opcji w tytule bufora]
+* [[option_weechat.color.emphasized_bg]] *weechat.color.emphasized_bg*
+** opis: pass:none[kolor tła dla wyróżnionego tekstu (na przykład podczas wyszukiwania tekstu); opcja używana tylko jeśli opcja weechat.look.emphasized_attributes jest pustym ciągiem (wartość domyślna)]
+** typ: kolor
+** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
+** domyślna wartość: `+magenta+`
+
+* [[option_weechat.color.input_actions]] *weechat.color.input_actions*
+** opis: pass:none[kolor akcji w wprowadzonej linii]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
** domyślna wartość: `+lightgreen+`
-* [[option_fset.color.title_sort]] *fset.color.title_sort*
-** opis: pass:none[kolor sortowania w tytule okna]
+* [[option_weechat.color.input_text_not_found]] *weechat.color.input_text_not_found*
+** opis: pass:none[kolor nieudanego wyszukiwania tekstu w wprowadzonej linii]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+white+`
+** domyślna wartość: `+red+`
-* [[option_fset.color.type]] *fset.color.type*
-** opis: pass:none[kolor typu]
+* [[option_weechat.color.item_away]] *weechat.color.item_away*
+** opis: pass:none[kolor elementu nieobecności]
+** typ: kolor
+** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
+** domyślna wartość: `+yellow+`
+
+* [[option_weechat.color.nicklist_away]] *weechat.color.nicklist_away*
+** opis: pass:none[kolor nicków ze statusem nieobecności]
+** typ: kolor
+** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
+** domyślna wartość: `+cyan+`
+
+* [[option_weechat.color.nicklist_group]] *weechat.color.nicklist_group*
+** opis: pass:none[kolor grup na liście nicków]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
** domyślna wartość: `+green+`
-* [[option_fset.color.type_selected]] *fset.color.type_selected*
-** opis: pass:none[kolor typu w zaznaczonej linii]
+* [[option_weechat.color.separator]] *weechat.color.separator*
+** opis: pass:none[kolor tła dla separatorów (kiedy podzielone) i separatorów obok pasków (jak lista nicków)]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+lightgreen+`
+** domyślna wartość: `+blue+`
-* [[option_fset.color.unmarked]] *fset.color.unmarked*
-** opis: pass:none[kolor znacznika zaznaczenia, kiedy opcja nie jest zaznaczona]
+* [[option_weechat.color.status_count_highlight]] *weechat.color.status_count_highlight*
+** opis: pass:none[kolor tekstu dla licznika podświetleń w hotliście (pasek statusu)]
+** typ: kolor
+** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
+** domyślna wartość: `+magenta+`
+
+* [[option_weechat.color.status_count_msg]] *weechat.color.status_count_msg*
+** opis: pass:none[kolor tekstu dla licznika wiadomości w hotliście (pasek statusu)]
+** typ: kolor
+** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
+** domyślna wartość: `+brown+`
+
+* [[option_weechat.color.status_count_other]] *weechat.color.status_count_other*
+** opis: pass:none[kolor tekstu dla licznika innych wiadomości w hotliście (pasek statusu)]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
** domyślna wartość: `+default+`
-* [[option_fset.color.unmarked_selected]] *fset.color.unmarked_selected*
-** opis: pass:none[kolor znacznika zaznaczenia w wybranej linii, kiedy opcja nie jest zaznaczona]
+* [[option_weechat.color.status_count_private]] *weechat.color.status_count_private*
+** opis: pass:none[kolor tekstu dla licznika prywatnych wiadomości w hotliście (pasek statusu)]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+white+`
+** domyślna wartość: `+green+`
-* [[option_fset.color.value]] *fset.color.value*
-** opis: pass:none[kolor wartości]
+* [[option_weechat.color.status_data_highlight]] *weechat.color.status_data_highlight*
+** opis: pass:none[kolor bufora z podświetleniem (pasek statusu)]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+cyan+`
+** domyślna wartość: `+lightmagenta+`
-* [[option_fset.color.value_changed]] *fset.color.value_changed*
-** opis: pass:none[kolor dla zmienionej wartości (inny niż domyślny)]
+* [[option_weechat.color.status_data_msg]] *weechat.color.status_data_msg*
+** opis: pass:none[kolor bufora z nowymi wiadomościami (pasek statusu)]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+brown+`
+** domyślna wartość: `+yellow+`
-* [[option_fset.color.value_changed_selected]] *fset.color.value_changed_selected*
-** opis: pass:none[kolor dla zmienionej wartości (inny niż domyślny) w wybranej linii]
+* [[option_weechat.color.status_data_other]] *weechat.color.status_data_other*
+** opis: pass:none[kolor bufora z nowymi zdarzeniami (nie wiadomościami) (pasek statusu)]
+** typ: kolor
+** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
+** domyślna wartość: `+default+`
+
+* [[option_weechat.color.status_data_private]] *weechat.color.status_data_private*
+** opis: pass:none[kolor bufora z prywatną wiadomością (pasek statusu)]
+** typ: kolor
+** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
+** domyślna wartość: `+lightgreen+`
+
+* [[option_weechat.color.status_filter]] *weechat.color.status_filter*
+** opis: pass:none[kolor wskaźnika filtru w pasku statusu]
+** typ: kolor
+** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
+** domyślna wartość: `+green+`
+
+* [[option_weechat.color.status_more]] *weechat.color.status_more*
+** opis: pass:none[kolor bufora z nowymi zdarzeniami (pasek statusu)]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
** domyślna wartość: `+yellow+`
-* [[option_fset.color.value_selected]] *fset.color.value_selected*
-** opis: pass:none[kolor wartości w wybranej linii]
+* [[option_weechat.color.status_mouse]] *weechat.color.status_mouse*
+** opis: pass:none[kolor wskaźnika myszy w pasku statusu]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+lightcyan+`
+** domyślna wartość: `+green+`
-* [[option_fset.color.value_undef]] *fset.color.value_undef*
-** opis: pass:none[kolor niezdefiniowanej wartości]
+* [[option_weechat.color.status_name]] *weechat.color.status_name*
+** opis: pass:none[kolor nazwy obecnego bufora w pasku statusu]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+magenta+`
+** domyślna wartość: `+white+`
-* [[option_fset.color.value_undef_selected]] *fset.color.value_undef_selected*
-** opis: pass:none[kolor niezdefiniowanej wartości w wybranej linii]
+* [[option_weechat.color.status_name_ssl]] *weechat.color.status_name_ssl*
+** opis: pass:none[kolor nazwy obecnego bufora w pasku statusu, jeśli połączenie jest szyfrowane np poprzez SSL]
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
-** domyślna wartość: `+lightmagenta+`
+** domyślna wartość: `+lightgreen+`
-* [[option_fset.format.export_help]] *fset.format.export_help*
-** opis: pass:none[format linii z pomocą zapisanej przed każdą opcją eskportowaną do pliku (uwaga: zawartość jest przetwarzana, zobacz /help fset)]
+* [[option_weechat.color.status_nicklist_count]] *weechat.color.status_nicklist_count*
+** opis: pass:none[kolor tekstu dla numeru nicków w liście nicków (pasek statusu)]
+** typ: kolor
+** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
+** domyślna wartość: `+default+`
+
+* [[option_weechat.color.status_number]] *weechat.color.status_number*
+** opis: pass:none[kolor numeru obecnego bufora w pasku statusu]
+** typ: kolor
+** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
+** domyślna wartość: `+yellow+`
+
+* [[option_weechat.color.status_time]] *weechat.color.status_time*
+** opis: pass:none[kolor czasu (pasek statusu)]
+** typ: kolor
+** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
+** domyślna wartość: `+default+`
+
+* [[option_weechat.completion.base_word_until_cursor]] *weechat.completion.base_word_until_cursor*
+** opis: pass:none[jeśli włączone, bazowe słowo do dopełniania kończy się na znaku przed kursorem; w innym wypadku słowo bazowe kończy się na pierwszej spacji po kursorze]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+on+`
+
+* [[option_weechat.completion.command_inline]] *weechat.completion.command_inline*
+** opis: pass:none[jeśli włączone, komendy wewnątrz linii komend są dopełniane (komenda na początku linii ma wyższy priorytet i zostanie użyta pierwsza); uwaga: włączenie tej opcji wyłącza automatyczne dopełnianie ścieżek zaczynających się od "/" (poza argumentami komend)]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+on+`
+
+* [[option_weechat.completion.default_template]] *weechat.completion.default_template*
+** opis: pass:none[domyślny szablon dopełnień (zajrzyj do dokumentacji w celu uzyskania kodów i wartości szablonów: opis API wtyczek, funkcja "weechat_hook_command")]
** typ: ciąg
** wartości: dowolny ciąg
-** domyślna wartość: `+"# ${description2}"+`
+** domyślna wartość: `+"%(nicks)|%(irc_channels)"+`
-* [[option_fset.format.export_option]] *fset.format.export_option*
-** opis: pass:none[format każdej opcji eskportowanej do pliku (uwaga: zawartość jest przetwarzana, zobacz /help fset)]
+* [[option_weechat.completion.nick_add_space]] *weechat.completion.nick_add_space*
+** opis: pass:none[dodaj spację po dopełnionym nicku (kiedy nick nie jest pierwszym słowem w linii poleceń)]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+on+`
+
+* [[option_weechat.completion.nick_case_sensitive]] *weechat.completion.nick_case_sensitive*
+** opis: pass:none[dopełnienie dla nicków (rozróżniana jest wielkość liter)]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+off+`
+
+* [[option_weechat.completion.nick_completer]] *weechat.completion.nick_completer*
+** opis: pass:none[ciąg wstawiany po dopełnionym nicku (kiedy nick jest pierwszym słowem w linii poleceń)]
** typ: ciąg
** wartości: dowolny ciąg
-** domyślna wartość: `+"/set ${name} ${quoted_value}"+`
+** domyślna wartość: `+": "+`
-* [[option_fset.format.export_option_null]] *fset.format.export_option_null*
-** opis: pass:none[format każdej opcji z wartością "null" eksportowanej do pliku (uwaga: zawartość jest przetwarzana, zobacz /help fset)]
+* [[option_weechat.completion.nick_first_only]] *weechat.completion.nick_first_only*
+** opis: pass:none[dopełniaj tylko pierwszym znalezionym nickiem]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+off+`
+
+* [[option_weechat.completion.nick_ignore_chars]] *weechat.completion.nick_ignore_chars*
+** opis: pass:none[znaki ignorowane przy dopełnieniu nicków]
** typ: ciąg
** wartości: dowolny ciąg
-** domyślna wartość: `+"/unset ${name}"+`
+** domyślna wartość: `+"[]`_-^"+`
-* [[option_fset.format.option1]] *fset.format.option1*
-** opis: pass:none[pierwszy format dla każdej linii, użyty kiedy opcja fset.look.format_number ma wartość 1 (uwaga: zawartość jest przetwarzana, zobacz /help fset); pusty ciąg używa domyślnego formatu ("${marked} ${name} ${type} ${value2}"), który nie przetwarza ciągów, przez co jest szybszy; formaty można zmienić za pomocą ctrl-X]
+* [[option_weechat.completion.partial_completion_alert]] *weechat.completion.partial_completion_alert*
+** opis: pass:none[wyślij alarm (BEL), kiedy nastąpi częściowe dopełnienie]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+on+`
+
+* [[option_weechat.completion.partial_completion_command]] *weechat.completion.partial_completion_command*
+** opis: pass:none[częściowe dopełnienie nazwy komend (zatrzymaj, kiedy wiele komend zaczyna się od tych samych liter)]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+off+`
+
+* [[option_weechat.completion.partial_completion_command_arg]] *weechat.completion.partial_completion_command_arg*
+** opis: pass:none[częściowe dopełnienie argumentów komend (zatrzymaj, gdy wiele argumentów zaczyna się jednakowym przedrostkiem)]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+off+`
+
+* [[option_weechat.completion.partial_completion_count]] *weechat.completion.partial_completion_count*
+** opis: pass:none[wyświetlaj ilość wszystkich częściowych dopełnień w elemencie paska]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+on+`
+
+* [[option_weechat.completion.partial_completion_other]] *weechat.completion.partial_completion_other*
+** opis: pass:none[częściowe dopełnienie zewnętrznych komend (zatrzymaj, kiedy wiele słów zaczyna się takimi samymi literami)]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+off+`
+
+* [[option_weechat.completion.partial_completion_templates]] *weechat.completion.partial_completion_templates*
+** opis: pass:none[oddzielona przecinkiem lista wzorców, dla których częściowe doprłnienia są domyślnie włączone (za pomocą klawisza Tab zamiast shift-Tab); listę wzorców wzorców można znaleźć w dokumentacji: opis API wtyczek, funkcja "weechat_hook_command"]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+"config_options"+`
+
+* [[option_weechat.history.display_default]] *weechat.history.display_default*
+** opis: pass:none[maksymalna ilość komend domyślnie wyświetlanych w listingu historii (0 = bez ograniczeń)]
+** typ: liczba
+** wartości: 0 .. 2147483647
+** domyślna wartość: `+5+`
+
+* [[option_weechat.history.max_buffer_lines_minutes]] *weechat.history.max_buffer_lines_minutes*
+** opis: pass:none[maksymalna ilość minut w historii każdego bufora (0 = bez ograniczeń); przykłady: 1440 = dzień, 10080 = tydzień, 43200 = miesiąc, 525600 = rok; 0 można użyć TYLKO jeśli opcja weechat.history.max_buffer_lines_number NIE JEST ustawiona na 0]
+** typ: liczba
+** wartości: 0 .. 2147483647
+** domyślna wartość: `+0+`
+
+* [[option_weechat.history.max_buffer_lines_number]] *weechat.history.max_buffer_lines_number*
+** opis: pass:none[maksymalna ilość linii w historii każdego bufora (0 = bez ograniczeń); 0 można użyć TYLKO jeśli opcja weechat.history.max_buffer_lines_minutes NIE JEST ustawiona na 0]
+** typ: liczba
+** wartości: 0 .. 2147483647
+** domyślna wartość: `+4096+`
+
+* [[option_weechat.history.max_commands]] *weechat.history.max_commands*
+** opis: pass:none[maksymalna ilość komend użytkownika w historii (0 = bez ograniczeń, NIE ZALECANE: brak limitu w zajmowanej pamięci)]
+** typ: liczba
+** wartości: 0 .. 2147483647
+** domyślna wartość: `+100+`
+
+* [[option_weechat.history.max_visited_buffers]] *weechat.history.max_visited_buffers*
+** opis: pass:none[maksymalna ilość odwiedzonych buforów trzymana w pamięci]
+** typ: liczba
+** wartości: 0 .. 1000
+** domyślna wartość: `+50+`
+
+* [[option_weechat.look.align_end_of_lines]] *weechat.look.align_end_of_lines*
+** opis: pass:none[wyrównanie dla końca linii (wszystkie po pierwszej): zaczynają się od tego (time, buffer, prefix, suffix, message (domyślnie))]
+** typ: liczba
+** wartości: time, buffer, prefix, suffix, message
+** domyślna wartość: `+message+`
+
+* [[option_weechat.look.align_multiline_words]] *weechat.look.align_multiline_words*
+** opis: pass:none[wyrównanie dla wielolinijkowych słów zgodnie z opcją weechat.look.align_end_of_lines; jeśli wyłączone wieloliniowe słowa nie będą wyrównane, co może być przydatne do nie dzielenia długich adresów URL]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+on+`
+
+* [[option_weechat.look.bar_more_down]] *weechat.look.bar_more_down*
+** opis: pass:none[ciąg wyświetlany jeśli pasek może zostać przewinięty w dół (dla pasków z wypełnieniem innym niż "horizontal")]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+"++"+`
+
+* [[option_weechat.look.bar_more_left]] *weechat.look.bar_more_left*
+** opis: pass:none[ciąg wyświetlany jeśli pasek może zostać przewinięty w lewo (dla pasków z wypełnieniem innym niż "horizontal")]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+"<<"+`
+
+* [[option_weechat.look.bar_more_right]] *weechat.look.bar_more_right*
+** opis: pass:none[ciąg wyświetlany jeśli pasek może zostać przewinięty w prawo (dla pasków z wypełnieniem innym niż "horizontal")]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+">>"+`
+
+* [[option_weechat.look.bar_more_up]] *weechat.look.bar_more_up*
+** opis: pass:none[ciąg wyświetlany jeśli pasek może zostać przewinięty w górę (dla pasków z wypełnieniem innym niż "horizontal")]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+"--"+`
+
+* [[option_weechat.look.bare_display_exit_on_input]] *weechat.look.bare_display_exit_on_input*
+** opis: pass:none[wyjście z trybu niesformatowanego wyświetlania po każdej zmianie wejścia]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+on+`
+
+* [[option_weechat.look.bare_display_time_format]] *weechat.look.bare_display_time_format*
+** opis: pass:none[format czasu dla trybu niesformatowanego wyświetlania (zobacz man strftime dla specyfikatorów daty/czasu)]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+"%H:%M"+`
+
+* [[option_weechat.look.buffer_auto_renumber]] *weechat.look.buffer_auto_renumber*
+** opis: pass:none[automatyczna zmiana numerów buforów, aby uzyskać tylko kolejne numery i zaczynać od numeru 1; jeśli wyłączone dozwolone są przerwy między numerami buforów i pierwszy bufor może mieć numer większy od 1]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+on+`
+
+* [[option_weechat.look.buffer_notify_default]] *weechat.look.buffer_notify_default*
+** opis: pass:none[domyślny poziom powiadomień dla buforów (używany do powiedzenia WeeChat czy bufor musi być wyświetlany na hotliście czy nie, w zależności od wagi wiadomości): all=wszystkie wiadomości (domyślnie), message=wiadomości+podświetlenia, highlight=tylko podświetlenia, none=nigdy nie wyświetlany na hotliście]
+** typ: liczba
+** wartości: none, highlight, message, all
+** domyślna wartość: `+all+`
+
+* [[option_weechat.look.buffer_position]] *weechat.look.buffer_position*
+** opis: pass:none[pozycja nowego bufora: end = na końcu listy (numer = ostatni +1)(domyślne), first_gap = na pierwszym wolnym miejscu w liście (na końcu listy, jeśli nie ma wcześniej wolnego miejsca); ta opcja używana jest tylko, jeśli bufor nie ma numeru układu]
+** typ: liczba
+** wartości: end, first_gap
+** domyślna wartość: `+end+`
+
+* [[option_weechat.look.buffer_search_case_sensitive]] *weechat.look.buffer_search_case_sensitive*
+** opis: pass:none[domyślne wyszukiwanie w buforze: uwzględniające wielkość liter lub nie]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+off+`
+
+* [[option_weechat.look.buffer_search_force_default]] *weechat.look.buffer_search_force_default*
+** opis: pass:none[wymusza domyślne wartości dla wyszukiwań tekstowych w buforze (zamiast wartości z poprzedniego wyszukiwania)]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+off+`
+
+* [[option_weechat.look.buffer_search_regex]] *weechat.look.buffer_search_regex*
+** opis: pass:none[domyślne wyszukiwanie w buforze: jeśli włączone szukane jest rozszerzone wyrażenie regularne POSIX, w przeciwnym wypadku prosty ciąg]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+off+`
+
+* [[option_weechat.look.buffer_search_where]] *weechat.look.buffer_search_where*
+** opis: pass:none[domyślny tekst do wyszukiwania w buforze: w wiadomości, prefiksie, prefiksie i wiadomości]
+** typ: liczba
+** wartości: prefix, message, prefix_message
+** domyślna wartość: `+prefix_message+`
+
+* [[option_weechat.look.buffer_time_format]] *weechat.look.buffer_time_format*
+** opis: pass:none[format czasu używany dla każdej linii w buforze (zobacz man strftime dla specyfikatorów daty/czasu) (uwaga: zawartość jest przetwarzana, dlatego można użyć kolorów w formacie "${color:xxx}", zobacz /help eval); na przykład czas w odcieniach szarości (wymaga wsparcia dla 256 kolorów):"${color:252}%H${color:245}%M${color:240}%S"]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+"%H:%M:%S"+`
+
+* [[option_weechat.look.buffer_time_same]] *weechat.look.buffer_time_same*
+** opis: pass:none[czas wyświetlany dla wiadomości z takim samym czasem jak poprzednia wiadomość: spacja " " chowa czas, inny ciąg wyświetlany zamiast czasu lub pusty ciąg dla wyłączenia opcji (wyświetlanie czasu) (uwaga: zawartość jest przetwarzana, możesz użyć kolorów w formacie "$(color:xxx}", zobacz /help eval)]
** typ: ciąg
** wartości: dowolny ciąg
** domyślna wartość: `+""+`
-* [[option_fset.format.option2]] *fset.format.option2*
-** opis: pass:none[drugi format dla każdej linii, użyty kiedy opcja fset.look.format_number ma wartość 2 (uwaga: zawartość jest przetwarzana, zobacz /help fset); pusty ciąg używa domyślnego formatu ("${marked} ${name} ${type} ${value2}"), który nie przetwarza ciągów, przez co jest szybszy; formaty można zmienić za pomocą ctrl-X]
+* [[option_weechat.look.chat_space_right]] *weechat.look.chat_space_right*
+** opis: pass:none[zastawia miejsce po prawej stronie chatu w przypadku jak jest wyświetlany tam jakiś pasek (na tekst i znacznik przeczytania)]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+off+`
+
+* [[option_weechat.look.color_basic_force_bold]] *weechat.look.color_basic_force_bold*
+** opis: pass:none[wymusza atrybut "bold" dla jasnych kolorów oraz "darkgray" w kolorach podstawowych (ta opcja jest domyślnie wyłączona: pogrubienie jest używane tylko jeśli terminal obsługuje poniżej 16 kolorów)]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+off+`
+
+* [[option_weechat.look.color_inactive_buffer]] *weechat.look.color_inactive_buffer*
+** opis: pass:none[użycie rożnych kolorów dla linii w nieaktywnym buforze (kiedy linia pochodzi z niewybranego połączonego bufora)]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+on+`
+
+* [[option_weechat.look.color_inactive_message]] *weechat.look.color_inactive_message*
+** opis: pass:none[używa innego koloru dla nieaktywnych wiadomości (dla okien nie będących obecnie wybranych lub jeśli linia pochodzi z niewybranego z połączonych buforów)]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+on+`
+
+* [[option_weechat.look.color_inactive_prefix]] *weechat.look.color_inactive_prefix*
+** opis: pass:none[użyj różnych kolorów dla nieaktywnych prefiksów (kiedy okno nie jest obecnym oknem lub linia pochodzi z niewybranego z połączonych buforów)]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+on+`
+
+* [[option_weechat.look.color_inactive_prefix_buffer]] *weechat.look.color_inactive_prefix_buffer*
+** opis: pass:none[użycie rożnych kolorów dla przedrostka nazwy nieaktywnego bufora (kiedy okno nie jest obecnym, lub linia w połączonych buforach nie pochodzi z wybranego)]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+on+`
+
+* [[option_weechat.look.color_inactive_time]] *weechat.look.color_inactive_time*
+** opis: pass:none[używaj różnych kolorów dla czasu (dla okien poza obecnym lub jeśli linia pochodzi niewybranego z połączonych buforów)]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+off+`
+
+* [[option_weechat.look.color_inactive_window]] *weechat.look.color_inactive_window*
+** opis: pass:none[użycie rożnych kolorów dla linii w nieaktywnym oknie (kiedy okno nie jest obecnym oknem)]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+on+`
+
+* [[option_weechat.look.color_nick_offline]] *weechat.look.color_nick_offline*
+** opis: pass:none[użyj innego koloru dla nieobecnych nicków (nie znajdujących się na liście nicków)]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+off+`
+
+* [[option_weechat.look.color_pairs_auto_reset]] *weechat.look.color_pairs_auto_reset*
+** opis: pass:none[automatycznie resetuje tablicę par kolorów, kiedy ilość dostępnych par jest niższa lub równa tej wartości ( -1 = wyłączone, wymagane jest ręczne wykonywanie polecenia "/color reset", kiedy tablica jest pełna)]
+** typ: liczba
+** wartości: -1 .. 256
+** domyślna wartość: `+5+`
+
+* [[option_weechat.look.color_real_white]] *weechat.look.color_real_white*
+** opis: pass:none[jeśli ustawiona, używa prawdziwego białego koloru, domyślnie wyłączona dla terminali z białym tłem (jeśli biały kolor tła nigdy nie jest używany powinno się włączyć tę opcję, aby zobaczyć prawdziwy biały zamiast domyślnego koloru czcionki w terminalu)]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+off+`
+
+* [[option_weechat.look.command_chars]] *weechat.look.command_chars*
+** opis: pass:none[znaki użyte do określenia czy wprowadzony ciąg jest komendą czy nie: wprowadzony ciąg musi się zaczynać od jednego z tych znaków; slash ("/") jest zawsze uważany za prefiks komendy (np: ".$")]
** typ: ciąg
** wartości: dowolny ciąg
-** domyślna wartość: `+"${marked} ${name} ${type} ${value2}${newline} ${empty_name} ${_default_value}${color:darkgray} -- ${min}..${max}${newline} ${empty_name} ${description}"+`
+** domyślna wartość: `+""+`
-* [[option_fset.look.auto_refresh]] *fset.look.auto_refresh*
-** opis: pass:none[oddzielona przecinkami lista opcji odświeżanych automatycznie w buforze fset (jeśli jest on otwarty); "*" oznacza wszystkie opcje (zalecane), nazwa zaczynająca się od "!" oznacza wartość negatywną i zapobiega odświeżeniu opcji, "*" jest dozwolone w nazwach (przykład: "*,!plugin.section.*")]
+* [[option_weechat.look.command_incomplete]] *weechat.look.command_incomplete*
+** opis: pass:none[jeśli ustawione, niekompletne i jednoznaczne komendy są dozwolone, na przykład /he dla /help]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+off+`
+
+* [[option_weechat.look.confirm_quit]] *weechat.look.confirm_quit*
+** opis: pass:none[jeśli ustawione, komenda /quit musi być potwierdzona dodatkowym argumentem "-yes" (zobacz /help quit)]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+off+`
+
+* [[option_weechat.look.confirm_upgrade]] *weechat.look.confirm_upgrade*
+** opis: pass:none[jeśli ustawione, komenda /upgrade musi być potwierdzona dodatkowym argumentem "-yes" (zobacz /help upgrade)]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+off+`
+
+* [[option_weechat.look.day_change]] *weechat.look.day_change*
+** opis: pass:none[wyświetlaj specjalną wiadomość, kiedy zmienia się dzień]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+on+`
+
+* [[option_weechat.look.day_change_message_1date]] *weechat.look.day_change_message_1date*
+** opis: pass:none[wiadomość wyświetlana po zmianie dnia, wyświetlając tylko jedną datę (na przykład na początku bufora) (zobacz man strftime dla listy specyfikatorów daty/czasu) (uwaga: zawartość jest przetwarzana, dlatego można używać kolorów w formacie "${color:xxx}", zobacz /help eval)]
** typ: ciąg
** wartości: dowolny ciąg
-** domyślna wartość: `+"*"+`
+** domyślna wartość: `+"-- %a, %d %b %Y --"+`
-* [[option_fset.look.auto_unmark]] *fset.look.auto_unmark*
-** opis: pass:none[automatycznie odznacza wszystkie opcje po akcji na zaznaczonych opcjach lub po odświerzeniu]
+* [[option_weechat.look.day_change_message_2dates]] *weechat.look.day_change_message_2dates*
+** opis: pass:none[wiadomość wyświetlana po zmianie dnia, wyświetlając dwie daty (pomiędzy wiadomościami); specyfikatory drugiej daty muszą zaczynać się od dwóch "%" ponieważ strftime jest wywoływane dwa razy dla tego ciągu (zobacz man strftime dla listy specyfikatorów daty/czasu) (uwaga: zawartość jest przetwarzana, dlatego można używać kolorów w formacie "${color:xxx}", zobacz /help eval)]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+"-- %%a, %%d %%b %%Y (%a, %d %b %Y) --"+`
+
+* [[option_weechat.look.eat_newline_glitch]] *weechat.look.eat_newline_glitch*
+** opis: pass:none[jeśli ustawione eat_newline_glitch zostanie ustawione na 0; używa się tego w celu nie dodawania znaku nowej linii na końcu każdej linii, powoduje to nie łamanie tekstu podczas kopiowania/wklejania tekstu z WeeChat do innej aplikacji (domyślnie ta opcja jest wyłączona, ponieważ może spowodować poważne błędy wyświetlania)]
** typ: bool
** wartości: on, off
** domyślna wartość: `+off+`
-* [[option_fset.look.condition_catch_set]] *fset.look.condition_catch_set*
-** opis: pass:none[warunek do zlapania polecenia /set i wyświetlenia jego wyniku w buforze fset; następujące zmienne mogą zostać użyte: ${name} (nazwa opcji podana w komendzie /set), ${count} (ilość opcji znalezionych dla argumentu funkcji /set); pusty ciąg wyłącza przechwytywanie; wartość "1" oznacza przechwytywanie wszytkich użyć komendy /set przez bufor fset]
+* [[option_weechat.look.emphasized_attributes]] *weechat.look.emphasized_attributes*
+** opis: pass:none[atrybuty dla wyróżnionego tekstu: jeden lub więcej znaków atrybutu ("%" dla mrygania, "." dla "przyciemnienia" (połowa jasności), "*" dla pogrubienia, "!" dla odwrócenia, "/" dla pochylenia, "_" dla podkreślenia); jeśli ciąg jest pusty, używane są kolory weechat.color.emphasized*]
** typ: ciąg
** wartości: dowolny ciąg
-** domyślna wartość: `+"${count} >= 1"+`
+** domyślna wartość: `+""+`
-* [[option_fset.look.export_help_default]] *fset.look.export_help_default*
-** opis: pass:none[domyślnie wypisz pomoc dla każdej eksportowanej opcji (może to zostać zmienione poprzez argumenty "-help" i "-nohelp" dla komendy /fset -export)]
+* [[option_weechat.look.highlight]] *weechat.look.highlight*
+** opis: pass:none[lista słów do podświetlania oddzielona przecinkami; wielkość znaków nie ma znaczenia przy porównywaniu (użyj "(?-i)" na początku słów, aby wielkość znaków miała znaczenie), słowa mogą zaczynać się od "*" dla częściowego dopasowania; przykład: "test,(?-i)*toto*,flash*"]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+""+`
+
+* [[option_weechat.look.highlight_disable_regex]] *weechat.look.highlight_disable_regex*
+** opis: pass:none[Rozszerzone wyrażenie regularne POSIX używane do wyłączenia podświetleń od wiadomości: ta opcja ma priorytet nad pozostałymi opcjami dotyczącymi podświetleń (jeśli ciąg zostanie znaleziony w wiadomości, podświetlenie zostanie wyłączone i pozostałe opcje są ignorowane), wyrażenie regularne ignoruje wielkość znaków (użyj „(?-i)” na początku, aby wielość znaków nie była ignorowana), przykłady: „<flash.*>”, „(?-i)<Flash.*>”]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+""+`
+
+* [[option_weechat.look.highlight_regex]] *weechat.look.highlight_regex*
+** opis: pass:none[Rozszerzone wyrażenie regularne POSIX używane do sprawdzenia, czy wiadomość posiada podświetlenie czy nie, przynajmniej jedno dopasowanie w ciąg musi być otoczone separatorami (znaki inne niż: alfanumeryczne, "-", "_" lub "|"), wielkość znaków nie ma wpływu na wyrażenie (użyj "(?-i)" na początku, aby wielkość znaków miała znaczenie), przykłady: "flashcode|flashy", "(?-i)FlashCode|flashy"]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+""+`
+
+* [[option_weechat.look.highlight_tags]] *weechat.look.highlight_tags*
+** opis: pass:none[oddzielona przecinkami lista tagów do podświetleń; porównywanie bez uwzględnienia wielkości znaków; wildcard "*" jest dozwolony w każdym tagu; wiele tagów może być oddzielonych "+" jako logicznym "i" pomiędzy tagami; przykłady: "nick_flashcode" dla wiadomości od nicka "FlashCode", "irc_notice+nick_toto*" dla powiadomień od nicka zaczynającego się na "toto"]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+""+`
+
+* [[option_weechat.look.hotlist_add_conditions]] *weechat.look.hotlist_add_conditions*
+** opis: pass:none[warunki dla dodania buforu na hotlistę (jeśli poziom powiadomień jest OK dla bufora); możesz użyć następujących warunków: "window" (wskaźnik obecnego okna), "buffer" (wskaźnik bufora do dodania na hotlistę), "priority" (0 = niski, 1 = wiadomość, 2 = rozmowa prywatna, 3 = highlight); domyślnie bufor jest dodawany do hotlisty jeśli jesteś niedostępny lub jeśli bufor nie jest widoczny na ekranie (nie jest wyświetlany w żadnym oknie), lub jeśli przynajmniej jeden klient relay jest podłączony za pomocą protokołu weechat]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+"${away} || ${buffer.num_displayed} == 0 || ${info:relay_client_count,weechat,connected} > 0"+`
+
+* [[option_weechat.look.hotlist_buffer_separator]] *weechat.look.hotlist_buffer_separator*
+** opis: pass:none[ciąg znaków wyświetlany pomiędzy buforami w hotliście]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+", "+`
+
+* [[option_weechat.look.hotlist_count_max]] *weechat.look.hotlist_count_max*
+** opis: pass:none[maksymalna ilość wiadomości do wyświetlenia w hotliście dla bufora: 0 = nigdy nie wyświetlaj, inna liczba = wyświetlaj maksymalnie N ilości wiadomości (od najwyższego do najniższego priorytetu)]
+** typ: liczba
+** wartości: 0 .. 4
+** domyślna wartość: `+2+`
+
+* [[option_weechat.look.hotlist_count_min_msg]] *weechat.look.hotlist_count_min_msg*
+** opis: pass:none[wyświetla licznik wiadomości jeśli ilość wiadomości jest większa lub równa tej wartości]
+** typ: liczba
+** wartości: 1 .. 100
+** domyślna wartość: `+2+`
+
+* [[option_weechat.look.hotlist_names_count]] *weechat.look.hotlist_names_count*
+** opis: pass:none[maksymalna ilość nazw w hotliście (0 = żadna nazwa nie zostanie wyświetlona, tylko numery buforów)]
+** typ: liczba
+** wartości: 0 .. 10000
+** domyślna wartość: `+3+`
+
+* [[option_weechat.look.hotlist_names_length]] *weechat.look.hotlist_names_length*
+** opis: pass:none[maksymalna długość nazwy w hotliście (0 = brak limitu)]
+** typ: liczba
+** wartości: 0 .. 32
+** domyślna wartość: `+0+`
+
+* [[option_weechat.look.hotlist_names_level]] *weechat.look.hotlist_names_level*
+** opis: pass:none[poziom wyświetlania nazw w hotlście (kombinacja: 1 = join/part, 2 = wiadomość, 4 = prywatne, 8 = podświetlenie, na przykład: 12 = prywatne+podświetlenie)]
+** typ: liczba
+** wartości: 1 .. 15
+** domyślna wartość: `+12+`
+
+* [[option_weechat.look.hotlist_names_merged_buffers]] *weechat.look.hotlist_names_merged_buffers*
+** opis: pass:none[jeśli ustawione, wymusza wyświetlanie nazw w hotliście dla połączonych buforów]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+off+`
+
+* [[option_weechat.look.hotlist_prefix]] *weechat.look.hotlist_prefix*
+** opis: pass:none[ciąg znaków wyświetlany na początku hotlisty]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+"H: "+`
+
+* [[option_weechat.look.hotlist_remove]] *weechat.look.hotlist_remove*
+** opis: pass:none[usuwa bufor z hotlisty: buffer = usuwa bufor po buforze, merged = usuwa wszystkie widoczne połączone bufory]
+** typ: liczba
+** wartości: buffer, merged
+** domyślna wartość: `+merged+`
+
+* [[option_weechat.look.hotlist_short_names]] *weechat.look.hotlist_short_names*
+** opis: pass:none[jeśli ustawione, używa krótkich nazw do wyświetlania nazw buforów w hotliście (zaczyna po pierwszym wystąpieniu '.' w nazwie)]
** typ: bool
** wartości: on, off
** domyślna wartość: `+on+`
-* [[option_fset.look.format_number]] *fset.look.format_number*
-** opis: pass:none[numer formatu użyty do wyświetlania opcji; jest dynamicznie zmieniany przy uzyciu skrótu ctrl-X w buforze fset]
+* [[option_weechat.look.hotlist_sort]] *weechat.look.hotlist_sort*
+** opis: pass:none[sortowanie hotlisty: group_time_*: grupuj po poziomie powiadomień (powiadomienia pierwsze) następnie sortuj po czasie, group_number_*: grupuj po poziomie powiadomień (powiadomienia pierwsze) następnie sortuj po numerze, number_*: sortuj po numerze; asc = sortowanie rosnące, desc = sortowanie malejące]
** typ: liczba
-** wartości: 1 .. 2
-** domyślna wartość: `+1+`
+** wartości: group_time_asc, group_time_desc, group_number_asc, group_number_desc, number_asc, number_desc
+** domyślna wartość: `+group_time_asc+`
-* [[option_fset.look.marked_string]] *fset.look.marked_string*
-** opis: pass:none[ciąg wyświetlany, kiedy opcja jest zaznaczona (w celu wykonania akcji na wielu opcjach)]
+* [[option_weechat.look.hotlist_suffix]] *weechat.look.hotlist_suffix*
+** opis: pass:none[ciąg znaków wyświetlany na końcu hotlisty]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+""+`
+
+* [[option_weechat.look.hotlist_unique_numbers]] *weechat.look.hotlist_unique_numbers*
+** opis: pass:none[zatrzymaj unikalne numery na hotliście (stosowane tylko dla elementów hotlisty, w których nazwa NIE jest wyświetlana po numerze)]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+on+`
+
+* [[option_weechat.look.hotlist_update_on_buffer_switch]] *weechat.look.hotlist_update_on_buffer_switch*
+** opis: pass:none[aktualizuj hotlistę podczas przełączania buforów]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+on+`
+
+* [[option_weechat.look.input_cursor_scroll]] *weechat.look.input_cursor_scroll*
+** opis: pass:none[ilość znaków wyświetlanych po końcu linii wejściowej, kiedy przewijamy do wyświetlenia końca linii]
+** typ: liczba
+** wartości: 0 .. 100
+** domyślna wartość: `+20+`
+
+* [[option_weechat.look.input_share]] *weechat.look.input_share*
+** opis: pass:none[udostępnia komendy, tekst lub oba w wejściach dla wszystkich buforów (nadal każdy bufor posiada lokalną historię)]
+** typ: liczba
+** wartości: none, commands, text, all
+** domyślna wartość: `+none+`
+
+* [[option_weechat.look.input_share_overwrite]] *weechat.look.input_share_overwrite*
+** opis: pass:none[jeśli ustawiono i wejście jest dzielone, zawsze nadpisuje wejście w danym buforze]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+off+`
+
+* [[option_weechat.look.input_undo_max]] *weechat.look.input_undo_max*
+** opis: pass:none[maksymalna ilość "cofnięć" dla linii poleceń dla bufora (0 = wyłączone)]
+** typ: liczba
+** wartości: 0 .. 65535
+** domyślna wartość: `+32+`
+
+* [[option_weechat.look.item_away_message]] *weechat.look.item_away_message*
+** opis: pass:none[wyświetla wiadomość o nieobecności dla serwera w elemencie paska]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+on+`
+
+* [[option_weechat.look.item_buffer_filter]] *weechat.look.item_buffer_filter*
+** opis: pass:none[ciąg użyty do pokazania, że część linii jest filtrowana w obecnym buforze (element paska "buffer_filter")]
** typ: ciąg
** wartości: dowolny ciąg
** domyślna wartość: `+"*"+`
-* [[option_fset.look.scroll_horizontal]] *fset.look.scroll_horizontal*
-** opis: pass:none[przewinięcie w lewo/prawo w buforze fset (procent szerokości)]
+* [[option_weechat.look.item_buffer_zoom]] *weechat.look.item_buffer_zoom*
+** opis: pass:none[ciąg użyty do pokazania przybliżenia w połączonym buforze (element paska "buffer_zoom")]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+"!"+`
+
+* [[option_weechat.look.item_mouse_status]] *weechat.look.item_mouse_status*
+** opis: pass:none[ciąg użyty do pokazania czy obsługa myszy jest włączona (element paska "mouse_status")]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+"M"+`
+
+* [[option_weechat.look.item_time_format]] *weechat.look.item_time_format*
+** opis: pass:none[format czasu dla elementu paska "time" (listę dostępnych specyfikatorów daty/czasu można znaleźć w man strftime) (uwaga: zawartość jest przetwarzana, dlatego można użyć kolorów w formacie "${color:xxx}", zobacz /help eval)]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+"%H:%M"+`
+
+* [[option_weechat.look.jump_current_to_previous_buffer]] *weechat.look.jump_current_to_previous_buffer*
+** opis: pass:none[skocz do poprzednio wyświetlanego bufora, podczas skoku do obecnego bufora o numerze za pomocą /buffer *N (gdzie N jest numerem bufora), aby łatwo przełączyć się do kolejnego bufora, następnie wracając do obecnego]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+on+`
+
+* [[option_weechat.look.jump_previous_buffer_when_closing]] *weechat.look.jump_previous_buffer_when_closing*
+** opis: pass:none[skocz do poprzedniego buforu, po zamknięciu obecnego (jeśli wyłączona, wtedy skocz do buforu numer -1)]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+on+`
+
+* [[option_weechat.look.jump_smart_back_to_buffer]] *weechat.look.jump_smart_back_to_buffer*
+** opis: pass:none[wróć do początkowego buforu po dotarciu na koniec hotlisty]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+on+`
+
+* [[option_weechat.look.key_bind_safe]] *weechat.look.key_bind_safe*
+** opis: pass:none[pozwala przypisać tylko "bezpieczne" skróty (zaczynające się od kodu ctrl albo meta)]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+on+`
+
+* [[option_weechat.look.key_grab_delay]] *weechat.look.key_grab_delay*
+** opis: pass:none[domyślne opóźnienie (w milisekundach) do przechwycenia klawiszy (za pomocą domyślnego skrótu alt-k); to opóźnienie może zostać nadpisane przez komendę /input (zobacz /help input)]
** typ: liczba
-** wartości: 1 .. 100
+** wartości: 1 .. 10000
+** domyślna wartość: `+800+`
+
+* [[option_weechat.look.mouse]] *weechat.look.mouse*
+** opis: pass:none[włącza wsparcie dla myszy]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+off+`
+
+* [[option_weechat.look.mouse_timer_delay]] *weechat.look.mouse_timer_delay*
+** opis: pass:none[odstęp (w milisekundach) przechwytywania zdarzeń myszy: WeeChat zawsze poczeka ten czas przed obsługą zdarzenia]
+** typ: liczba
+** wartości: 1 .. 10000
+** domyślna wartość: `+100+`
+
+* [[option_weechat.look.nick_color_force]] *weechat.look.nick_color_force*
+** opis: pass:none[wymusza kolory dla niektórych nicków: hash połączony z nickiem w celu znalezienia koloru nie zostanie użyty dla tych nicków (format: "nick1:kolor1;nick2:kolor2"); wyszukiwanie nicków odbywa się na zasadzie dopasowania porównania dokładnego, następnie z małych liter, jest więc możliwe używanie tylko małych liter w tej opcji; kolor może zawierać tło w formacie "tekst,tło", na przykład "yellow,red"]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+""+`
+
+* [[option_weechat.look.nick_color_hash]] *weechat.look.nick_color_hash*
+** opis: pass:none[algorytm haszujący używany do znalezienia koloru dla nicka: djb2 = odmiana djb2 (pozycja liter ma znaczenie: anagramy nicka mają różne kolory), djb2_32 = wariant djb2 używający 32 bitowej liczby zamiast 64 bitowej, sum = suma liter, sum_32 = suma liter używając 32 bitowej liczby zamiast 64 bitowej]
+** typ: liczba
+** wartości: djb2, sum, djb2_32, sum_32
+** domyślna wartość: `+djb2+`
+
+* [[option_weechat.look.nick_color_hash_salt]] *weechat.look.nick_color_hash_salt*
+** opis: pass:none[sól dla algorytmu haszującego używanego do wyszukiwania kolorów nicków (nick jest dodawany do tej soli i algorytm pracuje na tym ciągu); zmiana wartości powoduje przetasowanie kolorów nicków]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+""+`
+
+* [[option_weechat.look.nick_color_stop_chars]] *weechat.look.nick_color_stop_chars*
+** opis: pass:none[znaki używane do zatrzymania odczytywania koloru nicka (przynajmniej jeden znak poza tą listą musi się znajdować przed zatrzymaniem) (przykład: nick "|nick|away" ze znakami "|" zwróci kolor nicka "|nick"); ta opcja ma wpływ na opcję weechat.look.nick_color_force, nick z wymuszonym kolorem nie może zawierać znaków ignorowanych przez tą opcję]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+"_|["+`
+
+* [[option_weechat.look.nick_prefix]] *weechat.look.nick_prefix*
+** opis: pass:none[teks wyświetlany przed nickiem w prefiksie wiadomości, przykład: "<"]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+""+`
+
+* [[option_weechat.look.nick_suffix]] *weechat.look.nick_suffix*
+** opis: pass:none[teks wyświetlany za nickiem w prefiksie wiadomości, przykład: przykład: ">"]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+""+`
+
+* [[option_weechat.look.paste_auto_add_newline]] *weechat.look.paste_auto_add_newline*
+** opis: pass:none[automatyczne dodawanie nowej linii na końcu wklejanego tesktu jeśli wklejane są co najmniej dwie linie i jeśli potwierdzenie jest wmagane]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+on+`
+
+* [[option_weechat.look.paste_bracketed]] *weechat.look.paste_bracketed*
+** opis: pass:none[włącza tryb terminala "bracketed paste mode" (nie wszystkie terminale/multiplexery ją wspierają): w tym trybie, wklejany tekst jest otoczony sekwencją kontrolna, dzięki czemu WeeChat może odróżnić tekst wklejony od wpisanego ("ESC[200~", wklejony tekst, "ESC[201~")]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+on+`
+
+* [[option_weechat.look.paste_bracketed_timer_delay]] *weechat.look.paste_bracketed_timer_delay*
+** opis: pass:none[wymusza zakończenie ograniczenia wklejanego tekstu po upływie określonego czasu (w sekundach) jeśli sekwencja kontrolna zakańczająca wklejany tekst ("ESC[201~") nie została otrzymana na czas]
+** typ: liczba
+** wartości: 1 .. 60
** domyślna wartość: `+10+`
-* [[option_fset.look.show_plugins_desc]] *fset.look.show_plugins_desc*
-** opis: pass:none[pokazuje opis opcji wtyczki (plugins.desc.*)]
+* [[option_weechat.look.paste_max_lines]] *weechat.look.paste_max_lines*
+** opis: pass:none[maksymalna ilość linii do wklejenia bez pytania użytkownika (-1 = wyłącz tą opcję); ta opcja jest używana tylko jesli element "input_paste" jest użyty w przynajmniej jednym pasku (domyślnie używany jest w pasku "input")]
+** typ: liczba
+** wartości: -1 .. 2147483647
+** domyślna wartość: `+1+`
+
+* [[option_weechat.look.prefix_action]] *weechat.look.prefix_action*
+** opis: pass:none[przedrostek dla wiadomości o akcjach (uwaga: zawartość jest przetwarzana, dlatego można użyć kolorów w formacie "${color:xxx}", zobacz /help eval)]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+" *"+`
+
+* [[option_weechat.look.prefix_align]] *weechat.look.prefix_align*
+** opis: pass:none[wyrównanie przedrostków (none, left, right (domyślne))]
+** typ: liczba
+** wartości: none, left, right
+** domyślna wartość: `+right+`
+
+* [[option_weechat.look.prefix_align_max]] *weechat.look.prefix_align_max*
+** opis: pass:none[maksymalny rozmiar przedrostka (0 = brak maksymalnego rozmiaru)]
+** typ: liczba
+** wartości: 0 .. 128
+** domyślna wartość: `+0+`
+
+* [[option_weechat.look.prefix_align_min]] *weechat.look.prefix_align_min*
+** opis: pass:none[minimalny rozmiar przedrostka]
+** typ: liczba
+** wartości: 0 .. 128
+** domyślna wartość: `+0+`
+
+* [[option_weechat.look.prefix_align_more]] *weechat.look.prefix_align_more*
+** opis: pass:none[znak wyświetlany jeśli przedrostek został obcięty (dokładnie jeden znak na ekranie)]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+"+"+`
+
+* [[option_weechat.look.prefix_align_more_after]] *weechat.look.prefix_align_more_after*
+** opis: pass:none[znak wyświetlany jako skrócenie (domyślnie "+") po tekście (zamiast spacji, która powinna zostać wyświetlona); jeśli wyłączone, znak zastępuje ostatni znak tekstu]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+on+`
+
+* [[option_weechat.look.prefix_buffer_align]] *weechat.look.prefix_buffer_align*
+** opis: pass:none[wyrównanie przedrostków nazw buforów, kiedy wiele buforów jest połączonych z tą samą nazwą (none, left, right (domyślnie))]
+** typ: liczba
+** wartości: none, left, right
+** domyślna wartość: `+right+`
+
+* [[option_weechat.look.prefix_buffer_align_max]] *weechat.look.prefix_buffer_align_max*
+** opis: pass:none[maksymalna długość nazwy bufora, kiedy wiele buforów jest połączonych z identycznym numerem (0 = brak maksymalnej długości)]
+** typ: liczba
+** wartości: 0 .. 128
+** domyślna wartość: `+0+`
+
+* [[option_weechat.look.prefix_buffer_align_more]] *weechat.look.prefix_buffer_align_more*
+** opis: pass:none[znak wyświetlany jeśli nazwa bufora została obcięta (kiedy wiele buforów jest scalonych z takim samym numerem)(dokładnie jeden znak na ekranie)]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+"+"+`
+
+* [[option_weechat.look.prefix_buffer_align_more_after]] *weechat.look.prefix_buffer_align_more_after*
+** opis: pass:none[znak wyświetlany jako skrócenie (domyślnie "+") po tekście (zamiast spacji, która powinna zostać wyświetlona); jeśli wyłączone, znak zastępuje ostatni znak tekstu]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+on+`
+
+* [[option_weechat.look.prefix_error]] *weechat.look.prefix_error*
+** opis: pass:none[przedrostek dla wiadomości o błędach (uwaga: zawartość jest przetwarzana, dlatego można użyć kolorów w formacie "${color:xxx}", zobacz /help eval)]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+"=!="+`
+
+* [[option_weechat.look.prefix_join]] *weechat.look.prefix_join*
+** opis: pass:none[prefiks dla wiadomości o wejściach na kanał (uwaga: zawartość jest przetwarzana, dlatego można użyć kolorów w formacie "${color:xxx}", zobacz /help eval)]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+"-->"+`
+
+* [[option_weechat.look.prefix_network]] *weechat.look.prefix_network*
+** opis: pass:none[przedrostek dla wiadomości sieciowych (uwaga: zawartość jest przetwarzana, dlatego można użyć kolorów w formacie "${color:xxx}", zobacz /help eval)]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+"--"+`
+
+* [[option_weechat.look.prefix_quit]] *weechat.look.prefix_quit*
+** opis: pass:none[prefiks dla wiadomości o wyjściach (uwaga: zawartość jest przetwarzana, dlatego można użyć kolorów w formacie "${color:xxx}", zobacz /help eval)]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+"<--"+`
+
+* [[option_weechat.look.prefix_same_nick]] *weechat.look.prefix_same_nick*
+** opis: pass:none[prefiks wyświetlany dla wiadomości z takim samym nickiem jak poprzednia ale nie jak następna wiadomość: spacja " " chowa prefiks, inny ciąg wyświetlany zamiast prefiksu lub pusty ciąg dla wyłączenia opcji (wyświetlanie przedrostka)]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+""+`
+
+* [[option_weechat.look.prefix_same_nick_middle]] *weechat.look.prefix_same_nick_middle*
+** opis: pass:none[prefiks wyświetlany dla wiadomości z takim samym nickiem jak poprzednia i następna wiadomość: spacja " " chowa prefiks, inny ciąg wyświetlany zamiast prefiksu lub pusty ciąg dla wyłączenia opcji (wyświetlanie przedrostka)]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+""+`
+
+* [[option_weechat.look.prefix_suffix]] *weechat.look.prefix_suffix*
+** opis: pass:none[ciąg wyświetlany po przedrostku]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+"|"+`
+
+* [[option_weechat.look.quote_nick_prefix]] *weechat.look.quote_nick_prefix*
+** opis: pass:none[teks wyświetlany przed nickiem podczas cytowania wiadomości (zobacz /help cursor)]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+"<"+`
+
+* [[option_weechat.look.quote_nick_suffix]] *weechat.look.quote_nick_suffix*
+** opis: pass:none[teks wyświetlany za nickiem podczas cytowania wiadomości (zobacz /help cursor)]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+">"+`
+
+* [[option_weechat.look.quote_time_format]] *weechat.look.quote_time_format*
+** opis: pass:none[format czasu podczas cytowania wiadomości (zobacz /help cursor)]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+"%H:%M:%S"+`
+
+* [[option_weechat.look.read_marker]] *weechat.look.read_marker*
+** opis: pass:none[używaj znacznika (linii albo znaku) do zaznaczania pierwszej nieprzeczytanej linii w buforze]
+** typ: liczba
+** wartości: none, line, char
+** domyślna wartość: `+line+`
+
+* [[option_weechat.look.read_marker_always_show]] *weechat.look.read_marker_always_show*
+** opis: pass:none[zawsze pokazuj wskaźnik przeczytania, nawet jeśli jest po ostatniej linii w buforze]
** typ: bool
** wartości: on, off
** domyślna wartość: `+off+`
-* [[option_fset.look.sort]] *fset.look.sort*
-** opis: pass:none[oddzielona przecinkami lista pól do sortowania opcji (listę pól można znaleźć w wyniku polecenia /help fset); znak "-" użyty przed nazwą pola odwraca kolejność , znak "~" może zostać użyty do porównania bez uwzględniania wielkości znaków; na przykład: "-~name" dla odwrócenia wyniku sortowania z porównaniem nazwy bez uwzględnienia wielkości znaków]
+* [[option_weechat.look.read_marker_string]] *weechat.look.read_marker_string*
+** opis: pass:none[ciąg używany do rysowania znacznika przeczytanej linii (ciąg jest powtarzany do końca linii)]
** typ: ciąg
** wartości: dowolny ciąg
-** domyślna wartość: `+"~name"+`
+** domyślna wartość: `+"- "+`
-* [[option_fset.look.unmarked_string]] *fset.look.unmarked_string*
-** opis: pass:none[ciąg znaków wyświetlany dla niezaznaczonej opcji]
+* [[option_weechat.look.read_marker_update_on_buffer_switch]] *weechat.look.read_marker_update_on_buffer_switch*
+** opis: pass:none[aktualizuj wskaźnik przeczytania podczas przełączania buforów]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+on+`
+
+* [[option_weechat.look.save_config_on_exit]] *weechat.look.save_config_on_exit*
+** opis: pass:none[zapisz plik konfiguracyjny przy wyjściu]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+on+`
+
+* [[option_weechat.look.save_config_with_fsync]] *weechat.look.save_config_with_fsync*
+** opis: pass:none[użyj fsync do synchronizacji konfiguracji na zewnętrznym nośniku (zobacz man fsync); jest to wolniejsze ale powinno zapobiec utracie danych w przypadku zaniku napięcia podczas zapisu danych konfiguracyjnych]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+off+`
+
+* [[option_weechat.look.save_layout_on_exit]] *weechat.look.save_layout_on_exit*
+** opis: pass:none[zapisz układ przy wyjściu (bufory, okna lub oba)]
+** typ: liczba
+** wartości: none, buffers, windows, all
+** domyślna wartość: `+none+`
+
+* [[option_weechat.look.scroll_amount]] *weechat.look.scroll_amount*
+** opis: pass:none[ile linii przewijać za pomocą scroll_up i scroll_down]
+** typ: liczba
+** wartości: 1 .. 2147483647
+** domyślna wartość: `+3+`
+
+* [[option_weechat.look.scroll_bottom_after_switch]] *weechat.look.scroll_bottom_after_switch*
+** opis: pass:none[przewiń na spód okna po przełączeniu do innego bufora (nie zapamiętuj pozycji w oknie); przewijanie wykonywane jest tylko w buforach ze sformatowaną zawartością]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+off+`
+
+* [[option_weechat.look.scroll_page_percent]] *weechat.look.scroll_page_percent*
+** opis: pass:none[procent ekranu do przewinięcia podczas przewijania strony w górę lub w dół (na przykład 100 oznacza jedną stronę, 50 pół strony)]
+** typ: liczba
+** wartości: 1 .. 100
+** domyślna wartość: `+100+`
+
+* [[option_weechat.look.search_text_not_found_alert]] *weechat.look.search_text_not_found_alert*
+** opis: pass:none[powiadamia użytkownika, kiedy wyszukiwany tekst nie został znaleziony w buforze]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+on+`
+
+* [[option_weechat.look.separator_horizontal]] *weechat.look.separator_horizontal*
+** opis: pass:none[znak używany do rysowania poziomych separatorów dookoła pasków i okien (pusta wartość oznacza rysowanie prawdziwych linii za pomocą ncurses, jednak może powodować błędy w zaznaczaniu URLi w niektórych terminalach); szerokość na ekranie musi wynosić dokładnie jeden znak]
** typ: ciąg
** wartości: dowolny ciąg
-** domyślna wartość: `+" "+`
+** domyślna wartość: `+"-"+`
-* [[option_fset.look.use_color_value]] *fset.look.use_color_value*
-** opis: pass:none[użyj koloru do wyświetlenia wartości dla opcji koloru]
+* [[option_weechat.look.separator_vertical]] *weechat.look.separator_vertical*
+** opis: pass:none[znak używany do rysowania poziomych separatorów dookoła pasków i okien (pusta wartość oznacza rysowanie prawdziwych linii za pomocą ncurses); szerokość na ekranie musi wynosić dokładnie jeden znak]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+""+`
+
+* [[option_weechat.look.tab_width]] *weechat.look.tab_width*
+** opis: pass:none[liczba spacji używana do wyświetlania tabulacji w wiadomościach]
+** typ: liczba
+** wartości: 1 .. 64
+** domyślna wartość: `+1+`
+
+* [[option_weechat.look.time_format]] *weechat.look.time_format*
+** opis: pass:none[format czasu dla dat, konwertowany do ciągu i wyświetlany w wiadomościach (zobacz man strftime dla specyfikatorów daty/czasu)]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+"%a, %d %b %Y %T"+`
+
+* [[option_weechat.look.window_auto_zoom]] *weechat.look.window_auto_zoom*
+** opis: pass:none[automatycznie skup się na obecnym oknie jeśli terminal stanie się zbyt mały do wyświetlenia wszystkich okien (użyj alt-z w celu oddalenia okien, kiedy terminal będzie dostatecznie duży)]
** typ: bool
** wartości: on, off
** domyślna wartość: `+off+`
-* [[option_fset.look.use_keys]] *fset.look.use_keys*
-** opis: pass:none[użyj skrótu alt+X w buforze fset, aby wykonać akcję na opcji; jeśli wyłączone dozwolone jest tylko używanie linii poleceń]
+* [[option_weechat.look.window_separator_horizontal]] *weechat.look.window_separator_horizontal*
+** opis: pass:none[wyświetl poziomy separator pomiędzy oknami]
** typ: bool
** wartości: on, off
** domyślna wartość: `+on+`
-* [[option_fset.look.use_mute]] *fset.look.use_mute*
-** opis: pass:none[użyj komendy /mute do ustawienia opcji]
+* [[option_weechat.look.window_separator_vertical]] *weechat.look.window_separator_vertical*
+** opis: pass:none[wyświetl pionowy separator pomiędzy oknami]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+on+`
+
+* [[option_weechat.look.window_title]] *weechat.look.window_title*
+** opis: pass:none[tytuł dla okna (terminal dla GUI Curses), ustawiany na starcie; pusty ciąg pozostawi tytuł bez zmian (zawartość jest przetwarzana, zobacz /help eval); przykład: "WeeChat ${info:version}"]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+""+`
+
+* [[option_weechat.look.word_chars_highlight]] *weechat.look.word_chars_highlight*
+** opis: pass:none[oddzielona przecinkami lista znaków (lub zakres znaków) rozważanych jako część słowa podświetlenia; każdy element może być pojedynczym znakiem, zakresem znaków (format: a-z), klasą znaków (przykład "alnum", zobacz man wctype); znak "!" przed elementem neguje go (znak NIE jest uznawany za część słowa); wartość "*" pasuje do dowolnego znaku; znaki unikodu są dozwolone w formacie \u1234, na przykład \u00A0 dla niełamliwej spacji (wspierane formaty można znaleźć w /help print)]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+"!\u00A0,-,_,|,alnum"+`
+
+* [[option_weechat.look.word_chars_input]] *weechat.look.word_chars_input*
+** opis: pass:none[oddzielona przecinkami lista znaków (lub zakres znaków) rozważanych jako część słowa linii poleceń; każdy element może być pojedynczym znakiem, zakresem znaków (format: a-z), klasą znaków (przykład "alnum", zobacz man wctype); znak "!" przed elementem neguje go (znak NIE jest uznawany za część słowa); wartość "*" pasuje do dowolnego znaku; znaki unikodu są dozwolone w formacie \u1234, na przykład \u00A0 dla niełamliwej spacji (wspierane formaty można znaleźć w /help print)]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+"!\u00A0,-,_,|,alnum"+`
+
+* [[option_weechat.network.connection_timeout]] *weechat.network.connection_timeout*
+** opis: pass:none[czas oczekiwania (w sekundach) na połączenie ze zdalnym serwerem (wykonywane w procesie potomnym)]
+** typ: liczba
+** wartości: 1 .. 2147483647
+** domyślna wartość: `+60+`
+
+* [[option_weechat.network.gnutls_ca_system]] *weechat.network.gnutls_ca_system*
+** opis: pass:none[ładuje zaufane, systemowe urzędy certyfikacyjne podczas uruchomienia; można to wyłączyć w celu oszczędzenia pamięci tylko jeśli połączenia SSL nie są używane]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+on+`
+
+* [[option_weechat.network.gnutls_ca_user]] *weechat.network.gnutls_ca_user*
+** opis: pass:none[dodatkowy plik(i) z urzędami certyfikacji; wiele plików można oddzielić dwukropkiem (każda ścieżka jest przetwarzana, zobacz funkcję string_eval_path_home w opisie API wtyczek)]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+""+`
+
+* [[option_weechat.network.gnutls_handshake_timeout]] *weechat.network.gnutls_handshake_timeout*
+** opis: pass:none[czas oczekiwania (w sekundach) na uwierzytelnienie gnutls]
+** typ: liczba
+** wartości: 1 .. 2147483647
+** domyślna wartość: `+30+`
+
+* [[option_weechat.network.proxy_curl]] *weechat.network.proxy_curl*
+** opis: pass:none[nazwa pośrednika używanego do pobierania URLi za pomocą Curl (używane do pobierania listy skryptów oraz w skryptach wywołujących funkcję hook_process); pośrednik musi być zdefiniowany za pomocą komendy /proxy]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+""+`
+
+* [[option_weechat.plugin.autoload]] *weechat.plugin.autoload*
+** opis: pass:none[oddzielona przecinkami lista wtyczek do automatycznego załadowania podczas startu, "*" oznacza wszystkie znalezione wtyczki, nazwa zaczynająca się od "!" powoduje nie ładowanie tej wtyczki, wildcard "*" jest dozwolony w nazwach (przykłady: "*" lub "*,!lua,!tcl")]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+"*"+`
+
+* [[option_weechat.plugin.extension]] *weechat.plugin.extension*
+** opis: pass:none[oddzielona przecinkami lista rozszerzeń nazw plików dla wtyczek]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+".so,.dll"+`
+
+* [[option_weechat.plugin.path]] *weechat.plugin.path*
+** opis: pass:none[ścieżka do wtyczek (ścieżka jest przetwarzana, zobacz funkcje string_eval_path_home w opisie API wtyczek)]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+"${weechat_data_dir}/plugins"+`
+
+* [[option_weechat.plugin.save_config_on_unload]] *weechat.plugin.save_config_on_unload*
+** opis: pass:none[zapisuj pliki konfiguracyjne przy wyładowywaniu wtyczek]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+on+`
+
+* [[option_weechat.signal.sighup]] *weechat.signal.sighup*
+** opis: pass:none[komenda wykonana po otrzymaniu sygnału, wiele komend można oddzielić średnikiem (uwaga: zawartość jest przetwarzana, zobacz /help eval)]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+"${if:${info:weechat_headless}?/reload:/quit -yes}"+`
+
+* [[option_weechat.signal.sigquit]] *weechat.signal.sigquit*
+** opis: pass:none[komenda wykonana po otrzymaniu sygnału, wiele komend można oddzielić średnikiem (uwaga: zawartość jest przetwarzana, zobacz /help eval)]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+"/quit -yes"+`
+
+* [[option_weechat.signal.sigterm]] *weechat.signal.sigterm*
+** opis: pass:none[komenda wykonana po otrzymaniu sygnału, wiele komend można oddzielić średnikiem (uwaga: zawartość jest przetwarzana, zobacz /help eval)]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+"/quit -yes"+`
+
+* [[option_weechat.signal.sigusr1]] *weechat.signal.sigusr1*
+** opis: pass:none[komenda wykonana po otrzymaniu sygnału, wiele komend można oddzielić średnikiem (uwaga: zawartość jest przetwarzana, zobacz /help eval)]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+""+`
+
+* [[option_weechat.signal.sigusr2]] *weechat.signal.sigusr2*
+** opis: pass:none[komenda wykonana po otrzymaniu sygnału, wiele komend można oddzielić średnikiem (uwaga: zawartość jest przetwarzana, zobacz /help eval)]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+""+`
+
+* [[option_weechat.startup.command_after_plugins]] *weechat.startup.command_after_plugins*
+** opis: pass:none[komenda wykonana kiedy WeeChat jest uruchamiany, po załadowaniu wtyczek; wiele komend można oddzielić średnikami (uwaga: zawartość jest przetwarzana, zobacz /help eval)]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+""+`
+
+* [[option_weechat.startup.command_before_plugins]] *weechat.startup.command_before_plugins*
+** opis: pass:none[komenda wykonana kiedy WeeChat jest uruchamiany, przed załadowaniem wtyczek; wiele komend można oddzielić średnikami (uwaga: zawartość jest przetwarzana, zobacz /help eval)]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+""+`
+
+* [[option_weechat.startup.display_logo]] *weechat.startup.display_logo*
+** opis: pass:none[wyświetl logo WeeChat podczas uruchamiania]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+on+`
+
+* [[option_weechat.startup.display_version]] *weechat.startup.display_version*
+** opis: pass:none[wyświetl wersję WeeChat podczas uruchamiania]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+on+`
+
+* [[option_weechat.startup.sys_rlimit]] *weechat.startup.sys_rlimit*
+** opis: pass:none[ustawia limit zasobów dla procesu WeeChat, format: "res1:limit1,res2:limit2"; nazwa zasobu to końcówka stałej (RLIMIT_XXX) pisana małymi literami (wartości można znaleźć w man setrlimit); limit -1 oznacza "nieograniczone"; przykład ustawienie braku limitu dla rdzenia i maksymalnie 1 GB dla pamięci wirtualnej: "core:-1,as:1000000000"]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+""+`
+// end::weechat_options[]
+
+// tag::xfer_options[]
+* [[option_xfer.color.status_aborted]] *xfer.color.status_aborted*
+** opis: pass:none[kolor statusu "aborted"]
+** typ: kolor
+** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
+** domyślna wartość: `+lightred+`
+
+* [[option_xfer.color.status_active]] *xfer.color.status_active*
+** opis: pass:none[kolor statusu "active"]
+** typ: kolor
+** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
+** domyślna wartość: `+lightblue+`
+
+* [[option_xfer.color.status_connecting]] *xfer.color.status_connecting*
+** opis: pass:none[kolor statusu "connecting"]
+** typ: kolor
+** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
+** domyślna wartość: `+yellow+`
+
+* [[option_xfer.color.status_done]] *xfer.color.status_done*
+** opis: pass:none[kolor statusu "done"]
+** typ: kolor
+** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
+** domyślna wartość: `+lightgreen+`
+
+* [[option_xfer.color.status_failed]] *xfer.color.status_failed*
+** opis: pass:none[kolor statusu "failed"]
+** typ: kolor
+** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
+** domyślna wartość: `+lightred+`
+
+* [[option_xfer.color.status_waiting]] *xfer.color.status_waiting*
+** opis: pass:none[kolor statusu "waiting"]
+** typ: kolor
+** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
+** domyślna wartość: `+lightcyan+`
+
+* [[option_xfer.color.text]] *xfer.color.text*
+** opis: pass:none[kolor tekstu w buforze xfer]
+** typ: kolor
+** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
+** domyślna wartość: `+default+`
+
+* [[option_xfer.color.text_bg]] *xfer.color.text_bg*
+** opis: pass:none[kolor tła w buforze xfer]
+** typ: kolor
+** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
+** domyślna wartość: `+default+`
+
+* [[option_xfer.color.text_selected]] *xfer.color.text_selected*
+** opis: pass:none[kolor tekstu zaznaczonej linii w buforze xfer]
+** typ: kolor
+** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "%" dla mrygania, "." "dim" przyciemnienie (połowa jasności), "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie
+** domyślna wartość: `+white+`
+
+* [[option_xfer.file.auto_accept_chats]] *xfer.file.auto_accept_chats*
+** opis: pass:none[automatycznie akceptuj prośby o rozmowę (ostrożnie!)]
** typ: bool
** wartości: on, off
** domyślna wartość: `+off+`
-// end::fset_options[]
+
+* [[option_xfer.file.auto_accept_files]] *xfer.file.auto_accept_files*
+** opis: pass:none[automatycznie akceptuj pliki przychodzące (ostrożnie!)]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+off+`
+
+* [[option_xfer.file.auto_accept_nicks]] *xfer.file.auto_accept_nicks*
+** opis: pass:none[oddzielona przecinkami lista nicków, od których przychodzące pliki i rozmowy są automatycznie akceptowane; format to "serwer.nick" (dla konkretnego serwera) lub "nick" (dla wszystkich serwerów; przykład "libera.FlashCode,andrew"]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+""+`
+
+* [[option_xfer.file.auto_check_crc32]] *xfer.file.auto_check_crc32*
+** opis: pass:none[automatycznie sprawdzaj sumę CRC32 dla pliku, jeśli znajduje się ona w jego nazwie (osiem znaków heksadecymalnych)]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+off+`
+
+* [[option_xfer.file.auto_rename]] *xfer.file.auto_rename*
+** opis: pass:none[zmień nazwę pliku przychodzącego jeśli juz istnieje (dodaj ".1", ".2", ...)]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+on+`
+
+* [[option_xfer.file.auto_resume]] *xfer.file.auto_resume*
+** opis: pass:none[automatycznie wznów przesył po utracie połączenia]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+on+`
+
+* [[option_xfer.file.convert_spaces]] *xfer.file.convert_spaces*
+** opis: pass:none[zamień spacje na podkreślenia podczas wysyłania i odbierania plików]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+on+`
+
+* [[option_xfer.file.download_path]] *xfer.file.download_path*
+** opis: pass:none[ścieżka do zapisania przychodzących plików (ścieżka jest przetwarzana, zobacz funkcje string_eval_path_home w opisie API wtyczek)]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+"${weechat_data_dir}/xfer"+`
+
+* [[option_xfer.file.download_temporary_suffix]] *xfer.file.download_temporary_suffix*
+** opis: pass:none[sufiks tymczasowego pliku użyty podczas pobierania pliku, zostanie usunięty po pomyślnym transferze; pusty ciąg oznacza, że nie zostanie użyty żaden przyrostek podczas transferu pliku]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+".part"+`
+
+* [[option_xfer.file.upload_path]] *xfer.file.upload_path*
+** opis: pass:none[ścieżka do wczytywania plików podczas wysyłania (ścieżka jest przetwarzana, zobacz funkcje string_eval_path_home zobacz w opisie API wtyczek)]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+"~"+`
+
+* [[option_xfer.file.use_nick_in_filename]] *xfer.file.use_nick_in_filename*
+** opis: pass:none[użyj nicku nadawcy jako przedrostka w nazwie odebranego pliku]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+on+`
+
+* [[option_xfer.look.auto_open_buffer]] *xfer.look.auto_open_buffer*
+** opis: pass:none[automatycznie otwieraj bufor xfer, kiedy nowy xfer zostanie dodany do listy]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+on+`
+
+* [[option_xfer.look.progress_bar_size]] *xfer.look.progress_bar_size*
+** opis: pass:none[rozmiar paska postępu, w znakach (jeśli 0 pasek postępu zostanie wyłączony)]
+** typ: liczba
+** wartości: 0 .. 256
+** domyślna wartość: `+20+`
+
+* [[option_xfer.look.pv_tags]] *xfer.look.pv_tags*
+** opis: pass:none[oddzielona przecinkami lista tagów użytych w prywatnych wiadomościach na przykład: "notify_message", "notify_private" or "notify_highlight"]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+"notify_private"+`
+
+* [[option_xfer.network.blocksize]] *xfer.network.blocksize*
+** opis: pass:none[rozmiar bloku dla wysyłanych pakietów, w bajtach]
+** typ: liczba
+** wartości: 1024 .. 102400
+** domyślna wartość: `+65536+`
+
+* [[option_xfer.network.fast_send]] *xfer.network.fast_send*
+** opis: pass:none[nie czeka na potwierdzenie podczas wysyłania pliku]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+on+`
+
+* [[option_xfer.network.own_ip]] *xfer.network.own_ip*
+** opis: pass:none[Adres IP lub DNS użyty do wysłania pliku/rozmowy (jeśli pusty zostanie użyty adres IP lokalnego interfejsu)]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+""+`
+
+* [[option_xfer.network.port_range]] *xfer.network.port_range*
+** opis: pass:none[ogranicza wychodzące pliki/rozmowy do używania tylko portów w podanym zakresie (przydatne dla NAT) (składnia: pojedynczy port, np. 5000 lub zakres portów, np. 5000-5015, pusta wartość oznacza dowolny port, zaleca się stosowanie portów powyżej 1024, ponieważ niższe porty mogą być użyte tylko przez roota)]
+** typ: ciąg
+** wartości: dowolny ciąg
+** domyślna wartość: `+""+`
+
+* [[option_xfer.network.send_ack]] *xfer.network.send_ack*
+** opis: pass:none[wysyła ack podczas odbierania plików; jeśli wyłączone przesyłanie może się zawiesić jeśli nadawca czeka na ack (na przykład WeeChat wysyłający plik z opcją xfer.network.fast_send ustawioną na off); z drugiej strony, wyłączenie tej opcji może zapobiec zawieszeniu jeśli ack nie zostaną wysłane od razu do nadawcy]
+** typ: bool
+** wartości: on, off
+** domyślna wartość: `+on+`
+
+* [[option_xfer.network.speed_limit_recv]] *xfer.network.speed_limit_recv*
+** opis: pass:none[limit prędkości odbierania plików, w kilobajtach na sekundę (0 oznacza brak limitu)]
+** typ: liczba
+** wartości: 0 .. 2147483647
+** domyślna wartość: `+0+`
+
+* [[option_xfer.network.speed_limit_send]] *xfer.network.speed_limit_send*
+** opis: pass:none[limit prędkości wysyłania plików, w kilobajtach na sekundę (0 oznacza brak limitu)]
+** typ: liczba
+** wartości: 0 .. 2147483647
+** domyślna wartość: `+0+`
+
+* [[option_xfer.network.timeout]] *xfer.network.timeout*
+** opis: pass:none[czas oczekiwania na żądanie xfer (w sekundach)]
+** typ: liczba
+** wartości: 5 .. 2147483647
+** domyślna wartość: `+300+`
+// end::xfer_options[]
diff --git a/doc/sr/includes/autogen_user_commands.sr.adoc b/doc/sr/includes/autogen_user_commands.sr.adoc
index bae808605..9d974fb60 100644
--- a/doc/sr/includes/autogen_user_commands.sr.adoc
+++ b/doc/sr/includes/autogen_user_commands.sr.adoc
@@ -1072,36 +1072,40 @@ noопција: постављање логичке опције на ’off’
* `+alias+`: исписује, додаје или уклања алијасе команди
----
-/alias list [<алијас>]
- add <алијас> [<команда>[;<команда>...]]
- addcompletion <довршавање> <алијас> [<команда>[;<команда>...]]
- del <алијас> [<алијас>...]
-
- list: исписује алијасе (без аргумента, приказује се ова листа)
- add: додавање алијаса
-addcompletion: додавање алијаса са кориснички дефинисаним довршавањем
- del: брисање алијаса
- completion: довршавање за алијас: довршавање се подразумевано врши са target командом
- напомена: за довршавање постојеће команде можете да употребите %%команда
- алијас: име алијаса
- команда: име команде са аргументима (више команди може да се раздвоји тачка запетама)
-
-Напомена: у команди се замењују специјалне променљиве:
- $n: аргумент ’n’ (између 1 и 9)
- $-m: аргументи од 1 до ’m’
- $n-: аргументи од ’n’ до последњег
- $n-m: аргументи од ’n’ до ’m’
- $*: сви аргументи
- $~: последњи аргумент
- $var: где је „var” локална променљива или бафер (погледајте /buffer listvar)
- примери: $nick, $channel, $server, $plugin, $name
+/alias list [<alias>]
+ add <alias> [<command>[;<command>...]]
+ addcompletion <completion> <alias> [<command>[;<command>...]]
+ del <alias> [<alias>...]
+ rename <alias> <new_alias>
+
+ list: list aliases (without argument, this list is displayed)
+ add: add an alias
+addcompletion: add an alias with a custom completion
+ del: delete an alias
+ rename: rename an alias
+ completion: completion for alias: by default completion is done with target command
+ note: you can use %%command to use completion of an existing command
+ alias: name of alias
+ command: command name with arguments (many commands can be separated by semicolons)
+
+Note: in command, special variables are replaced:
+ $n: argument 'n' (between 1 and 9)
+ $-m: arguments from 1 to 'm'
+ $n-: arguments from 'n' to last
+ $n-m: arguments from 'n' to 'm'
+ $*: all arguments
+ $~: last argument
+ $var: where "var" is a local variable of buffer (see /buffer listvar)
+ examples: $nick, $channel, $server, $plugin, $name
-Примери:
- алијас /split на поделу прозора по хоризонтали:
+Examples:
+ alias /split to split window horizontally:
/alias add split /window splith
- алијас /hello да се каже „hello” на свим каналима осим на #weechat:
+ alias /hello to say "hello" on all channels but not on #weechat:
/alias add hello /allchan -exclude=#weechat hello
- алијас /forcejoin да пошаље IRC команду „forcejoin” са довршавањем /sajoin:
+ rename alias "hello" to "Hello":
+ /alias rename hello Hello
+ alias /forcejoin to send IRC command "forcejoin" with completion of /sajoin:
/alias addcompletion %%sajoin forcejoin /quote forcejoin
----
// end::alias_commands[]
diff --git a/doc/sr/includes/autogen_user_default_aliases.sr.adoc b/doc/sr/includes/autogen_user_default_aliases.sr.adoc
index 5d38cbb9c..82ff63080 100644
--- a/doc/sr/includes/autogen_user_default_aliases.sr.adoc
+++ b/doc/sr/includes/autogen_user_default_aliases.sr.adoc
@@ -8,37 +8,37 @@
|===
| Alias | Команда | Довршавање
-| /AAWAY | /allserv /away | -
-| /ANICK | /allserv /nick | -
-| /BEEP | /print -beep | -
-| /BYE | /quit | -
-| /C | /buffer clear | -
-| /CL | /buffer clear | -
-| /CLOSE | /buffer close | -
-| /CHAT | /dcc chat | -
-| /EXIT | /quit | -
-| /IG | /ignore | -
-| /J | /join | -
-| /K | /kick | -
-| /KB | /kickban | -
-| /LEAVE | /part | -
-| /M | /msg | -
-| /MUB | /unban * | -
-| /MSGBUF | /command -buffer $1 * /input send $2- | %(buffers_plugins_names)
-| /N | /names | -
-| /Q | /query | -
-| /REDRAW | /window refresh | -
-| /SAY | /msg * | -
-| /SIGNOFF | /quit | -
-| /T | /topic | -
-| /UB | /unban | -
-| /UMODE | /mode $nick | -
-| /V | /command core version | -
-| /W | /who | -
-| /WC | /window close | -
-| /WI | /whois | -
-| /WII | /whois $1 $1 | -
-| /WM | /window merge | -
-| /WW | /whowas | -
+| /aaway | /allserv /away | -
+| /anick | /allserv /nick | -
+| /beep | /print -beep | -
+| /bye | /quit | -
+| /c | /buffer clear | -
+| /cl | /buffer clear | -
+| /close | /buffer close | -
+| /chat | /dcc chat | -
+| /exit | /quit | -
+| /ig | /ignore | -
+| /j | /join | -
+| /k | /kick | -
+| /kb | /kickban | -
+| /leave | /part | -
+| /m | /msg | -
+| /mub | /unban * | -
+| /msgbuf | /command -buffer $1 * /input send $2- | %(buffers_plugins_names)
+| /n | /names | -
+| /q | /query | -
+| /redraw | /window refresh | -
+| /say | /msg * | -
+| /signoff | /quit | -
+| /t | /topic | -
+| /ub | /unban | -
+| /umode | /mode $nick | -
+| /v | /command core version | -
+| /w | /who | -
+| /wc | /window close | -
+| /wi | /whois | -
+| /wii | /whois $1 $1 | -
+| /wm | /window merge | -
+| /ww | /whowas | -
|===
// end::default_aliases[]
diff --git a/doc/sr/includes/autogen_user_options.sr.adoc b/doc/sr/includes/autogen_user_options.sr.adoc
index a15762e53..7d6119c00 100644
--- a/doc/sr/includes/autogen_user_options.sr.adoc
+++ b/doc/sr/includes/autogen_user_options.sr.adoc
@@ -3,2109 +3,725 @@
// DO NOT EDIT BY HAND!
//
-// tag::sec_options[]
-* [[option_sec.crypt.cipher]] *sec.crypt.cipher*
-** опис: pass:none[шифра која се користи за шифрирање података (број након алгоритма је величина кључа у битовима)]
-** тип: целобројна
-** вредности: aes128, aes192, aes256
-** подразумевана вредност: `+aes256+`
+// tag::buflist_options[]
+* [[option_buflist.format.buffer]] *buflist.format.buffer*
+** опис: pass:none[формат сваке линије са бафером (напомена: садржај се израчунава, погледајте /help buflist); пример: стандардни формат за ставку траке „buflist” и само број бафера за број између великих заграда или за остале ставке траке („buflist2” и „buflist3”): „${if:${bar_item.name}==buflist?${format_number}${indent}${format_nick_prefix}${color_hotlist}${format_name}:[${number}\]}”]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+"${format_number}${indent}${format_nick_prefix}${color_hotlist}${format_name}"+`
-* [[option_sec.crypt.hash_algo]] *sec.crypt.hash_algo*
-** опис: pass:none[хеш алгоритам који се користи за проверу дешифрованих података]
-** тип: целобројна
-** вредности: sha224, sha256, sha384, sha512
-** подразумевана вредност: `+sha256+`
+* [[option_buflist.format.buffer_current]] *buflist.format.buffer_current*
+** опис: pass:none[формат линије са текућим бафером (напомена: садржај се израчунава, погледајте /help buflist)]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+"${color:,blue}${format_buffer}"+`
-* [[option_sec.crypt.passphrase_command]] *sec.crypt.passphrase_command*
-** опис: pass:none[чита тајну реченицу са излаза ове системске команде (користи се само прва линија и она не сме да садржи никакав додатни карактер); ова опција се користи само када се чита фајл sec.conf и ако није постављена променљива окружења „WEECHAT_PASSPHRASE” (променљива окружења има виши приоритет); пример са сефом лозинки: „/usr/bin/pass show weechat/passphrase”]
+* [[option_buflist.format.hotlist]] *buflist.format.hotlist*
+** опис: pass:none[формат вруће листе (напомена: садржај се израчунава, погледајте /help buflist)]
** тип: стринг
** вредности: било који стринг
-** подразумевана вредност: `+""+`
+** подразумевана вредност: `+" ${color:green}(${hotlist}${color:green})"+`
-* [[option_sec.crypt.salt]] *sec.crypt.salt*
-** опис: pass:none[када се генерише кључ који се користи у шифрирању, употребљава се со (препоручује се за максималну сигурност); када је укључено садржај шифрованих података у фајлу sec.conf ће се разликовати приликом сваког уписа у фајл; ако фајл sec.conf чувате у систему за контролу верзија, онда ову опцију можете да искључите и тако увек имате исти садржај у фајлу]
+* [[option_buflist.format.hotlist_highlight]] *buflist.format.hotlist_highlight*
+** опис: pass:none[формат за бафер са „highlight” нивоом вруће листе (напомена: садржај се израчунава, погледајте /help buflist)]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+"${color:magenta}"+`
+
+* [[option_buflist.format.hotlist_low]] *buflist.format.hotlist_low*
+** опис: pass:none[формат за бафер са „low” нивоом врућ листе (напомена: садржај се израчунава, погледајте /help buflist)]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+"${color:white}"+`
+
+* [[option_buflist.format.hotlist_message]] *buflist.format.hotlist_message*
+** опис: pass:none[формат за бафер са „message” нивоом вруће листе (напомена: садржај се израчунава, погледајте /help buflist)]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+"${color:brown}"+`
+
+* [[option_buflist.format.hotlist_none]] *buflist.format.hotlist_none*
+** опис: pass:none[формат за бафер који се не налази у врућој листи (напомена: садржај се израчунава, погледајте /help buflist)]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+"${color:default}"+`
+
+* [[option_buflist.format.hotlist_private]] *buflist.format.hotlist_private*
+** опис: pass:none[формат за бафер са „private” нивоом вруће листе (напомена: садржај се израчунава, погледајте /help buflist)]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+"${color:green}"+`
+
+* [[option_buflist.format.hotlist_separator]] *buflist.format.hotlist_separator*
+** опис: pass:none[граничник за бројеве у врућој листи (напомена: садржај се израчунава, погледајте /help buflist)]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+"${color:default},"+`
+
+* [[option_buflist.format.indent]] *buflist.format.indent*
+** опис: pass:none[стринг који се приказује за увлачење канала и приватних бафера (напомена: садржај се израчунава /help buflist)]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+" "+`
+
+* [[option_buflist.format.lag]] *buflist.format.lag*
+** опис: pass:none[формат за кашњење у баферу IRC сервера (напомена: садржај се израчунава, погледајте /help buflist)]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+" ${color:green}[${color:brown}${lag}${color:green}]"+`
+
+* [[option_buflist.format.name]] *buflist.format.name*
+** опис: pass:none[формат за име бафера (напомена: садржај се израчунава, погледајте /help buflist)]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+"${name}"+`
+
+* [[option_buflist.format.nick_prefix]] *buflist.format.nick_prefix*
+** опис: pass:none[формат за префикс надимка на каналу (напомена: садржај се израчунава, погледајте /help buflist)]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+"${color_nick_prefix}${nick_prefix}"+`
+
+* [[option_buflist.format.number]] *buflist.format.number*
+** опис: pass:none[формат за број бафера, ${number} је увучено број (напомена: садржај се извршава, погледајте /help buflist)]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+"${color:green}${number}${if:${number_displayed}?.: }"+`
+
+* [[option_buflist.format.tls_version]] *buflist.format.tls_version*
+** опис: pass:none[формат за TLS верзију у баферу IRC сервера (напомена: садржај се израчунава, погледајте /help buflist)]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+" ${color:default}(${if:${tls_version}==TLS1.3?${color:green}:${if:${tls_version}==TLS1.2?${color:yellow}:${color:red}}}${translate:${tls_version}}${color:default})"+`
+
+* [[option_buflist.look.add_newline]] *buflist.look.add_newline*
+** опис: pass:none[додаје прелом линије између приказаних бафера, тако да се сваки бафер приказује на одвојеној линији (препоручено); ако је искључено, преломи редова морају ручно да се додају у формате са „${\n}”, и више нису могуће акције мишем]
** тип: логичка
** вредности: on, off
** подразумевана вредност: `+on+`
-// end::sec_options[]
-// tag::weechat_options[]
-* [[option_weechat.color.bar_more]] *weechat.color.bar_more*
-** опис: pass:none[боја текста за „+” када се траке скролују]
-** тип: боја
-** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+lightmagenta+`
+* [[option_buflist.look.auto_scroll]] *buflist.look.auto_scroll*
+** опис: pass:none[аутоматски скролује листу бафера тако да се текући бафер увек приказује (ово функционише само са траком на левој/десној позицији са „vertical” испуном); ова вредност је проценат линија које се приказује испред текућег бафера када се скролује (-1 = искључује скроловање); на пример, 50 значи да је текући бафер након скроловања у средини траке, 0 значи на врху траке, а 100 на дну]
+** тип: целобројна
+** вредности: -1 .. 100
+** подразумевана вредност: `+50+`
-* [[option_weechat.color.chat]] *weechat.color.chat*
-** опис: pass:none[боја текста за разговор]
-** тип: боја
-** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+default+`
+* [[option_buflist.look.display_conditions]] *buflist.look.display_conditions*
+** опис: pass:none[услови под којима се бафер приказује (напомена: садржај се израчунава, погледајте /help buflist); на пример, ако желите да сакријете серверске бафере онда када су спојени са основним бафером: „${buffer.hidden}==0 && ((${type}!=server && ${buffer.full_name}!=core.weechat) || ${buffer.active}==1)”]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+"${buffer.hidden}==0"+`
-* [[option_weechat.color.chat_bg]] *weechat.color.chat_bg*
-** опис: pass:none[боја позадине за разговор]
-** тип: боја
-** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+default+`
+* [[option_buflist.look.enabled]] *buflist.look.enabled*
+** опис: pass:none[enable buflist; препроручује се да се уместо простог скривања траке употреби ова опција јер она уклања и неке интерне куке које више нису потребне када трака сакрије; такође можете да употребите и команду „/buflist toggle” или подразумевани тастер alt+shift+b]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+on+`
-* [[option_weechat.color.chat_buffer]] *weechat.color.chat_buffer*
-** опис: pass:none[боја текста за имена бафера]
-** тип: боја
-** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+white+`
+* [[option_buflist.look.mouse_jump_visited_buffer]] *buflist.look.mouse_jump_visited_buffer*
+** опис: pass:none[ако је укључена, кликови левим/десним тастером миша на линију са текућим бафером врши скок на претходни/наредни посећени бафер]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+off+`
-* [[option_weechat.color.chat_channel]] *weechat.color.chat_channel*
-** опис: pass:none[боја текста за имена канала]
-** тип: боја
-** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+white+`
+* [[option_buflist.look.mouse_move_buffer]] *buflist.look.mouse_move_buffer*
+** опис: pass:none[ако је укључено, гестикулација мишем (превлачење и испуштање) померају бафере у листи]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+on+`
-* [[option_weechat.color.chat_day_change]] *weechat.color.chat_day_change*
-** опис: pass:none[боја текста за поруку која се приказује при промени дана]
-** тип: боја
-** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+cyan+`
+* [[option_buflist.look.mouse_wheel]] *buflist.look.mouse_wheel*
+** опис: pass:none[ако је укључено, померање точкића миша горе/доле врши скок на претходни/наредни бафер у листи]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+on+`
-* [[option_weechat.color.chat_delimiters]] *weechat.color.chat_delimiters*
-** опис: pass:none[боја текста за граничнике]
-** тип: боја
-** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+green+`
+* [[option_buflist.look.nick_prefix]] *buflist.look.nick_prefix*
+** опис: pass:none[враћа префикс надимка и његову боју из листе надимака тако да у формату може да се користи ${nick_prefix}; ово може да буде споро у баферима са доста надимака у листи надимака, тако да је ова опција подразумевано искључена]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+off+`
-* [[option_weechat.color.chat_highlight]] *weechat.color.chat_highlight*
-** опис: pass:none[боја текста за истакнути префикс]
-** тип: боја
-** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+yellow+`
+* [[option_buflist.look.nick_prefix_empty]] *buflist.look.nick_prefix_empty*
+** опис: pass:none[када је укључен префикс надимка, у случају да за бафер није дефинисан префикс надимка, приказује се размак]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+on+`
-* [[option_weechat.color.chat_highlight_bg]] *weechat.color.chat_highlight_bg*
-** опис: pass:none[боја позадине за истакнути префикс]
-** тип: боја
-** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+magenta+`
+* [[option_buflist.look.signals_refresh]] *buflist.look.signals_refresh*
+** опис: pass:none[листа додатних сигнала који се каче раздвојених запетама и окида освежавање листе бафера; ово може да буде корисно ако се у форматима употребљавају неке кориснички дефинисане променљиве којима је неоходно специфично освежавање]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+""+`
-* [[option_weechat.color.chat_host]] *weechat.color.chat_host*
-** опис: pass:none[боја текста за имена хостова]
-** тип: боја
-** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+cyan+`
+* [[option_buflist.look.sort]] *buflist.look.sort*
+** опис: pass:none[листа поља по којима се сортирају бафери, раздвојена запетама; свако поље је hdata променљива бафера („var”), hdata променљива IRC сервера („irc_server.var”) или hdata променљива IRC канала („irc_channel.var”); испред поља може да се користи карактер „-” чиме се обрће редослед, а за поређење које не прави разлику у величини слова, може да се користи карактер „~”; пример: „-~short_name” за поређење које не води рачуна о величини слова и обрнуто сортирање по кратком имену бафера (напомена: садржај се израчунава, пре него што се издели у поља, али у то време је „bar_item” једина променљива која може да се користи, како би се направила разлика између различитих ставки листе бафера, на пример „${bar_item.name}”)]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+"number,-active"+`
-* [[option_weechat.color.chat_inactive_buffer]] *weechat.color.chat_inactive_buffer*
-** опис: pass:none[боја текста за разговор када је линија неактивна (бафер је спојен са другим баферима и није изабран)]
-** тип: боја
-** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+default+`
+* [[option_buflist.look.use_items]] *buflist.look.use_items*
+** опис: pass:none[број buflist ставки траке које могу да се користе; имена ставки су: „buflist”, „buflist2”, „buflist3”; будите пажљиви, употреба више од једне ставке траке успорава приказ листе бафера]
+** тип: целобројна
+** вредности: 1 .. 3
+** подразумевана вредност: `+1+`
+// end::buflist_options[]
-* [[option_weechat.color.chat_inactive_window]] *weechat.color.chat_inactive_window*
-** опис: pass:none[боја текста за разговор када је прозора неактиван (није тренутно изабрани прозор)]
+// tag::charset_options[]
+* [[option_charset.default.decode]] *charset.default.decode*
+** опис: pass:none[глобални скуп карактера у који се декодира: скуп карактера који се који се користи за декодирање долазних порука онда када нису у исправном UTF-8]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+"iso-8859-1"+`
+
+* [[option_charset.default.encode]] *charset.default.encode*
+** опис: pass:none[глобални скуп карактера у који се кодира: скуп карактера у који се кодирају одлазеће поруке (ако је празно, подразумевана вредност је UTF-8 јер је то интерни WeeChat скуп карактера)]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+""+`
+// end::charset_options[]
+
+// tag::exec_options[]
+* [[option_exec.color.flag_finished]] *exec.color.flag_finished*
+** опис: pass:none[боја текста за заставицу команде у листи команди која је завршила извршавање]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+default+`
+** подразумевана вредност: `+lightred+`
-* [[option_weechat.color.chat_nick]] *weechat.color.chat_nick*
-** опис: pass:none[боја текста за надимке у прозору разговора: користи се у неким серверским порукама и као последња опција у случају да се не пронађе боја за надимак; боја надимка у највећем броју случајева долази из опције option weechat.color.chat_nick_colors]
+* [[option_exec.color.flag_running]] *exec.color.flag_running*
+** опис: pass:none[боја текста за заставицу команде у листи команди која се тренутно извршава]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+lightcyan+`
+** подразумевана вредност: `+lightgreen+`
-* [[option_weechat.color.chat_nick_colors]] *weechat.color.chat_nick_colors*
-** опис: pass:none[боја текста за надимке (листа боја раздвојених зарезима, дозвољена је и позадина у формату: „пп:по”, for example: „lightred:blue”)]
+* [[option_exec.command.default_options]] *exec.command.default_options*
+** опис: pass:none[подразумеване опције за команду /exec (погледајте /help exec); пример: „-nosh -bg” ако желите да се све команде извршавају у позадини (без излаза), у без употребе командног окружења]
** тип: стринг
** вредности: било који стринг
-** подразумевана вредност: `+"cyan,magenta,green,brown,lightblue,default,lightcyan,lightmagenta,lightgreen,blue"+`
+** подразумевана вредност: `+""+`
-* [[option_weechat.color.chat_nick_offline]] *weechat.color.chat_nick_offline*
-** опис: pass:none[боја текста за надимак који није на мрежи (више није у листи надимака); ова боја се користи само онда када је опција weechat.look.color_nick_offline укључена]
-** тип: боја
-** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+default+`
+* [[option_exec.command.purge_delay]] *exec.command.purge_delay*
+** опис: pass:none[време пре чишћења завршених команди (у секундама, 0 = команде се чисте тренутно, -1 = чишћење се уопште не ради)]
+** тип: целобројна
+** вредности: -1 .. 25920000
+** подразумевана вредност: `+0+`
-* [[option_weechat.color.chat_nick_offline_highlight]] *weechat.color.chat_nick_offline_highlight*
-** опис: pass:none[боја текста за надимак ван мреже, а који се истиче; ова боја се користи само онда када је опција weechat.look.color_nick_offline укључена]
-** тип: боја
-** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+default+`
+* [[option_exec.command.shell]] *exec.command.shell*
+** опис: pass:none[командно окружење које се користи из команду „/exec -sh”; може да буде само име окружења ако се налазу у PATH (на пример „bash”) или апсолутна путања до окружења (на пример „/bin/bash”); ако је вредност празна, користиће се „sh” (напомена: садржај се израчунава, погледајте /help eval)]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+"${env:SHELL}"+`
+// end::exec_options[]
-* [[option_weechat.color.chat_nick_offline_highlight_bg]] *weechat.color.chat_nick_offline_highlight_bg*
-** опис: pass:none[боја позадине за надимак ван мреже, а који се истиче; ова боја се користи само онда када је опција weechat.look.color_nick_offline укључена]
-** тип: боја
-** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+blue+`
+// tag::fifo_options[]
+* [[option_fifo.file.enabled]] *fifo.file.enabled*
+** опис: pass:none[укључивање FIFO пајпа]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+on+`
-* [[option_weechat.color.chat_nick_other]] *weechat.color.chat_nick_other*
-** опис: pass:none[боја текста за други надимак у приватном баферу]
-** тип: боја
-** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+cyan+`
+* [[option_fifo.file.path]] *fifo.file.path*
+** опис: pass:none[путања за FIFO фајл; у путањи може да се користи PID програма WeeChat са ${info:pid} (путања се израчунава, погледајте функцију string_eval_path_home у референтном приручнику API додатака)]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+"${weechat_runtime_dir}/weechat_fifo_${info:pid}"+`
+// end::fifo_options[]
-* [[option_weechat.color.chat_nick_prefix]] *weechat.color.chat_nick_prefix*
-** опис: pass:none[боја префикса надимка (стринг који се приказује испред надимка у префиксу)]
+// tag::fset_options[]
+* [[option_fset.color.default_value]] *fset.color.default_value*
+** опис: pass:none[боја за подразумевану вредност]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+green+`
+** подразумевана вредност: `+default+`
-* [[option_weechat.color.chat_nick_self]] *weechat.color.chat_nick_self*
-** опис: pass:none[боја текста за локални надимак у прозору разговора]
+* [[option_fset.color.default_value_selected]] *fset.color.default_value_selected*
+** опис: pass:none[боја за подразумевану вредност у изабраној линији]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** подразумевана вредност: `+white+`
-* [[option_weechat.color.chat_nick_suffix]] *weechat.color.chat_nick_suffix*
-** опис: pass:none[боја суфикса надимка (стринг који се приказује иза надимка у префиксу)]
+* [[option_fset.color.description]] *fset.color.description*
+** опис: pass:none[боја за опис]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+green+`
+** подразумевана вредност: `+default+`
-* [[option_weechat.color.chat_prefix_action]] *weechat.color.chat_prefix_action*
-** опис: pass:none[боја текста за префикс акције]
+* [[option_fset.color.description_selected]] *fset.color.description_selected*
+** опис: pass:none[боја за опис у изабраној линији]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** подразумевана вредност: `+white+`
-* [[option_weechat.color.chat_prefix_buffer]] *weechat.color.chat_prefix_buffer*
-** опис: pass:none[боја текста за име бафера (испред префикса, када је више бафера спојено под једним бројем)]
-** тип: боја
-** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+brown+`
-
-* [[option_weechat.color.chat_prefix_buffer_inactive_buffer]] *weechat.color.chat_prefix_buffer_inactive_buffer*
-** опис: pass:none[боја текста за име неактивног бафера (испред префикса, када је више бафера спојено под једним бројем и бафер није изабран)]
+* [[option_fset.color.file]] *fset.color.file*
+** опис: pass:none[боја за фајл]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** подразумевана вредност: `+default+`
-* [[option_weechat.color.chat_prefix_error]] *weechat.color.chat_prefix_error*
-** опис: pass:none[боја текста за префикс грешке]
+* [[option_fset.color.file_changed]] *fset.color.file_changed*
+** опис: pass:none[боја за фајл у случају да је вредност промењена]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+yellow+`
+** подразумевана вредност: `+brown+`
-* [[option_weechat.color.chat_prefix_join]] *weechat.color.chat_prefix_join*
-** опис: pass:none[боја текста са префикс приступања]
+* [[option_fset.color.file_changed_selected]] *fset.color.file_changed_selected*
+** опис: pass:none[боја за фајл у изабраној линији у случају да је вредност промењена]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+lightgreen+`
+** подразумевана вредност: `+yellow+`
-* [[option_weechat.color.chat_prefix_more]] *weechat.color.chat_prefix_more*
-** опис: pass:none[боја текста за „+” када је префикс сувише дугачак]
+* [[option_fset.color.file_selected]] *fset.color.file_selected*
+** опис: pass:none[боја за фајл у изабраној линији]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+lightmagenta+`
+** подразумевана вредност: `+white+`
-* [[option_weechat.color.chat_prefix_network]] *weechat.color.chat_prefix_network*
-** опис: pass:none[боја текста за мрежни префикс]
+* [[option_fset.color.help_default_value]] *fset.color.help_default_value*
+** опис: pass:none[боја за подразумевану вредност у траци за помоћ]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+magenta+`
+** подразумевана вредност: `+white+`
-* [[option_weechat.color.chat_prefix_quit]] *weechat.color.chat_prefix_quit*
-** опис: pass:none[боја текста за префикс напуштања]
+* [[option_fset.color.help_description]] *fset.color.help_description*
+** опис: pass:none[боја за опис у траци за помоћ]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+lightred+`
+** подразумевана вредност: `+default+`
-* [[option_weechat.color.chat_prefix_suffix]] *weechat.color.chat_prefix_suffix*
-** опис: pass:none[боја текста за суфикс (иза префикса)]
+* [[option_fset.color.help_name]] *fset.color.help_name*
+** опис: pass:none[боја за име у траци за помоћ]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+green+`
+** подразумевана вредност: `+white+`
-* [[option_weechat.color.chat_read_marker]] *weechat.color.chat_read_marker*
-** опис: pass:none[боја текста за маркер непрочитаних података]
+* [[option_fset.color.help_quotes]] *fset.color.help_quotes*
+** опис: pass:none[боја за знаке навода око стринг вредности]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+magenta+`
+** подразумевана вредност: `+darkgray+`
-* [[option_weechat.color.chat_read_marker_bg]] *weechat.color.chat_read_marker_bg*
-** опис: pass:none[боја позадине за маркер непрочитаних података]
+* [[option_fset.color.help_values]] *fset.color.help_values*
+** опис: pass:none[боја за дозвољене вредности]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** подразумевана вредност: `+default+`
-* [[option_weechat.color.chat_server]] *weechat.color.chat_server*
-** опис: pass:none[боја текста за имена сервера]
-** тип: боја
-** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+brown+`
-
-* [[option_weechat.color.chat_tags]] *weechat.color.chat_tags*
-** опис: pass:none[боја текста за ознаке након порука (приказаних командом /debug tags)]
+* [[option_fset.color.index]] *fset.color.index*
+** опис: pass:none[боја за индекс опције]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+red+`
+** подразумевана вредност: `+cyan+`
-* [[option_weechat.color.chat_text_found]] *weechat.color.chat_text_found*
-** опис: pass:none[боја текста за маркер на линијама у којима је тражени текст пронађен]
+* [[option_fset.color.index_selected]] *fset.color.index_selected*
+** опис: pass:none[боја за индекс опције у изабраној линији]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+yellow+`
+** подразумевана вредност: `+lightcyan+`
-* [[option_weechat.color.chat_text_found_bg]] *weechat.color.chat_text_found_bg*
-** опис: pass:none[боја позадине за маркер на линијама у којима је тражени текст пронађен]
+* [[option_fset.color.line_marked_bg1]] *fset.color.line_marked_bg1*
+** опис: pass:none[боја позадине за маркирану линију (користи се са првим форматом, погледајте опцију fset.format.option1)]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+lightmagenta+`
+** подразумевана вредност: `+default+`
-* [[option_weechat.color.chat_time]] *weechat.color.chat_time*
-** опис: pass:none[боја текста за време у прозору разговора]
+* [[option_fset.color.line_marked_bg2]] *fset.color.line_marked_bg2*
+** опис: pass:none[боја позадине за маркирану линију (користи се са другим форматом, погледајте опцију fset.format.option2)]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** подразумевана вредност: `+default+`
-* [[option_weechat.color.chat_time_delimiters]] *weechat.color.chat_time_delimiters*
-** опис: pass:none[боја текста за граничнике времена]
+* [[option_fset.color.line_selected_bg1]] *fset.color.line_selected_bg1*
+** опис: pass:none[боја позадине за изабрану линију (користи се са првим форматом, погледајте опцију fset.format.option1)]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+brown+`
+** подразумевана вредност: `+blue+`
-* [[option_weechat.color.chat_value]] *weechat.color.chat_value*
-** опис: pass:none[боја текста за вредности]
+* [[option_fset.color.line_selected_bg2]] *fset.color.line_selected_bg2*
+** опис: pass:none[боја позадине за изабрану линију (користи се са другим форматом, погледајте опцију fset.format.option2)]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+cyan+`
+** подразумевана вредност: `+red+`
-* [[option_weechat.color.chat_value_null]] *weechat.color.chat_value_null*
-** опис: pass:none[боја текста за null вредности (недефинисане)]
+* [[option_fset.color.marked]] *fset.color.marked*
+** опис: pass:none[боја за индикатор маркера]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+blue+`
+** подразумевана вредност: `+brown+`
-* [[option_weechat.color.emphasized]] *weechat.color.emphasized*
-** опис: pass:none[боја текста за наглашени текст (на пример, када се претражује текст); ова опција се користи само онда када је опција weechat.look.emphasized_attributes празан стринг (што је и подразумевана вредност)]
+* [[option_fset.color.marked_selected]] *fset.color.marked_selected*
+** опис: pass:none[боја за индикатор маркера на изабраној линији]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** подразумевана вредност: `+yellow+`
-* [[option_weechat.color.emphasized_bg]] *weechat.color.emphasized_bg*
-** опис: pass:none[боја позадине за наглашени текст (на пример, када се претражује текст); ова опција се користи само онда када је опција weechat.look.emphasized_attributes празан стринг (што је и подразумевана вредност)]
+* [[option_fset.color.max]] *fset.color.max*
+** опис: pass:none[боја за макс вредност]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+magenta+`
+** подразумевана вредност: `+default+`
-* [[option_weechat.color.input_actions]] *weechat.color.input_actions*
-** опис: pass:none[боја текста за акције у линији уноса]
+* [[option_fset.color.max_selected]] *fset.color.max_selected*
+** опис: pass:none[боја за макс вредност у изабраној линији]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+lightgreen+`
+** подразумевана вредност: `+white+`
-* [[option_weechat.color.input_text_not_found]] *weechat.color.input_text_not_found*
-** опис: pass:none[боја текста за неуспешну претрагу текста у линији уноса]
+* [[option_fset.color.min]] *fset.color.min*
+** опис: pass:none[боја за мин вредност]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+red+`
+** подразумевана вредност: `+default+`
-* [[option_weechat.color.item_away]] *weechat.color.item_away*
-** опис: pass:none[боја текста за ставку одсутности]
+* [[option_fset.color.min_selected]] *fset.color.min_selected*
+** опис: pass:none[боја за мин вредност у изабраној линији]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+yellow+`
+** подразумевана вредност: `+white+`
-* [[option_weechat.color.nicklist_away]] *weechat.color.nicklist_away*
-** опис: pass:none[боја текста за надимке који су одсутни]
+* [[option_fset.color.name]] *fset.color.name*
+** опис: pass:none[боја за име]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+cyan+`
+** подразумевана вредност: `+default+`
-* [[option_weechat.color.nicklist_group]] *weechat.color.nicklist_group*
-** опис: pass:none[боја текста за групе у листи надимака]
+* [[option_fset.color.name_changed]] *fset.color.name_changed*
+** опис: pass:none[боја за име у случају да је вредност промењена]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+green+`
+** подразумевана вредност: `+brown+`
-* [[option_weechat.color.separator]] *weechat.color.separator*
-** опис: pass:none[боја за граничнике прозора (када су подељени) и граничнике поред трака (као што је листа надимака)]
+* [[option_fset.color.name_changed_selected]] *fset.color.name_changed_selected*
+** опис: pass:none[боја за име у изабраној линији у случају да је вредност промењена]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+blue+`
+** подразумевана вредност: `+yellow+`
-* [[option_weechat.color.status_count_highlight]] *weechat.color.status_count_highlight*
-** опис: pass:none[боја текста за укупан број истакнутих порука у врућој листи (статусна трака)]
+* [[option_fset.color.name_selected]] *fset.color.name_selected*
+** опис: pass:none[боја за име у изабраној линији]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+magenta+`
+** подразумевана вредност: `+white+`
-* [[option_weechat.color.status_count_msg]] *weechat.color.status_count_msg*
-** опис: pass:none[боја текста за укупан број порука у врућој листи (статусна линија)]
+* [[option_fset.color.option]] *fset.color.option*
+** опис: pass:none[боја за опцију]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+brown+`
+** подразумевана вредност: `+default+`
-* [[option_weechat.color.status_count_other]] *weechat.color.status_count_other*
-** опис: pass:none[боја текста за укупан број осталих порука у врућој листи (статусна линија)]
+* [[option_fset.color.option_changed]] *fset.color.option_changed*
+** опис: pass:none[боја за опцију у случају да је вредност промењена]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+default+`
+** подразумевана вредност: `+brown+`
-* [[option_weechat.color.status_count_private]] *weechat.color.status_count_private*
-** опис: pass:none[боја текста за укупан број приватних порука у врућој листи (статусна трака)]
+* [[option_fset.color.option_changed_selected]] *fset.color.option_changed_selected*
+** опис: pass:none[боја за опцију у изабраној линији у случају да је вредност промењена]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+green+`
+** подразумевана вредност: `+yellow+`
-* [[option_weechat.color.status_data_highlight]] *weechat.color.status_data_highlight*
-** опис: pass:none[боја текста за бафер са истицањем (статусна трака)]
+* [[option_fset.color.option_selected]] *fset.color.option_selected*
+** опис: pass:none[боја за опцију у изабраној линији]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+lightmagenta+`
+** подразумевана вредност: `+white+`
-* [[option_weechat.color.status_data_msg]] *weechat.color.status_data_msg*
-** опис: pass:none[боја текста за бафер са новим порукама (статусна трака)]
+* [[option_fset.color.parent_name]] *fset.color.parent_name*
+** опис: pass:none[боја за име родитељ-опције]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+yellow+`
+** подразумевана вредност: `+default+`
-* [[option_weechat.color.status_data_other]] *weechat.color.status_data_other*
-** опис: pass:none[боја текста за бафер са новим подацима (што нису поруке) (статусна трака)]
+* [[option_fset.color.parent_name_selected]] *fset.color.parent_name_selected*
+** опис: pass:none[боја за име родитељ-опције у изабраној линији]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+default+`
+** подразумевана вредност: `+white+`
-* [[option_weechat.color.status_data_private]] *weechat.color.status_data_private*
-** опис: pass:none[боја текста за бафер са приватном поруком (статусна трака)]
+* [[option_fset.color.parent_value]] *fset.color.parent_value*
+** опис: pass:none[боја за вредност родитељ-опције]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+lightgreen+`
+** подразумевана вредност: `+cyan+`
-* [[option_weechat.color.status_filter]] *weechat.color.status_filter*
-** опис: pass:none[боја текста за индикатор филтера у статусној траци]
+* [[option_fset.color.parent_value_selected]] *fset.color.parent_value_selected*
+** опис: pass:none[боја за вредност родитељ-опције у изабраној линији]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+green+`
+** подразумевана вредност: `+lightcyan+`
-* [[option_weechat.color.status_more]] *weechat.color.status_more*
-** опис: pass:none[боја текста за бафер са новим подацима (статусна трака)]
+* [[option_fset.color.quotes]] *fset.color.quotes*
+** опис: pass:none[боја за знаке навода око стринг вредности]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+yellow+`
+** подразумевана вредност: `+darkgray+`
-* [[option_weechat.color.status_mouse]] *weechat.color.status_mouse*
-** опис: pass:none[боја текста за индикатор миша у статусној траци]
+* [[option_fset.color.quotes_changed]] *fset.color.quotes_changed*
+** опис: pass:none[боја за знаке навода око измењених стринг вредности]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+green+`
+** подразумевана вредност: `+default+`
-* [[option_weechat.color.status_name]] *weechat.color.status_name*
-** опис: pass:none[боја текста за име текућег бафера у статусној траци]
+* [[option_fset.color.quotes_changed_selected]] *fset.color.quotes_changed_selected*
+** опис: pass:none[боја за знаке навода око измењених стринг вредности у изабраној линији]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** подразумевана вредност: `+white+`
-* [[option_weechat.color.status_name_ssl]] *weechat.color.status_name_ssl*
-** опис: pass:none[боја текста за име текућег бафера у статусној траци, у случају да су подаци обезбеђени протоколом као што је SSL]
+* [[option_fset.color.quotes_selected]] *fset.color.quotes_selected*
+** опис: pass:none[боја за знаке навода око стринг вредности у изабраној линији]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+lightgreen+`
+** подразумевана вредност: `+default+`
-* [[option_weechat.color.status_nicklist_count]] *weechat.color.status_nicklist_count*
-** опис: pass:none[боја текста за укупан број надимака у листи надимака (статусна трака)]
+* [[option_fset.color.section]] *fset.color.section*
+** опис: pass:none[боја за одељке]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** подразумевана вредност: `+default+`
-* [[option_weechat.color.status_number]] *weechat.color.status_number*
-** опис: pass:none[боја текста за број текућег бафера у статусној траци]
+* [[option_fset.color.section_changed]] *fset.color.section_changed*
+** опис: pass:none[боја за одељак чија је вредност измењена]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+yellow+`
+** подразумевана вредност: `+brown+`
-* [[option_weechat.color.status_time]] *weechat.color.status_time*
-** опис: pass:none[боја текста за време (статусна трака)]
+* [[option_fset.color.section_changed_selected]] *fset.color.section_changed_selected*
+** опис: pass:none[боја за одељак чија је вредност измењена у изабраној линији]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+default+`
-
-* [[option_weechat.completion.base_word_until_cursor]] *weechat.completion.base_word_until_cursor*
-** опис: pass:none[ако је укључено, на карактеру испред курсора се завршава базна реч која треба да се доврши; у супротном се базна реч завршава на првом размаку након курсора]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+on+`
-
-* [[option_weechat.completion.command_inline]] *weechat.completion.command_inline*
-** опис: pass:none[ако је укључено, команде у командној линији се довршавају (команда на почетку линије има виши приоритет и прва се користи); напомена: када се ова опција укључи, више се не врши аутоматско довршавање путања које почињу са „/” (ван аргумената команде)]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+on+`
-
-* [[option_weechat.completion.default_template]] *weechat.completion.default_template*
-** опис: pass:none[подразумевани шаблон довршавања (молимо вас да погледајте документацију у вези кодова шаблона и вредности: референтно упутство API додатака, функција „weechat_hook_command”)]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+"%(nicks)|%(irc_channels)"+`
-
-* [[option_weechat.completion.nick_add_space]] *weechat.completion.nick_add_space*
-** опис: pass:none[додавање размака након довршавања надимка (када надимак није прва реч на командној линији)]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+on+`
-
-* [[option_weechat.completion.nick_case_sensitive]] *weechat.completion.nick_case_sensitive*
-** опис: pass:none[довршавање надимака води рачуна о величини слова]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+off+`
-
-* [[option_weechat.completion.nick_completer]] *weechat.completion.nick_completer*
-** опис: pass:none[стринг који се умеће након довршавања надимка (када је надимак прва реч у командној линији)]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+": "+`
-
-* [[option_weechat.completion.nick_first_only]] *weechat.completion.nick_first_only*
-** опис: pass:none[довршава се само први пронађени надимак]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+off+`
-
-* [[option_weechat.completion.nick_ignore_chars]] *weechat.completion.nick_ignore_chars*
-** опис: pass:none[карактери који се игноришу при довршавању надимка]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+"[]`_-^"+`
-
-* [[option_weechat.completion.partial_completion_alert]] *weechat.completion.partial_completion_alert*
-** опис: pass:none[шаље упозорење (BEL) када се догоди делимично довршавање]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+on+`
-
-* [[option_weechat.completion.partial_completion_command]] *weechat.completion.partial_completion_command*
-** опис: pass:none[делимично довршавање имена команди (зауставља се када се пронађе више команда које почињу истим словима)]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+off+`
-
-* [[option_weechat.completion.partial_completion_command_arg]] *weechat.completion.partial_completion_command_arg*
-** опис: pass:none[делимично довршавање аргумената команде (зауставља се када се пронађе више аргумената са истим префиксом)]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+off+`
-
-* [[option_weechat.completion.partial_completion_count]] *weechat.completion.partial_completion_count*
-** опис: pass:none[у ставки траке се приказује укупан број за свако делимично довршавање]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+on+`
-
-* [[option_weechat.completion.partial_completion_other]] *weechat.completion.partial_completion_other*
-** опис: pass:none[делимично довршавање ван команди (зауставља се када се пронађе више речи које почињу истим словима)]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+off+`
-
-* [[option_weechat.completion.partial_completion_templates]] *weechat.completion.partial_completion_templates*
-** опис: pass:none[листа шаблона раздвојених запетама за које је делимично довршавање подразумевано укључено (тастером Tab уместо са shift-Tab); листа шаблон се налази у документацији: API референтно упутство за додатке, функција „weechat_hook_command”]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+"config_options"+`
-
-* [[option_weechat.history.display_default]] *weechat.history.display_default*
-** опис: pass:none[максимални број команди које се подразумевано приказују у списку историје (0 = без ограничења)]
-** тип: целобројна
-** вредности: 0 .. 2147483647
-** подразумевана вредност: `+5+`
-
-* [[option_weechat.history.max_buffer_lines_minutes]] *weechat.history.max_buffer_lines_minutes*
-** опис: pass:none[максимални број минута у историји по баферу (0 = без ограничења); примери: 1440 = један дан, 10080 = једна недеља, 43200 = једна месец, 525600 = једна година; користите 0 САМО у случају да опција weechat.history.max_buffer_lines_number НИЈЕ постављена на 0]
-** тип: целобројна
-** вредности: 0 .. 2147483647
-** подразумевана вредност: `+0+`
-
-* [[option_weechat.history.max_buffer_lines_number]] *weechat.history.max_buffer_lines_number*
-** опис: pass:none[максимални број линија у историји по баферу (0 = без ограничења); користите 0 САМО када опција weechat.history.max_buffer_lines_minutes НИЈЕ постављена на 0]
-** тип: целобројна
-** вредности: 0 .. 2147483647
-** подразумевана вредност: `+4096+`
-
-* [[option_weechat.history.max_commands]] *weechat.history.max_commands*
-** опис: pass:none[максимални број корисничких команди у историји (0 = без ограничења, НЕ ПРЕПОРУЧУЈЕ СЕ: нема ограничења употребе меморије)]
-** тип: целобројна
-** вредности: 0 .. 2147483647
-** подразумевана вредност: `+100+`
-
-* [[option_weechat.history.max_visited_buffers]] *weechat.history.max_visited_buffers*
-** опис: pass:none[максимални број посећених бафера који се чува у меморији]
-** тип: целобројна
-** вредности: 0 .. 1000
-** подразумевана вредност: `+50+`
-
-* [[option_weechat.look.align_end_of_lines]] *weechat.look.align_end_of_lines*
-** опис: pass:none[поравнање за крајеве линија (све линије након прве): оне почињу испод ових података (време, бафер, префикс, суфикс, порука (подразумевано))]
-** тип: целобројна
-** вредности: time, buffer, prefix, suffix, message
-** подразумевана вредност: `+message+`
-
-* [[option_weechat.look.align_multiline_words]] *weechat.look.align_multiline_words*
-** опис: pass:none[поравнање за вишелинијске речи сагласно са опцијом weechat.look.align_end_of_lines; ако је искључено, вишелинијске речи неће бити поравнате, што може бити корисно да се не преломе дугачке URL адресе]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+on+`
-
-* [[option_weechat.look.bar_more_down]] *weechat.look.bar_more_down*
-** опис: pass:none[стринг који се приказује када трака може да се скролује наниже (за траке чије се испуна разликује од „horizontal”)]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+"++"+`
-
-* [[option_weechat.look.bar_more_left]] *weechat.look.bar_more_left*
-** опис: pass:none[стринг који се приказује када трака може да се скролује у лево (за траке чија је испуна „horizontal”)]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+"<<"+`
-
-* [[option_weechat.look.bar_more_right]] *weechat.look.bar_more_right*
-** опис: pass:none[стринг који се приказује када трака може да се скролује у десно (за траке чија је испуна „horizontal”)]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+">>"+`
-
-* [[option_weechat.look.bar_more_up]] *weechat.look.bar_more_up*
-** опис: pass:none[стринг који се приказује када трака може да се скролује навише (за траке чија се испуна разликује од „horizontal”)]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+"--"+`
-
-* [[option_weechat.look.bare_display_exit_on_input]] *weechat.look.bare_display_exit_on_input*
-** опис: pass:none[режим огољеног приказа се напушта при било каквој промени уноса]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+on+`
-
-* [[option_weechat.look.bare_display_time_format]] *weechat.look.bare_display_time_format*
-** опис: pass:none[формат времена у режиму огољеног приказа (погледајте man strftime за спецификаторе датума/времена)]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+"%H:%M"+`
-
-* [[option_weechat.look.buffer_auto_renumber]] *weechat.look.buffer_auto_renumber*
-** опис: pass:none[аутоматска ренумерација бафера тако да постоје само суседни бројеви и да почињу од 1; ако је искључено, дозвољени су размаци између бројева бафера и први бафер може да има број већи од 1]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+on+`
-
-* [[option_weechat.look.buffer_notify_default]] *weechat.look.buffer_notify_default*
-** опис: pass:none[подразумевани ниво обавештавања за бафере (користи се да програму WeeChat каже да ли бафер мора да се прикаже у врућој листи или не, сагласно томе колика је важност поруке): all=све поруке (подразумевано), message=поруке+истицања, highlight=само истицања, none=никада се не приказује у врућој листи]
-** тип: целобројна
-** вредности: none, highlight, message, all
-** подразумевана вредност: `+all+`
-
-* [[option_weechat.look.buffer_position]] *weechat.look.buffer_position*
-** опис: pass:none[позиција новог бафера: end = након краја листе (number = последњи број + 1) (подразумевано), first_gap = на првом доступном броју у листи (након краја листе, у случају да није доступан ниједан број); ова опција се користи само ако бафер нема броја распореда]
-** тип: целобројна
-** вредности: end, first_gap
-** подразумевана вредност: `+end+`
-
-* [[option_weechat.look.buffer_search_case_sensitive]] *weechat.look.buffer_search_case_sensitive*
-** опис: pass:none[подразумевана текст претрага у баферу: прави се разлика у величини слова или не]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+off+`
-
-* [[option_weechat.look.buffer_search_force_default]] *weechat.look.buffer_search_force_default*
-** опис: pass:none[форсира подразумеване вредности за претрагу текста у баферу (уместо да се користе вредности последње претраге у баферу)]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+off+`
-
-* [[option_weechat.look.buffer_search_regex]] *weechat.look.buffer_search_regex*
-** опис: pass:none[подразумевана претрага текста у баферу: ако је укључено, тражи се према POSIX проширеном регуларном изразу, у супротном према простом стрингу претраге]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+off+`
-
-* [[option_weechat.look.buffer_search_where]] *weechat.look.buffer_search_where*
-** опис: pass:none[подразумевана претрага текста у баферу: у поруци, префиксу, префиксу и поруци]
-** тип: целобројна
-** вредности: prefix, message, prefix_message
-** подразумевана вредност: `+prefix_message+`
-
-* [[option_weechat.look.buffer_time_format]] *weechat.look.buffer_time_format*
-** опис: pass:none[формат времена за сваку линију која се приказује у баферима (погледајте man strftime за спецификаторе датума/времена) (напомена: садржај се израчунава, тако да са форматом можете да користите и боје „${color:xxx}”, погледајте /help eval); на пример, време употребом скале сивих (неопходна је подршка за 256 боја): „${color:252}%H${color:245}%M${color:240}%S”]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+"%H:%M:%S"+`
-
-* [[option_weechat.look.buffer_time_same]] *weechat.look.buffer_time_same*
-** опис: pass:none[време приказано за поруку са истим временом као и претходна порука: употребите размак „ ” да сакријете време, неки други стринг који желите да се прикаже уместо времена, или празан стринг којим се могућност искључује (приказ времена) (напомена: садржај се израчунава, тако да уз формат можете да користите у боје „${color:xxx}”, погледајте /help eval)]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+""+`
-
-* [[option_weechat.look.chat_space_right]] *weechat.look.chat_space_right*
-** опис: pass:none[keep a space on the right side of chat area if there is a bar displayed on the right (for both text and read marker)]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+off+`
-
-* [[option_weechat.look.color_basic_force_bold]] *weechat.look.color_basic_force_bold*
-** опис: pass:none[форсира атрибут „подебљано” за светле боје и „darkgray” у основним бојама (ова опција је подразумевано искључена: подебљано се користи само ако терминал подржава мање од 16 боја)]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+off+`
-
-* [[option_weechat.look.color_inactive_buffer]] *weechat.look.color_inactive_buffer*
-** опис: pass:none[за линије неактивног бафера се користи различита боја (када је линија из спојеног бафера који није изабран)]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+on+`
-
-* [[option_weechat.look.color_inactive_message]] *weechat.look.color_inactive_message*
-** опис: pass:none[за неактивну поруку се користи различита боја (када прозор није текући прозор, или ако је линија из спојеног бафера који није изабран)]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+on+`
-
-* [[option_weechat.look.color_inactive_prefix]] *weechat.look.color_inactive_prefix*
-** опис: pass:none[за неактиван префикс се користи различита боја (када прозор није текући прозор, или ако је линија из спојеног бафера који није изабран)]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+on+`
-
-* [[option_weechat.look.color_inactive_prefix_buffer]] *weechat.look.color_inactive_prefix_buffer*
-** опис: pass:none[за име неактивног бафера у префиксу се користи различита боја (када прозор није текући прозор, или ако је линија из спојеног бафера који није изабран)]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+on+`
-
-* [[option_weechat.look.color_inactive_time]] *weechat.look.color_inactive_time*
-** опис: pass:none[за неактивно време се користи различита боја (када прозор није текући прозор, или ако је линија из спојеног бафера који није изабран)]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+off+`
-
-* [[option_weechat.look.color_inactive_window]] *weechat.look.color_inactive_window*
-** опис: pass:none[за линије у неактивном прозору се користи различита боја (када прозор није текући прозор)]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+on+`
-
-* [[option_weechat.look.color_nick_offline]] *weechat.look.color_nick_offline*
-** опис: pass:none[за надимке који нису на мрежи се користи различита боја (више нису на листи надимака)]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+off+`
-
-* [[option_weechat.look.color_pairs_auto_reset]] *weechat.look.color_pairs_auto_reset*
-** опис: pass:none[табела парова боја се аутоматски ресетује када је број доступних боја мањи или једнак овом броју (-1 = искључује аутоматско ресетовање, па је тада потребно ручно „/color reset” када је табела пуна)]
-** тип: целобројна
-** вредности: -1 .. 256
-** подразумевана вредност: `+5+`
-
-* [[option_weechat.look.color_real_white]] *weechat.look.color_real_white*
-** опис: pass:none[ако је постављено, користи се права бела боја, подразумевано је искључено за терминале са белом позадином (ако уопште не користите белу позадину, требало би да укључите ову опцију да бисте уместо подразумеване терминалове боје предњег плана видели праву белу)]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+off+`
-
-* [[option_weechat.look.command_chars]] *weechat.look.command_chars*
-** опис: pass:none[карактери који се користе за одређивање да ли је улазни стринг команда или не: улаз мора да почне једним од наведених карактера; коса црта („/”) се увек узима као префикс команде (пример: „.$”)]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+""+`
-
-* [[option_weechat.look.command_incomplete]] *weechat.look.command_incomplete*
-** опис: pass:none[ако је постављено, дозвољене су недовршене или двосмислене команде, на пример /he за /help]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+off+`
-
-* [[option_weechat.look.confirm_quit]] *weechat.look.confirm_quit*
-** опис: pass:none[ако је постављено, /quit команда мора да се потврди додатним аргументом „-yes” (погледајте /help quit)]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+off+`
-
-* [[option_weechat.look.confirm_upgrade]] *weechat.look.confirm_upgrade*
-** опис: pass:none[ако је постављено, команда /upgrade мора да се потврди додатним аргументом „-yes” (погледајте /help upgrade)]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+off+`
-
-* [[option_weechat.look.day_change]] *weechat.look.day_change*
-** опис: pass:none[приказ специјалне поруке када се мења дан]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+on+`
-
-* [[option_weechat.look.day_change_message_1date]] *weechat.look.day_change_message_1date*
-** опис: pass:none[порука која се приказује када се промени дан, са приказаним једним датумом (на пример, на почетку бафера) (погледајте man strftime за спецификаторе датума/времена) (напомена: садржај се израчунава, тако да можете користити боје у формату „${color:xxx}”, погледајте /help eval)]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+"-- %a, %d %b %Y --"+`
-
-* [[option_weechat.look.day_change_message_2dates]] *weechat.look.day_change_message_2dates*
-** опис: pass:none[порука која се приказује када се промени дан, са приказаним два датума (између две поруке); спецификатор другог датума мора да почне са два „%” јер се над овим стрингом strftime позива два пута (погледајте man strftime за спецификаторе датума/времена) (напомена: садржај се израчунава, тако да можете користити боје у формату „${color:xxx}”, погледајте /help eval)]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+"-- %%a, %%d %%b %%Y (%a, %d %b %Y) --"+`
-
-* [[option_weechat.look.eat_newline_glitch]] *weechat.look.eat_newline_glitch*
-** опис: pass:none[ако је постављено, eat_newline_glitch ће да се постави на 0; ово се користи да се на крај линије сваке не дода карактер нова линија, па да се текст не преломи када копирате/налепите текст из програма WeeChat у неку другу апликацију (ова опција је подразумевано искључена јер може да буде узрок озбиљних проблема са приказом)]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+off+`
-
-* [[option_weechat.look.emphasized_attributes]] *weechat.look.emphasized_attributes*
-** опис: pass:none[attributes for emphasized text: one or more attribute chars ("%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline); if the string is empty, the colors weechat.color.emphasized* are used]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+""+`
-
-* [[option_weechat.look.highlight]] *weechat.look.highlight*
-** опис: pass:none[листа речи које се истичу раздвојених запетама; поређење не прави разлику у величини слова (употребите „(?-i)” на почетку речи ако желите да се величина слова узима у обзир), речи могу да почну или да се заврше са „*” чиме се добија делимично подударање; пример: „test,(?-i)*toto*,flash*”]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+""+`
-
-* [[option_weechat.look.highlight_disable_regex]] *weechat.look.highlight_disable_regex*
-** опис: pass:none[POSIX проширени регуларни израз који се користи за спречавање било каквог истицања у поруци: ова опција има виши приоритет у односу на све осталеопције истицања (ако се стринг пронађе у поруци, истицање се исључује и све остале опције се игноришу), регуларни израз не прави разлику у величини слова (употребите „(?-i)” на почетку да се величина слова не узима у обзир), примери: „<flash.*>”, „(?-i)<Flash.*>”]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+""+`
-
-* [[option_weechat.look.highlight_regex]] *weechat.look.highlight_regex*
-** опис: pass:none[POSIX проширени регуларни израз који се користи за проверу да ли порука садржи истицање или не, барем једно подударање мора бити окружено граничницима (карактери који се разликују од: алфанумерика, „-”, „_” и „|”), регуларни израз не прави разлику у величини слова (употребите „(?-i)” не почетку ако желите да се величина слова узима у обзир), примери: „flashcode|flashy”, „(?-i)FlashCode|flashy”]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+""+`
-
-* [[option_weechat.look.highlight_tags]] *weechat.look.highlight_tags*
-** опис: pass:none[листа ознака које се истичу раздвојених запетама; поређење не прави разлику у величини слова; у свакој ознаки је дозвољен џокер „*”; „+” може да раздвоји више ознака чиме се наводи логичко „и” међу ознакама; примери: „nick_flashcode” за поруку од надимка „FlashCode”, „irc_notice+nick_toto*” за обавештења од надимка који почиње са „toto”]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+""+`
-
-* [[option_weechat.look.hotlist_add_conditions]] *weechat.look.hotlist_add_conditions*
-** опис: pass:none[услови под којима се бафер додаје у врућу листу (ако је за бафер ниво обавештавања одговарајући); можете да користите следеће услове: „window” (показивач на текући прозор), „buffer” (показивач на бафер који треба да се дода у врућу листу), „priority” (0 = низак, 1 = порука, 2 = приватно, 3 = истицање); подразумевано је да се бафер додаје на врућу листу ако сте одсутни, или ако се бафер не види на екрану (не приказује се ни у једном прозору), или ако је барем један релеј клијент повезан преко weechat протокола]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+"${away} || ${buffer.num_displayed} == 0 || ${info:relay_client_count,weechat,connected} > 0"+`
-
-* [[option_weechat.look.hotlist_buffer_separator]] *weechat.look.hotlist_buffer_separator*
-** опис: pass:none[стринг који се приказује између бафера у врућој листи]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+", "+`
-
-* [[option_weechat.look.hotlist_count_max]] *weechat.look.hotlist_count_max*
-** опис: pass:none[максималан број порука који се приказује у врућој листи за бафер: 0 = никада се не приказује број порука, други број = приказује се максимално N порука (од највишег до најнижег приоритета)]
-** тип: целобројна
-** вредности: 0 .. 4
-** подразумевана вредност: `+2+`
-
-* [[option_weechat.look.hotlist_count_min_msg]] *weechat.look.hotlist_count_min_msg*
-** опис: pass:none[приказује број порука у случају да је укупан број порука већи или једнак овој вредности]
-** тип: целобројна
-** вредности: 1 .. 100
-** подразумевана вредност: `+2+`
-
-* [[option_weechat.look.hotlist_names_count]] *weechat.look.hotlist_names_count*
-** опис: pass:none[максимални број имена у врућој листи (0 = не приказује се ниједно име, само бројеви бафера)]
-** тип: целобројна
-** вредности: 0 .. 10000
-** подразумевана вредност: `+3+`
-
-* [[option_weechat.look.hotlist_names_length]] *weechat.look.hotlist_names_length*
-** опис: pass:none[макс дужина имена у врућој листи (0 = нема ограничења)]
-** тип: целобројна
-** вредности: 0 .. 32
-** подразумевана вредност: `+0+`
-
-* [[option_weechat.look.hotlist_names_level]] *weechat.look.hotlist_names_level*
-** опис: pass:none[ниво за приказивање имена у врућој листи (комбинација: 1=join/part, 2=порука, 4=приватно, 8=истицање, на пример: 12=приватно+истицање)]
-** тип: целобројна
-** вредности: 1 .. 15
-** подразумевана вредност: `+12+`
-
-* [[option_weechat.look.hotlist_names_merged_buffers]] *weechat.look.hotlist_names_merged_buffers*
-** опис: pass:none[ако је постављено, форсира приказ имена у врућој листи за спојене бафере]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+off+`
-
-* [[option_weechat.look.hotlist_prefix]] *weechat.look.hotlist_prefix*
-** опис: pass:none[текст који се приказује на почетку вруће листе]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+"H: "+`
-
-* [[option_weechat.look.hotlist_remove]] *weechat.look.hotlist_remove*
-** опис: pass:none[уклања бафере из вруће листе: buffer = уклања бафер по бафер, merged = уклања све видљиве спојене бафере одједном]
-** тип: целобројна
-** вредности: buffer, merged
-** подразумевана вредност: `+merged+`
-
-* [[option_weechat.look.hotlist_short_names]] *weechat.look.hotlist_short_names*
-** опис: pass:none[ако је постављено, користи кратка имена за приказ имена бафера у врућој листи (почињу након првог „.” у имену)]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+on+`
-
-* [[option_weechat.look.hotlist_sort]] *weechat.look.hotlist_sort*
-** опис: pass:none[сортирање вруће листе: group_time_*: груписање по нивоу обавештавања (прво истицања) па онда сортирање по времену, group_number_*: груписање по нивоу обавештавања (прво истицања) па онда сортирање по броју, number_*: сортирање по броју; asc = растући редослед, desc = опадајући редослед]
-** тип: целобројна
-** вредности: group_time_asc, group_time_desc, group_number_asc, group_number_desc, number_asc, number_desc
-** подразумевана вредност: `+group_time_asc+`
-
-* [[option_weechat.look.hotlist_suffix]] *weechat.look.hotlist_suffix*
-** опис: pass:none[текст који се приказује на крају вруће листе]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+""+`
-
-* [[option_weechat.look.hotlist_unique_numbers]] *weechat.look.hotlist_unique_numbers*
-** опис: pass:none[задржава у врућој листи само јединствене бројеве (ово се односи само ставке вруће листе за које се након броја НЕ приказује име)]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+on+`
-
-* [[option_weechat.look.hotlist_update_on_buffer_switch]] *weechat.look.hotlist_update_on_buffer_switch*
-** опис: pass:none[ажурирање вруће листе када се прелази на други бафер]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+on+`
-
-* [[option_weechat.look.input_cursor_scroll]] *weechat.look.input_cursor_scroll*
-** опис: pass:none[број карактера који се приказују након краја линије уноса када се скролује тако да се прикаже крај линије]
-** тип: целобројна
-** вредности: 0 .. 100
-** подразумевана вредност: `+20+`
-
-* [[option_weechat.look.input_share]] *weechat.look.input_share*
-** опис: pass:none[за улаз свих бафера се деле команде, текст или оба (и даље постоји локална историја за сваки бафер)]
-** тип: целобројна
-** вредности: none, commands, text, all
-** подразумевана вредност: `+none+`
-
-* [[option_weechat.look.input_share_overwrite]] *weechat.look.input_share_overwrite*
-** опис: pass:none[ако је постављено и улаз се дели, увек се преписује унос у циљном баферу]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+off+`
-
-* [[option_weechat.look.input_undo_max]] *weechat.look.input_undo_max*
-** опис: pass:none[макс број „поништавања” за командну линију, по баферу (0 = поништавање је искључено)]
-** тип: целобројна
-** вредности: 0 .. 65535
-** подразумевана вредност: `+32+`
-
-* [[option_weechat.look.item_away_message]] *weechat.look.item_away_message*
-** опис: pass:none[приказивање серверске поруке о одсутности у ставки одсутности траке]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+on+`
-
-* [[option_weechat.look.item_buffer_filter]] *weechat.look.item_buffer_filter*
-** опис: pass:none[стринг који се користи за обавештавање да су неке линије у текућем баферу филтриране (ставка траке „buffer_filter”)]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+"*"+`
-
-* [[option_weechat.look.item_buffer_zoom]] *weechat.look.item_buffer_zoom*
-** опис: pass:none[стринг који се користи да покаже зум на спојени бафер (ставка траке „buffer_zoom”)]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+"!"+`
-
-* [[option_weechat.look.item_mouse_status]] *weechat.look.item_mouse_status*
-** опис: pass:none[стринг који се корити да покаже стање миша (ставка траке „mouse_status”)]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+"M"+`
-
-* [[option_weechat.look.item_time_format]] *weechat.look.item_time_format*
-** опис: pass:none[формат времена за „time” ставку траке (погледајте man strftime за спецификаторе датума/времена) (напомена: садржај се израчунава, тако да можете користите боје у формату „${color:xxx}”, погледајте /help eval)]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+"%H:%M"+`
-
-* [[option_weechat.look.jump_current_to_previous_buffer]] *weechat.look.jump_current_to_previous_buffer*
-** опис: pass:none[скок на претходни бафер који је био приказан када се скаче на број текућег бафера са /buffer *N (где је N број бафера), чиме је могуће једноставно пребацивање на други бафер, па повратак на текући бафер]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+on+`
-
-* [[option_weechat.look.jump_previous_buffer_when_closing]] *weechat.look.jump_previous_buffer_when_closing*
-** опис: pass:none[скок на претходно посећени бафер када се бафер затвара (ако је искључено, онда се скаче на бафер број - 1)]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+on+`
-
-* [[option_weechat.look.jump_smart_back_to_buffer]] *weechat.look.jump_smart_back_to_buffer*
-** опис: pass:none[скок назад на почетни бафер када се достигне крај вруће листе]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+on+`
-
-* [[option_weechat.look.key_bind_safe]] *weechat.look.key_bind_safe*
-** опис: pass:none[дозвољава се везивање само „сигурних” тастера (који почињу са ctrl или meta кодом)]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+on+`
-
-* [[option_weechat.look.key_grab_delay]] *weechat.look.key_grab_delay*
-** опис: pass:none[подразумевано кашњење (у милисекундама) за хватање тастера (користећи подразумевани тастер alt-k); ово кашњење може да се премости у команди /input (погледајте /help input)]
-** тип: целобројна
-** вредности: 1 .. 10000
-** подразумевана вредност: `+800+`
-
-* [[option_weechat.look.mouse]] *weechat.look.mouse*
-** опис: pass:none[укључује подршку за миша]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+off+`
-
-* [[option_weechat.look.mouse_timer_delay]] *weechat.look.mouse_timer_delay*
-** опис: pass:none[кашњење (у милисекундама) за хватање догађаја миша: програм WeeChat ће чекати да протекне оволико времена пре нео што обради догађај]
-** тип: целобројна
-** вредности: 1 .. 10000
-** подразумевана вредност: `+100+`
-
-* [[option_weechat.look.nick_color_force]] *weechat.look.nick_color_force*
-** опис: pass:none[за неке надимке се форсира боја: хеш израчунат са надимком у циљу проналажења боје се неће користити за ове надимке (формат је: „надимак1:боја1;надимак2:боја2”); претрага надимака пази на величину слова само када су мала, тако да ова опција може да се користи само за надимке исписане малим словима; боја може да укључи и позадину помоћу формата „текст,позадина”, на пример „yellow,red”]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+""+`
-
-* [[option_weechat.look.nick_color_hash]] *weechat.look.nick_color_hash*
-** опис: pass:none[хеш алгоритам који се користи за проналажење боје неког надимка: djb2 = варијанта djb2 (важна је позиција слова: анаграми надимка имају другачије боје), djb2_32 = варијанта djb2 која уместо 64-битног целог броја користи 32-битни, sum = збир слова, sum_32 = збир слова код којег се уместо 64-битног целог броја користи 32-битни]
-** тип: целобројна
-** вредности: djb2, sum, djb2_32, sum_32
-** подразумевана вредност: `+djb2+`
-
-* [[option_weechat.look.nick_color_hash_salt]] *weechat.look.nick_color_hash_salt*
-** опис: pass:none[со за хеш алгоритам који се користи за проналажење боја надимака (на ову со се додаје надимак, па хеш алгоритам као улаз користи тај стринг); измена ове вредности меша боје надимака]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+""+`
-
-* [[option_weechat.look.nick_color_stop_chars]] *weechat.look.nick_color_stop_chars*
-** опис: pass:none[карактери који се користе за заустављање код израчунавања боје словима надимка (пре заустављања мора да се наиђе на барем један карактер ван ове листе) (пример: надимак „|nick|away” са „|” у карактерима ће вратити боју за надимак „|nick”); ова опција утиче на опцију weechat.look.nick_color_force, тако да надимак за форсирану боју не сме да садржи карактере који се овом опцијом игноришу]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+"_|["+`
-
-* [[option_weechat.look.nick_prefix]] *weechat.look.nick_prefix*
-** опис: pass:none[текст који се приказује испред надимка у префиксу поруке, на пример: „<”]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+""+`
-
-* [[option_weechat.look.nick_suffix]] *weechat.look.nick_suffix*
-** опис: pass:none[текст који се приказује иза надимка у префиксу поруке, на пример: „>”]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+""+`
-
-* [[option_weechat.look.paste_auto_add_newline]] *weechat.look.paste_auto_add_newline*
-** опис: pass:none[аутоматско додавање прелома реда на крај налепљеног текста у случају да постоји барем две линије и да ли се тражи потврда]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+on+`
-
-* [[option_weechat.look.paste_bracketed]] *weechat.look.paste_bracketed*
-** опис: pass:none[укључује терминалски „режим ограђеног налепљивања” (не подржавају га сви терминали/мултиплексери): у овом режиму се налепљени текст ограђује контролним низовима тако да програм WeeChat може направити разлику између налепљеног и откуцаног текста („ESC[200~”, након које следи налепљени текст, иза којег следи „ESC[201~”)]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+on+`
-
-* [[option_weechat.look.paste_bracketed_timer_delay]] *weechat.look.paste_bracketed_timer_delay*
-** опис: pass:none[Форсира крај ограђеног налепљивања након протека оволико времена (у секундама) ако се контролни низ та крај ограђеног налепљивања („ESC[201~”) није примио на време]
-** тип: целобројна
-** вредности: 1 .. 60
-** подразумевана вредност: `+10+`
-
-* [[option_weechat.look.paste_max_lines]] *weechat.look.paste_max_lines*
-** опис: pass:none[макс број линија које могу да се налепе без питања корисника (-1 = искључује ову могућност); ова опција се користи само у случају да је у барем једној траци употребљена ставка траке „input_paste” (подразумевано се користи у траци „input”)]
-** тип: целобројна
-** вредности: -1 .. 2147483647
-** подразумевана вредност: `+1+`
-
-* [[option_weechat.look.prefix_action]] *weechat.look.prefix_action*
-** опис: pass:none[префикс за поруке акције (напомена: садржај се израчунава, тако да можете користити боје у формату „${color:xxx}”, погледајте /help eval)]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+" *"+`
-
-* [[option_weechat.look.prefix_align]] *weechat.look.prefix_align*
-** опис: pass:none[поравнање префикса alignment (none, left, right (подраз.))]
-** тип: целобројна
-** вредности: none, left, right
-** подразумевана вредност: `+right+`
-
-* [[option_weechat.look.prefix_align_max]] *weechat.look.prefix_align_max*
-** опис: pass:none[макс величина префикса (0 = без ограничења)]
-** тип: целобројна
-** вредности: 0 .. 128
-** подразумевана вредност: `+0+`
-
-* [[option_weechat.look.prefix_align_min]] *weechat.look.prefix_align_min*
-** опис: pass:none[мин величина префикса]
-** тип: целобројна
-** вредности: 0 .. 128
-** подразумевана вредност: `+0+`
-
-* [[option_weechat.look.prefix_align_more]] *weechat.look.prefix_align_more*
-** опис: pass:none[карактер који се приказује ако се префикс скрати (мора бити тачно један карактер на екрану)]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+"+"+`
-
-* [[option_weechat.look.prefix_align_more_after]] *weechat.look.prefix_align_more_after*
-** опис: pass:none[приказује карактер одсецања (подразумевано „+”) након текста (замењујући размак који би требало да се прикаже на овом месту); ако је искључено, карактер одсецања замењује последњи карактер текста]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+on+`
-
-* [[option_weechat.look.prefix_buffer_align]] *weechat.look.prefix_buffer_align*
-** опис: pass:none[поравнање префикса за име бафера, када је више бафера спојено под истим бројем (none, left, right (подразумевано))]
-** тип: целобројна
-** вредности: none, left, right
-** подразумевана вредност: `+right+`
-
-* [[option_weechat.look.prefix_buffer_align_max]] *weechat.look.prefix_buffer_align_max*
-** опис: pass:none[макс величина за име бафера, када је више бафера спојено под истим бројем (0 = нема максималне величине)]
-** тип: целобројна
-** вредности: 0 .. 128
-** подразумевана вредност: `+0+`
-
-* [[option_weechat.look.prefix_buffer_align_more]] *weechat.look.prefix_buffer_align_more*
-** опис: pass:none[карактер који се приказује ако се име бафера одсеца (када је више бафера спојено под истим бројем) (мора да буде тачно један карактер на екрану)]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+"+"+`
-
-* [[option_weechat.look.prefix_buffer_align_more_after]] *weechat.look.prefix_buffer_align_more_after*
-** опис: pass:none[приказује карактер одсецања (подразумевано „+”) након текста (замењујући размак који би требало да се прикаже на овом месту); ако је искључено, карактер одсецања замењује последњи карактер текста]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+on+`
-
-* [[option_weechat.look.prefix_error]] *weechat.look.prefix_error*
-** опис: pass:none[префикс за поруке о грешки (напомена: садржај се израчунава, тако да можете користити боје у формату „${color:xxx}”, погледајте /help eval)]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+"=!="+`
-
-* [[option_weechat.look.prefix_join]] *weechat.look.prefix_join*
-** опис: pass:none[префикс за поруке приступа (напомена: садржај се израчунава, тако да можете користити боје у формату „${color:xxx}”, погледајте /help eval)]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+"-->"+`
-
-* [[option_weechat.look.prefix_network]] *weechat.look.prefix_network*
-** опис: pass:none[префикс за мрежне поруке (напомена: садржај се израчунава, тако да можете користити боје у формату „${color:xxx}”, погледајте /help eval)]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+"--"+`
-
-* [[option_weechat.look.prefix_quit]] *weechat.look.prefix_quit*
-** опис: pass:none[префикс за поруке напуштања (напомена: садржај се израчунава, тако да можете користити боје у формату „${color:xxx}”, погледајте /help eval)]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+"<--"+`
-
-* [[option_weechat.look.prefix_same_nick]] *weechat.look.prefix_same_nick*
-** опис: pass:none[префикс који се приказује за поруку са истим надимком као и претходна, али не и наредна порука: употребите размак „ ” да сакријете префикс, неки други стринг који желите да се прикаже уместо префикса, или празан стринг ако желите да искључите ову могућност (приказиваће се префикс)]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+""+`
-
-* [[option_weechat.look.prefix_same_nick_middle]] *weechat.look.prefix_same_nick_middle*
-** опис: pass:none[префикс који се приказује за поруку са истим надимком који имају и претходна и наредна порука: употребите размак „ ” ако желите да сакријете префикс, неки други стринг који желите да се прикаже уместо префикса, или празан стринг ако желите да искључите ову могућност (приказиваће се префикс)]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+""+`
-
-* [[option_weechat.look.prefix_suffix]] *weechat.look.prefix_suffix*
-** опис: pass:none[стринг који се приказује након префикса]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+"|"+`
-
-* [[option_weechat.look.quote_nick_prefix]] *weechat.look.quote_nick_prefix*
-** опис: pass:none[текст који се приказује испред надимка када се цитира порука (погледајте /help cursor)]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+"<"+`
-
-* [[option_weechat.look.quote_nick_suffix]] *weechat.look.quote_nick_suffix*
-** опис: pass:none[текст који се приказује након надимка када се цитира порука (погледајте /help cursor)]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+">"+`
-
-* [[option_weechat.look.quote_time_format]] *weechat.look.quote_time_format*
-** опис: pass:none[формат времена када се цитира порука (погледајте /help cursor)]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+"%H:%M:%S"+`
-
-* [[option_weechat.look.read_marker]] *weechat.look.read_marker*
-** опис: pass:none[употреба маркера (линије или карактера) у баферима за означавање прве непрочитане линије]
-** тип: целобројна
-** вредности: none, line, char
-** подразумевана вредност: `+line+`
-
-* [[option_weechat.look.read_marker_always_show]] *weechat.look.read_marker_always_show*
-** опис: pass:none[маркер читања се увек приказује, чак и ако се налази иза последње линије бафера]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+off+`
-
-* [[option_weechat.look.read_marker_string]] *weechat.look.read_marker_string*
-** опис: pass:none[стринг који се користи за исцртавање линије маркера читања (стринг се понавља све до краја линије)]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+"- "+`
-
-* [[option_weechat.look.read_marker_update_on_buffer_switch]] *weechat.look.read_marker_update_on_buffer_switch*
-** опис: pass:none[ажурирање маркера читања када се прелази на друге бафере]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+on+`
-
-* [[option_weechat.look.save_config_on_exit]] *weechat.look.save_config_on_exit*
-** опис: pass:none[чување конфигурације приликом напуштања програма]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+on+`
-
-* [[option_weechat.look.save_config_with_fsync]] *weechat.look.save_config_with_fsync*
-** опис: pass:none[за синхронизацију конфигурационог фајла са меморијским уређајем се користи fsync (погледајте man fsync); ово је спорије, али би требало да спречи евентуални губитак података у случају губитка напајања током чувања конфигурационог фајла]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+off+`
-
-* [[option_weechat.look.save_layout_on_exit]] *weechat.look.save_layout_on_exit*
-** опис: pass:none[чување распореда приликом напуштања програма (бафери, прозори, или оба)]
-** тип: целобројна
-** вредности: none, buffers, windows, all
-** подразумевана вредност: `+none+`
-
-* [[option_weechat.look.scroll_amount]] *weechat.look.scroll_amount*
-** опис: pass:none[колико линија се скролује помоћу scroll_up и scroll_down]
-** тип: целобројна
-** вредности: 1 .. 2147483647
-** подразумевана вредност: `+3+`
-
-* [[option_weechat.look.scroll_bottom_after_switch]] *weechat.look.scroll_bottom_after_switch*
-** опис: pass:none[скролује се на дно прозора када се пређе на други бафер (у прозорима се не памти скрол позиција); скроловање се ради само у баферима са форматираним садржајем (не ради се за слободни садржај)]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+off+`
-
-* [[option_weechat.look.scroll_page_percent]] *weechat.look.scroll_page_percent*
-** опис: pass:none[проценат екрана који се скролује када се скролује страница навише или наниже (на пример, 100 значи једна страница, 50 пола странице)]
-** тип: целобројна
-** вредности: 1 .. 100
-** подразумевана вредност: `+100+`
-
-* [[option_weechat.look.search_text_not_found_alert]] *weechat.look.search_text_not_found_alert*
-** опис: pass:none[корисник се упозорава када се у баферу не пронађе текст који је тражио]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+on+`
-
-* [[option_weechat.look.separator_horizontal]] *weechat.look.separator_horizontal*
-** опис: pass:none[карактер који се користи за исцртавање хоризонталних сепаратора око трака и прозора (празна вредност ће помоћу ncurses да исцрта праву линију, али на неким терминалима може да изазове багове код избора URL адреса); ширина на екрану мора бити тачно један карактер]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+"-"+`
-
-* [[option_weechat.look.separator_vertical]] *weechat.look.separator_vertical*
-** опис: pass:none[карактер који се користи за исцртавање вертикалних сепаратора око трака и прозора (празна вредност ће помоћу ncurses да исцрта праву линију); ширина на екрану мора бити тачно један карактер]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+""+`
-
-* [[option_weechat.look.tab_width]] *weechat.look.tab_width*
-** опис: pass:none[број размака који се користи за приказ табулатора у порукама]
-** тип: целобројна
-** вредности: 1 .. 64
-** подразумевана вредност: `+1+`
-
-* [[option_weechat.look.time_format]] *weechat.look.time_format*
-** опис: pass:none[формат времена за датуме који се конвертују у стрингове и приказују у порукама (погледајте man strftime за спецификаторе датума/времена)]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+"%a, %d %b %Y %T"+`
-
-* [[option_weechat.look.window_auto_zoom]] *weechat.look.window_auto_zoom*
-** опис: pass:none[аутоматско зумирање на текући прозор ако прозор терминала постане сувише мали да покаже све прозоре (употребите alt-z да вратите зум прозора када терминалски прозор постане довољно велики)]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+off+`
-
-* [[option_weechat.look.window_separator_horizontal]] *weechat.look.window_separator_horizontal*
-** опис: pass:none[приказ хоризонталног сепаратора између прозора]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+on+`
-
-* [[option_weechat.look.window_separator_vertical]] *weechat.look.window_separator_vertical*
-** опис: pass:none[приказ вертикалног сепаратора између прозора]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+on+`
-
-* [[option_weechat.look.window_title]] *weechat.look.window_title*
-** опис: pass:none[наслов прозора (терминала за Curses ГКИ), који се поставља приликом покретања програма; празан стринг ће задржати постојећи наслов (напомена: садржај се израчунава, погледајте /help eval); пример: „WeeChat ${info:version}”]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+""+`
-
-* [[option_weechat.look.word_chars_highlight]] *weechat.look.word_chars_highlight*
-** опис: pass:none[листа карактера раздвојених зарезима (или опсега карактера) који се сматрају за део речи које се истичу; свака ставка може бити један карактер, опсег карактера (формат је: a-z), класа широких карактера (на пример „alnum”, погледајте man wctype); „!” испред ставке је чини негативном (тј. карактер се НЕ сматра као део речи); вредност „*” се подудара са било којим карактером; дозвољени су уникод карактери у формату \u1234, на пример \u00A0 за размак који не сме да се преломи (погледајте /help print за подржане формате)]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+"!\u00A0,-,_,|,alnum"+`
-
-* [[option_weechat.look.word_chars_input]] *weechat.look.word_chars_input*
-** опис: pass:none[листа карактера раздвојених зарезима (или опсег карактера) који се сматра за део речи у командној линији; свака ставка може бити један карактер, опсег карактера (формат: a-z), класа широких карактера (на пример „alnum”, погледајте man wctype); „!” испред ставке је чини негативном (тј. карактер се НЕ сматра као део речи); вредност „*” се подудара са било којим карактером; дозвољени су уникод карактери у формату \u1234, на пример \u00A0 за размак који не може да се преломи (погледајте /help print за подржане формате)]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+"!\u00A0,-,_,|,alnum"+`
-
-* [[option_weechat.network.connection_timeout]] *weechat.network.connection_timeout*
-** опис: pass:none[тајмаут (у секундама) који се чека на конекцију са удаљеним хостом (која се креира као процес дете)]
-** тип: целобројна
-** вредности: 1 .. 2147483647
-** подразумевана вредност: `+60+`
-
-* [[option_weechat.network.gnutls_ca_system]] *weechat.network.gnutls_ca_system*
-** опис: pass:none[током покретања учитава подразумеване системске ауторитете сертификата; ово може да се искључи како би се уштедело нешто меморије, али само онда када уопште не користите SSL везе]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+on+`
-
-* [[option_weechat.network.gnutls_ca_user]] *weechat.network.gnutls_ca_user*
-** опис: pass:none[додатни фајл(ови) са ауторитетима сертификата; више фајлова може да се раздвоји тачка зарезима (свака путања се израчунава, погледајте функцију string_eval_path_home у референтном приручнику API додатака)]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+""+`
-
-* [[option_weechat.network.gnutls_handshake_timeout]] *weechat.network.gnutls_handshake_timeout*
-** опис: pass:none[тајмаут (у секундама) за gnutls успостављање везе]
-** тип: целобројна
-** вредности: 1 .. 2147483647
-** подразумевана вредност: `+30+`
-
-* [[option_weechat.network.proxy_curl]] *weechat.network.proxy_curl*
-** опис: pass:none[име проксија који се користи за преузимање са URL адреса програмом Curl (користи се за преузимање листе скрипти и за позивање функције hook_process у скриптама); прокси мора бити дефинисан командом /proxy]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+""+`
-
-* [[option_weechat.plugin.autoload]] *weechat.plugin.autoload*
-** опис: pass:none[листа додатака раздвојена зарезима који се приликом покретања аутоматски учитавају, „*” значи сви пронађени додаци, име које почиње са „!” је негативна вредност која спречава да се тај додатак учита, џокер „*” се дозвољава у именима (примери: „*” или „*,!lua,!tcl”)]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+"*"+`
-
-* [[option_weechat.plugin.extension]] *weechat.plugin.extension*
-** опис: pass:none[листа екстензија имена фајлова за додатке раздвојених запетама]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+".so,.dll"+`
-
-* [[option_weechat.plugin.path]] *weechat.plugin.path*
-** опис: pass:none[путања за претраживање додатака (путања се израчунава, погледајте функцију string_eval_path_home у референтном приручнику API додатака)]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+"${weechat_data_dir}/plugins"+`
-
-* [[option_weechat.plugin.save_config_on_unload]] *weechat.plugin.save_config_on_unload*
-** опис: pass:none[чување конфигурације када се додаци уклањају из меморије]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+on+`
-
-* [[option_weechat.signal.sighup]] *weechat.signal.sighup*
-** опис: pass:none[команда која се извршава када се прими сигнал, више команди може да се раздвоји тачка зарезима (напомена: команде се израчунавају, погледајте /help eval)]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+"${if:${info:weechat_headless}?/reload:/quit -yes}"+`
-
-* [[option_weechat.signal.sigquit]] *weechat.signal.sigquit*
-** опис: pass:none[команда која се извршава када се прими сигнал, више команди може да се раздвоји тачка зарезима (напомена: команде се израчунавају, погледајте /help eval)]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+"/quit -yes"+`
-
-* [[option_weechat.signal.sigterm]] *weechat.signal.sigterm*
-** опис: pass:none[команда која се извршава када се прими сигнал, више команди може да се раздвоји тачка зарезима (напомена: команде се израчунавају, погледајте /help eval)]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+"/quit -yes"+`
-
-* [[option_weechat.signal.sigusr1]] *weechat.signal.sigusr1*
-** опис: pass:none[команда која се извршава када се прими сигнал, више команди може да се раздвоји тачка зарезима (напомена: команде се израчунавају, погледајте /help eval)]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+""+`
-
-* [[option_weechat.signal.sigusr2]] *weechat.signal.sigusr2*
-** опис: pass:none[команда која се извршава када се прими сигнал, више команди може да се раздвоји тачка зарезима (напомена: команде се израчунавају, погледајте /help eval)]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+""+`
-
-* [[option_weechat.startup.command_after_plugins]] *weechat.startup.command_after_plugins*
-** опис: pass:none[команда која се извршава када се покрене програм WeeChat, након учитавања додатака; више команди може да се раздвоји тачка зарезима (напомена: команде се израчунавају, погледајте /help eval)]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+""+`
-
-* [[option_weechat.startup.command_before_plugins]] *weechat.startup.command_before_plugins*
-** опис: pass:none[команда која се извршава када се покрене програм WeeChat, пре учитавања додатака; више команди може да се раздвоји тачка зарезима (напомена: команде се израчунавају, погледајте /help eval)]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+""+`
-
-* [[option_weechat.startup.display_logo]] *weechat.startup.display_logo*
-** опис: pass:none[приказивање WeeChat логоа приликом покретања]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+on+`
-
-* [[option_weechat.startup.display_version]] *weechat.startup.display_version*
-** опис: pass:none[приказивање WeeChat верзије приликом покретања]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+on+`
-
-* [[option_weechat.startup.sys_rlimit]] *weechat.startup.sys_rlimit*
-** опис: pass:none[поставља границе ресурса за WeeChat процес, формат је: „рес1:лимит1,рес2:лимит2”; име ресурса је крај константе (RLIMIT_XXX) исписано малим словима (за вредности погледајте man setrlimit); лимит -1 значи „неограничено”; пример: постављање неограничене величине за фајл језгра и максимално 1ГБ виртуелне меморије: „core:-1,as:1000000000”]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+""+`
-// end::weechat_options[]
-
-// tag::charset_options[]
-* [[option_charset.default.decode]] *charset.default.decode*
-** опис: pass:none[глобални скуп карактера у који се декодира: скуп карактера који се који се користи за декодирање долазних порука онда када нису у исправном UTF-8]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+"iso-8859-1"+`
-
-* [[option_charset.default.encode]] *charset.default.encode*
-** опис: pass:none[глобални скуп карактера у који се кодира: скуп карактера у који се кодирају одлазеће поруке (ако је празно, подразумевана вредност је UTF-8 јер је то интерни WeeChat скуп карактера)]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+""+`
-// end::charset_options[]
+** подразумевана вредност: `+yellow+`
-// tag::logger_options[]
-* [[option_logger.color.backlog_end]] *logger.color.backlog_end*
-** опис: pass:none[боја за линију којом се завршавају старије линије]
+* [[option_fset.color.section_selected]] *fset.color.section_selected*
+** опис: pass:none[боја за одељак у изабраној линији]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+default+`
+** подразумевана вредност: `+white+`
-* [[option_logger.color.backlog_line]] *logger.color.backlog_line*
-** опис: pass:none[боја за старије, користи се само ако је опција logger.file.color_lines искључена]
+* [[option_fset.color.string_values]] *fset.color.string_values*
+** опис: pass:none[боја за стринг вредности]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** подразумевана вредност: `+default+`
-* [[option_logger.file.auto_log]] *logger.file.auto_log*
-** опис: pass:none[аутоматско чување садржаја бафера у фајлове (осим у случају да бафер искључује логовање); ако је искључена, логовање се искључује у свим баферима]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+on+`
-
-* [[option_logger.file.color_lines]] *logger.file.color_lines*
-** опис: pass:none[употреба ANSI кодова боја у линијама које се уписују у лог фајлове и приказ старијих линија уз употребу ових боја]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+off+`
-
-* [[option_logger.file.flush_delay]] *logger.file.flush_delay*
-** опис: pass:none[број секунди између спирања лог фајлова (0 = лог фајлови се уписују тренутно чим се свака линија испише)]
-** тип: целобројна
-** вредности: 0 .. 3600
-** подразумевана вредност: `+120+`
-
-* [[option_logger.file.fsync]] *logger.file.fsync*
-** опис: pass:none[употреба fsync за синхронизацију лог фајла на меморијски уређај након спирања (погледајте man fsync); ово је спорије али би требало да спречи евентуални губитак података у случају нестанка напајања за време чувања лог фајла]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+off+`
-
-* [[option_logger.file.info_lines]] *logger.file.info_lines*
-** опис: pass:none[упис линије са информацијама у лог фајл када се започне или заустави логовање за бафер]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+off+`
-
-* [[option_logger.file.mask]] *logger.file.mask*
-** опис: pass:none[подразумевана маска имена фајла за лог фајлове (формат је „директоријум/до/фајла” или „фајл”, без почетног „/” јер се опција „path” употребљава за изградњу комплетне путање до фајла); дозвољене су локалне бафер променљиве (требало би да користите само променљиве које су дефинисане у свим баферима, на пример, НЕ би требало да користите ни $server ни $channel); дозвољени су спецификатори датума (погледајте man strftime)]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+"$plugin.$name.weechatlog"+`
-
-* [[option_logger.file.name_lower_case]] *logger.file.name_lower_case*
-** опис: pass:none[за имена лог фајлова се користе само мала слова]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+on+`
-
-* [[option_logger.file.nick_prefix]] *logger.file.nick_prefix*
-** опис: pass:none[текст који се исписује испред надимка у префиксу поруке, пример: „<”]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+""+`
-
-* [[option_logger.file.nick_suffix]] *logger.file.nick_suffix*
-** опис: pass:none[текст који се исписује иза надимка у префиксу поруке, пример: „>”]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+""+`
-
-* [[option_logger.file.path]] *logger.file.path*
-** опис: pass:none[путања за WeeChat лог фајлове; дозвољавају се спецификатори датума (погледајте man strftime) (путања се израчунава, погледајте функцију string_eval_path_home у референтном приручнику API додатака)]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+"${weechat_data_dir}/logs"+`
-
-* [[option_logger.file.replacement_char]] *logger.file.replacement_char*
-** опис: pass:none[карактер који замењује специјалне карактере у именима фајлова која се изграђују помоћу маске (као што је граничник за директоријуме)]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+"_"+`
-
-* [[option_logger.file.rotation_compression_level]] *logger.file.rotation_compression_level*
-** опис: pass:none[ниво компресије за лог фајлове који се ротирају (са екстензијом „.1”, „.2”, итд.), ако је укључена опција logger.file.rotation_compression_type: 1 = ниска компресија / брзо ... 100 = најбоља компресија / споро; вредност је проценат конвертован у 1-9 за gzip и 1-19 за zstd; препоручује се подразумевана вредност, она нуди добар компромис између компресије и брзине]
-** тип: целобројна
-** вредности: 1 .. 100
-** подразумевана вредност: `+20+`
-
-* [[option_logger.file.rotation_compression_type]] *logger.file.rotation_compression_type*
-** опис: pass:none[тип компресије за ротиране лог фајлове; ако је постављено на „none”, ротирани лог фајлови се не компресују; УПОЗОРЕЊЕ: ако је ротирање уљкучено са неким другим типом компресије (или без компресије), најпре морате да из меморије уклоните логер додатак, компресујете фајлове новим типом (или да декомпресујете фајлове), па да затим промените опцију у logger.conf, и на крају учитате логер додатак]
-** тип: целобројна
-** вредности: none, gzip, zstd
-** подразумевана вредност: `+none+`
-
-* [[option_logger.file.rotation_size_max]] *logger.file.rotation_size_max*
-** опис: pass:none[када се достигне ова величина, врши се ротација лог фајлова: постојећи ротирани лог фајловима се мења име (.1 постаје .2, .2 постаје .3, итд.), атекућем фајлу се поставља екстензија .1; дозвољава се цели број са суфиксом: b = бајтова (подразумевано ако се не наведе јединица), k = килобајта, m = мегабајта, g = гигабајта, t = терабајта; примерe: „2g” значи да се ротација врши ако је величина фајла > 2,000,000,000 бајтова; ако се постави на „0”, ротација се не врши (нема ограничења лог фајла); УПОЗОРЕЊЕ: пре него што промените ову опцију, требало би најпре да поставите тип компресије опцијом logger.file.rotation_compression_type]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+"0"+`
-
-* [[option_logger.file.time_format]] *logger.file.time_format*
-** опис: pass:none[временска ознака која се користи у лог фајловима (погледајте man strftime за спецификаторе датума/времена)]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+"%Y-%m-%d %H:%M:%S"+`
-
-* [[option_logger.look.backlog]] *logger.look.backlog*
-** опис: pass:none[максимални број линија које се приказују из лог фајла када се креира нови бафер (0 = нема приказа старијих линија)]
-** тип: целобројна
-** вредности: 0 .. 2147483647
-** подразумевана вредност: `+20+`
-
-* [[option_logger.look.backlog_conditions]] *logger.look.backlog_conditions*
-** опис: pass:none[услови под којима се приказују старије линије (напомена: садржај се израчунава, погледајте /help eval); празна вредност приказује старије линије на свим баферима; на пример, ако желите да се старије линије приказују само за приватне бафере: „${type} == private”]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+""+`
-// end::logger_options[]
-
-// tag::exec_options[]
-* [[option_exec.color.flag_finished]] *exec.color.flag_finished*
-** опис: pass:none[боја текста за заставицу команде у листи команди која је завршила извршавање]
+* [[option_fset.color.string_values_selected]] *fset.color.string_values_selected*
+** опис: pass:none[боја за стринг вредности у изабраној линији]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+lightred+`
+** подразумевана вредност: `+white+`
-* [[option_exec.color.flag_running]] *exec.color.flag_running*
-** опис: pass:none[боја текста за заставицу команде у листи команди која се тренутно извршава]
+* [[option_fset.color.title_count_options]] *fset.color.title_count_options*
+** опис: pass:none[боја за број опција у наслову бафера које су пронађене уз текући филтер]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+lightgreen+`
-
-* [[option_exec.command.default_options]] *exec.command.default_options*
-** опис: pass:none[подразумеване опције за команду /exec (погледајте /help exec); пример: „-nosh -bg” ако желите да се све команде извршавају у позадини (без излаза), у без употребе командног окружења]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+""+`
-
-* [[option_exec.command.purge_delay]] *exec.command.purge_delay*
-** опис: pass:none[време пре чишћења завршених команди (у секундама, 0 = команде се чисте тренутно, -1 = чишћење се уопште не ради)]
-** тип: целобројна
-** вредности: -1 .. 25920000
-** подразумевана вредност: `+0+`
-
-* [[option_exec.command.shell]] *exec.command.shell*
-** опис: pass:none[командно окружење које се користи из команду „/exec -sh”; може да буде само име окружења ако се налазу у PATH (на пример „bash”) или апсолутна путања до окружења (на пример „/bin/bash”); ако је вредност празна, користиће се „sh” (напомена: садржај се израчунава, погледајте /help eval)]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+"${env:SHELL}"+`
-// end::exec_options[]
+** подразумевана вредност: `+cyan+`
-// tag::trigger_options[]
-* [[option_trigger.color.flag_command]] *trigger.color.flag_command*
-** опис: pass:none[боја текста за заставицу команде (у /trigger list)]
+* [[option_fset.color.title_current_option]] *fset.color.title_current_option*
+** опис: pass:none[боја за број текуће опције у наслову бафера]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+lightgreen+`
+** подразумевана вредност: `+lightcyan+`
-* [[option_trigger.color.flag_conditions]] *trigger.color.flag_conditions*
-** опис: pass:none[боја текста за заставицу услова (у /trigger list)]
+* [[option_fset.color.title_filter]] *fset.color.title_filter*
+** опис: pass:none[боја за филтер у наслову бафера]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** подразумевана вредност: `+yellow+`
-* [[option_trigger.color.flag_post_action]] *trigger.color.flag_post_action*
-** опис: pass:none[боја текста за заставицу пост акције (у /trigger list)]
+* [[option_fset.color.title_marked_options]] *fset.color.title_marked_options*
+** опис: pass:none[боја за број маркираних опција у наслову бафера]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+lightblue+`
+** подразумевана вредност: `+lightgreen+`
-* [[option_trigger.color.flag_regex]] *trigger.color.flag_regex*
-** опис: pass:none[боја текста за заставицу регуларног израза (у /trigger list)]
+* [[option_fset.color.title_sort]] *fset.color.title_sort*
+** опис: pass:none[боја за сортирање у наслову бафера]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+lightcyan+`
+** подразумевана вредност: `+white+`
-* [[option_trigger.color.flag_return_code]] *trigger.color.flag_return_code*
-** опис: pass:none[боја текста за заставицу повратног кода (у /trigger list)]
+* [[option_fset.color.type]] *fset.color.type*
+** опис: pass:none[боја за тип]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+lightmagenta+`
+** подразумевана вредност: `+green+`
-* [[option_trigger.color.identifier]] *trigger.color.identifier*
-** опис: pass:none[боја текста за идентификатор контекста окидача у монитор баферу]
+* [[option_fset.color.type_selected]] *fset.color.type_selected*
+** опис: pass:none[боја за тип у изабраној линији]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+cyan+`
+** подразумевана вредност: `+lightgreen+`
-* [[option_trigger.color.regex]] *trigger.color.regex*
-** опис: pass:none[боја текста за регуларне изразе]
+* [[option_fset.color.unmarked]] *fset.color.unmarked*
+** опис: pass:none[боја за индикатор маркера када опција није маркирана]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+white+`
+** подразумевана вредност: `+default+`
-* [[option_trigger.color.replace]] *trigger.color.replace*
-** опис: pass:none[боја текста за текст замене (у регуларним изразима)]
+* [[option_fset.color.unmarked_selected]] *fset.color.unmarked_selected*
+** опис: pass:none[боја за индикатор маркера у изабраној линији када опција није маркирана]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+cyan+`
+** подразумевана вредност: `+white+`
-* [[option_trigger.color.trigger]] *trigger.color.trigger*
-** опис: pass:none[боја текста за име окидача]
+* [[option_fset.color.value]] *fset.color.value*
+** опис: pass:none[боја за вредност]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+green+`
+** подразумевана вредност: `+cyan+`
-* [[option_trigger.color.trigger_disabled]] *trigger.color.trigger_disabled*
-** опис: pass:none[боја текста за име искљученог окидача]
+* [[option_fset.color.value_changed]] *fset.color.value_changed*
+** опис: pass:none[боја за измењену вредност (различиту од подразумеване)]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+red+`
-
-* [[option_trigger.look.enabled]] *trigger.look.enabled*
-** опис: pass:none[укључивање подршке за окидаче]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+on+`
-
-* [[option_trigger.look.monitor_strip_colors]] *trigger.look.monitor_strip_colors*
-** опис: pass:none[из вредности хеш табеле приказаних у монитор баферу ће се уклонити боје]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+off+`
-// end::trigger_options[]
-
-// tag::spell_options[]
-* [[option_spell.check.commands]] *spell.check.commands*
-** опис: pass:none[листа команди раздвојених запетама за које се укључује провера правописа (провера правописа се искључује за све остале команде)]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+"away,command,cycle,kick,kickban,me,msg,notice,part,query,quit,topic"+`
-
-* [[option_spell.check.default_dict]] *spell.check.default_dict*
-** опис: pass:none[подразумевани речник (или листа речника раздвојених запетама) који треба да се користе када бафер нема дефинисан ниједан речник (оставите празно ако желите да се искључи провера правописа у баферима у којима је нисте експлицитно укључили)]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+""+`
-
-* [[option_spell.check.during_search]] *spell.check.during_search*
-** опис: pass:none[провера речи за време претраге текста у баферу]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+off+`
-
-* [[option_spell.check.enabled]] *spell.check.enabled*
-** опис: pass:none[укључивање провере правописа у командној линији]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+off+`
-
-* [[option_spell.check.real_time]] *spell.check.real_time*
-** опис: pass:none[провера правописа речи у реалном времену (спорије, подразумевано је искључено: речи се проверавају само ако иза њих дође граничник)]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+off+`
-
-* [[option_spell.check.suggestions]] *spell.check.suggestions*
-** опис: pass:none[проја предлога који се приказује у ставки траке „spell_suggest” за сваки речник постављен у баферу (-1 = искључује предлоге, 0 = приказује све могуће предлоге у свим језицима)]
-** тип: целобројна
-** вредности: -1 .. 2147483647
-** подразумевана вредност: `+-1+`
-
-* [[option_spell.check.word_min_length]] *spell.check.word_min_length*
-** опис: pass:none[минимална дужина речи да би се проверио правопис (употребите 0 ако желите да се проверавају све речи)]
-** тип: целобројна
-** вредности: 0 .. 2147483647
-** подразумевана вредност: `+2+`
+** подразумевана вредност: `+brown+`
-* [[option_spell.color.misspelled]] *spell.color.misspelled*
-** опис: pass:none[боја текста за погрешно написане речи (трака уноса)]
+* [[option_fset.color.value_changed_selected]] *fset.color.value_changed_selected*
+** опис: pass:none[боја за измењену вредност у изабраној линији (различиту од подразумеване)]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+lightred+`
+** подразумевана вредност: `+yellow+`
-* [[option_spell.color.suggestion]] *spell.color.suggestion*
-** опис: pass:none[боја текста за предлог исправке погрешно исписане рели у ставки траке „spell_suggest”]
+* [[option_fset.color.value_selected]] *fset.color.value_selected*
+** опис: pass:none[боја за вредност у изабраној линији]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+default+`
+** подразумевана вредност: `+lightcyan+`
-* [[option_spell.color.suggestion_delimiter_dict]] *spell.color.suggestion_delimiter_dict*
-** опис: pass:none[боја текста за граничнике који се исписују између два речника у ставки траке „spell_suggest”]
+* [[option_fset.color.value_undef]] *fset.color.value_undef*
+** опис: pass:none[боја за недефинисану вредност]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+cyan+`
+** подразумевана вредност: `+magenta+`
-* [[option_spell.color.suggestion_delimiter_word]] *spell.color.suggestion_delimiter_word*
-** опис: pass:none[боја текста за граничнике који се исписују између две речи у ставки траке „spell_suggest”]
+* [[option_fset.color.value_undef_selected]] *fset.color.value_undef_selected*
+** опис: pass:none[боја за недефинисану вредност у изабраној линији]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+cyan+`
-
-* [[option_spell.look.suggestion_delimiter_dict]] *spell.look.suggestion_delimiter_dict*
-** опис: pass:none[граничник који се приказује између два речника у ставки траке „spell_suggest”]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+" / "+`
-
-* [[option_spell.look.suggestion_delimiter_word]] *spell.look.suggestion_delimiter_word*
-** опис: pass:none[граничник који се приказује између две речи у ставки траке „spell_suggest”]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+","+`
-// end::spell_options[]
-
-// tag::buflist_options[]
-* [[option_buflist.format.buffer]] *buflist.format.buffer*
-** опис: pass:none[формат сваке линије са бафером (напомена: садржај се израчунава, погледајте /help buflist); пример: стандардни формат за ставку траке „buflist” и само број бафера за број између великих заграда или за остале ставке траке („buflist2” и „buflist3”): „${if:${bar_item.name}==buflist?${format_number}${indent}${format_nick_prefix}${color_hotlist}${format_name}:[${number}\]}”]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+"${format_number}${indent}${format_nick_prefix}${color_hotlist}${format_name}"+`
-
-* [[option_buflist.format.buffer_current]] *buflist.format.buffer_current*
-** опис: pass:none[формат линије са текућим бафером (напомена: садржај се израчунава, погледајте /help buflist)]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+"${color:,blue}${format_buffer}"+`
-
-* [[option_buflist.format.hotlist]] *buflist.format.hotlist*
-** опис: pass:none[формат вруће листе (напомена: садржај се израчунава, погледајте /help buflist)]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+" ${color:green}(${hotlist}${color:green})"+`
-
-* [[option_buflist.format.hotlist_highlight]] *buflist.format.hotlist_highlight*
-** опис: pass:none[формат за бафер са „highlight” нивоом вруће листе (напомена: садржај се израчунава, погледајте /help buflist)]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+"${color:magenta}"+`
-
-* [[option_buflist.format.hotlist_low]] *buflist.format.hotlist_low*
-** опис: pass:none[формат за бафер са „low” нивоом врућ листе (напомена: садржај се израчунава, погледајте /help buflist)]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+"${color:white}"+`
-
-* [[option_buflist.format.hotlist_message]] *buflist.format.hotlist_message*
-** опис: pass:none[формат за бафер са „message” нивоом вруће листе (напомена: садржај се израчунава, погледајте /help buflist)]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+"${color:brown}"+`
-
-* [[option_buflist.format.hotlist_none]] *buflist.format.hotlist_none*
-** опис: pass:none[формат за бафер који се не налази у врућој листи (напомена: садржај се израчунава, погледајте /help buflist)]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+"${color:default}"+`
-
-* [[option_buflist.format.hotlist_private]] *buflist.format.hotlist_private*
-** опис: pass:none[формат за бафер са „private” нивоом вруће листе (напомена: садржај се израчунава, погледајте /help buflist)]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+"${color:green}"+`
-
-* [[option_buflist.format.hotlist_separator]] *buflist.format.hotlist_separator*
-** опис: pass:none[граничник за бројеве у врућој листи (напомена: садржај се израчунава, погледајте /help buflist)]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+"${color:default},"+`
+** подразумевана вредност: `+lightmagenta+`
-* [[option_buflist.format.indent]] *buflist.format.indent*
-** опис: pass:none[стринг који се приказује за увлачење канала и приватних бафера (напомена: садржај се израчунава /help buflist)]
+* [[option_fset.format.export_help]] *fset.format.export_help*
+** опис: pass:none[формат линије помоћи која се записује пре сваке опције која се извози у фајл (напомена: садржај се израчунава, погледајте /help fset)]
** тип: стринг
** вредности: било који стринг
-** подразумевана вредност: `+" "+`
+** подразумевана вредност: `+"# ${description2}"+`
-* [[option_buflist.format.lag]] *buflist.format.lag*
-** опис: pass:none[формат за кашњење у баферу IRC сервера (напомена: садржај се израчунава, погледајте /help buflist)]
+* [[option_fset.format.export_option]] *fset.format.export_option*
+** опис: pass:none[формат сваке опције која се извози у фајл (напомена: садржај се израчунава, погледајте /help fset)]
** тип: стринг
** вредности: било који стринг
-** подразумевана вредност: `+" ${color:green}[${color:brown}${lag}${color:green}]"+`
+** подразумевана вредност: `+"/set ${name} ${quoted_value}"+`
-* [[option_buflist.format.name]] *buflist.format.name*
-** опис: pass:none[формат за име бафера (напомена: садржај се израчунава, погледајте /help buflist)]
+* [[option_fset.format.export_option_null]] *fset.format.export_option_null*
+** опис: pass:none[формат сваке опција која има „null” вредност а извози се у фајл (напомена: садржај се израчунава, погледајте /help fset)]
** тип: стринг
** вредности: било који стринг
-** подразумевана вредност: `+"${name}"+`
+** подразумевана вредност: `+"/unset ${name}"+`
-* [[option_buflist.format.nick_prefix]] *buflist.format.nick_prefix*
-** опис: pass:none[формат за префикс надимка на каналу (напомена: садржај се израчунава, погледајте /help buflist)]
+* [[option_fset.format.option1]] *fset.format.option1*
+** опис: pass:none[први формат сваке линије, користи се када је вредност опције fset.look.format_number постављена на 1 (напомена: садржај се израчунава, погледајте /help fset); празан стринг значи да се користи подразумевани формат („${marked} ${name} ${type} ${value2}”), који је без израчунавања, дакле и много бржи; формати могу да се пребацују тастером ctrl+X]
** тип: стринг
** вредности: било који стринг
-** подразумевана вредност: `+"${color_nick_prefix}${nick_prefix}"+`
+** подразумевана вредност: `+""+`
-* [[option_buflist.format.number]] *buflist.format.number*
-** опис: pass:none[формат за број бафера, ${number} је увучено број (напомена: садржај се извршава, погледајте /help buflist)]
+* [[option_fset.format.option2]] *fset.format.option2*
+** опис: pass:none[други формат сваке линије, користи се када је вредност опције fset.look.format_number постављена на 2 (напомена: садржај се израчунава, погледајте /help fset); празан стринг значи да се користи подразумевани формат („${marked} ${name} ${type} ${value2}”), који је без израчунавања, дакле и много бржи; формати могу да се пребацују тастером ctrl+X]
** тип: стринг
** вредности: било који стринг
-** подразумевана вредност: `+"${color:green}${number}${if:${number_displayed}?.: }"+`
+** подразумевана вредност: `+"${marked} ${name} ${type} ${value2}${newline} ${empty_name} ${_default_value}${color:darkgray} -- ${min}..${max}${newline} ${empty_name} ${description}"+`
-* [[option_buflist.format.tls_version]] *buflist.format.tls_version*
-** опис: pass:none[формат за TLS верзију у баферу IRC сервера (напомена: садржај се израчунава, погледајте /help buflist)]
+* [[option_fset.look.auto_refresh]] *fset.look.auto_refresh*
+** опис: pass:none[листа опција раздвојених запетама које треба да се аутоматски освеже у fset баферу (ако је отворен); „*” значи све опције (препоручена вредност), име које почиње на „!” представља негативну вредност која спречава да се опција освежи, у именима је дозвољена употреба џокера „*” (пример: „*,!plugin.section.*”)]
** тип: стринг
** вредности: било који стринг
-** подразумевана вредност: `+" ${color:default}(${if:${tls_version}==TLS1.3?${color:green}:${if:${tls_version}==TLS1.2?${color:yellow}:${color:red}}}${translate:${tls_version}}${color:default})"+`
+** подразумевана вредност: `+"*"+`
-* [[option_buflist.look.add_newline]] *buflist.look.add_newline*
-** опис: pass:none[додаје прелом линије између приказаних бафера, тако да се сваки бафер приказује на одвојеној линији (препоручено); ако је искључено, преломи редова морају ручно да се додају у формате са „${\n}”, и више нису могуће акције мишем]
+* [[option_fset.look.auto_unmark]] *fset.look.auto_unmark*
+** опис: pass:none[аутоматско уклањање маркирања са свих опција након акције над маркираним опцијама или након освежавања]
** тип: логичка
** вредности: on, off
-** подразумевана вредност: `+on+`
-
-* [[option_buflist.look.auto_scroll]] *buflist.look.auto_scroll*
-** опис: pass:none[аутоматски скролује листу бафера тако да се текући бафер увек приказује (ово функционише само са траком на левој/десној позицији са „vertical” испуном); ова вредност је проценат линија које се приказује испред текућег бафера када се скролује (-1 = искључује скроловање); на пример, 50 значи да је текући бафер након скроловања у средини траке, 0 значи на врху траке, а 100 на дну]
-** тип: целобројна
-** вредности: -1 .. 100
-** подразумевана вредност: `+50+`
+** подразумевана вредност: `+off+`
-* [[option_buflist.look.display_conditions]] *buflist.look.display_conditions*
-** опис: pass:none[услови под којима се бафер приказује (напомена: садржај се израчунава, погледајте /help buflist); на пример, ако желите да сакријете серверске бафере онда када су спојени са основним бафером: „${buffer.hidden}==0 && ((${type}!=server && ${buffer.full_name}!=core.weechat) || ${buffer.active}==1)”]
+* [[option_fset.look.condition_catch_set]] *fset.look.condition_catch_set*
+** опис: pass:none[услов којим се хвата /set команда и приказују резултати у fset баферу; могу да се користе следеће променљиве: ${name} (име опције које се даје /set команди), ${count} (број аргумената пронађених у аргументу команде /set); празан стринг искључује хватање /set команде; ако је вредност „1”, fset бафер се увек користи са /set командом]
** тип: стринг
** вредности: било који стринг
-** подразумевана вредност: `+"${buffer.hidden}==0"+`
-
-* [[option_buflist.look.enabled]] *buflist.look.enabled*
-** опис: pass:none[enable buflist; препроручује се да се уместо простог скривања траке употреби ова опција јер она уклања и неке интерне куке које више нису потребне када трака сакрије; такође можете да употребите и команду „/buflist toggle” или подразумевани тастер alt+shift+b]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+on+`
-
-* [[option_buflist.look.mouse_jump_visited_buffer]] *buflist.look.mouse_jump_visited_buffer*
-** опис: pass:none[ако је укључена, кликови левим/десним тастером миша на линију са текућим бафером врши скок на претходни/наредни посећени бафер]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+off+`
-
-* [[option_buflist.look.mouse_move_buffer]] *buflist.look.mouse_move_buffer*
-** опис: pass:none[ако је укључено, гестикулација мишем (превлачење и испуштање) померају бафере у листи]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+on+`
-
-* [[option_buflist.look.mouse_wheel]] *buflist.look.mouse_wheel*
-** опис: pass:none[ако је укључено, померање точкића миша горе/доле врши скок на претходни/наредни бафер у листи]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+on+`
-
-* [[option_buflist.look.nick_prefix]] *buflist.look.nick_prefix*
-** опис: pass:none[враћа префикс надимка и његову боју из листе надимака тако да у формату може да се користи ${nick_prefix}; ово може да буде споро у баферима са доста надимака у листи надимака, тако да је ова опција подразумевано искључена]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+off+`
+** подразумевана вредност: `+"${count} >= 1"+`
-* [[option_buflist.look.nick_prefix_empty]] *buflist.look.nick_prefix_empty*
-** опис: pass:none[када је укључен префикс надимка, у случају да за бафер није дефинисан префикс надимка, приказује се размак]
+* [[option_fset.look.export_help_default]] *fset.look.export_help_default*
+** опис: pass:none[подразумевано се уз сваку извезену опцију записује и помоћ (ово може да се премости аргументима „-help” и „-nohelp” за команду /fset -export)]
** тип: логичка
** вредности: on, off
** подразумевана вредност: `+on+`
-* [[option_buflist.look.signals_refresh]] *buflist.look.signals_refresh*
-** опис: pass:none[листа додатних сигнала који се каче раздвојених запетама и окида освежавање листе бафера; ово може да буде корисно ако се у форматима употребљавају неке кориснички дефинисане променљиве којима је неоходно специфично освежавање]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+""+`
-
-* [[option_buflist.look.sort]] *buflist.look.sort*
-** опис: pass:none[листа поља по којима се сортирају бафери, раздвојена запетама; свако поље је hdata променљива бафера („var”), hdata променљива IRC сервера („irc_server.var”) или hdata променљива IRC канала („irc_channel.var”); испред поља може да се користи карактер „-” чиме се обрће редослед, а за поређење које не прави разлику у величини слова, може да се користи карактер „~”; пример: „-~short_name” за поређење које не води рачуна о величини слова и обрнуто сортирање по кратком имену бафера (напомена: садржај се израчунава, пре него што се издели у поља, али у то време је „bar_item” једина променљива која може да се користи, како би се направила разлика између различитих ставки листе бафера, на пример „${bar_item.name}”)]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+"number,-active"+`
-
-* [[option_buflist.look.use_items]] *buflist.look.use_items*
-** опис: pass:none[број buflist ставки траке које могу да се користе; имена ставки су: „buflist”, „buflist2”, „buflist3”; будите пажљиви, употреба више од једне ставке траке успорава приказ листе бафера]
+* [[option_fset.look.format_number]] *fset.look.format_number*
+** опис: pass:none[број формата који се користи за приказ опција; ово се динамички мења тастером ctrl-X у fset баферу]
** тип: целобројна
-** вредности: 1 .. 3
+** вредности: 1 .. 2
** подразумевана вредност: `+1+`
-// end::buflist_options[]
-// tag::fifo_options[]
-* [[option_fifo.file.enabled]] *fifo.file.enabled*
-** опис: pass:none[укључивање FIFO пајпа]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+on+`
-
-* [[option_fifo.file.path]] *fifo.file.path*
-** опис: pass:none[путања за FIFO фајл; у путањи може да се користи PID програма WeeChat са ${info:pid} (путања се израчунава, погледајте функцију string_eval_path_home у референтном приручнику API додатака)]
+* [[option_fset.look.marked_string]] *fset.look.marked_string*
+** опис: pass:none[стринг који се приказује када се опција маркира (како ви се извршила акција над више опција одједном)]
** тип: стринг
** вредности: било који стринг
-** подразумевана вредност: `+"${weechat_runtime_dir}/weechat_fifo_${info:pid}"+`
-// end::fifo_options[]
-
-// tag::typing_options[]
-* [[option_typing.look.delay_purge_paused]] *typing.look.delay_purge_paused*
-** опис: pass:none[број секунди након постављања статуса паузирано: ако се достигне, статус статус куцања се уклања]
-** тип: целобројна
-** вредности: 1 .. 2147483647
-** подразумевана вредност: `+30+`
-
-* [[option_typing.look.delay_purge_typing]] *typing.look.delay_purge_typing*
-** опис: pass:none[број секунди након постављања статуса куцања: ако се достигне, статус куцања се уклања]
-** тип: целобројна
-** вредности: 1 .. 2147483647
-** подразумевана вредност: `+6+`
+** подразумевана вредност: `+"*"+`
-* [[option_typing.look.delay_set_paused]] *typing.look.delay_set_paused*
-** опис: pass:none[број секунди након уношења последњег карактера: ако се достигне, статус куцања постаје „паузирано” и не шаље се више ниједан сигнал куцања]
+* [[option_fset.look.scroll_horizontal]] *fset.look.scroll_horizontal*
+** опис: pass:none[скроловање у лево/десно у fset баферу (проценат ширине)]
** тип: целобројна
-** вредности: 1 .. 2147483647
+** вредности: 1 .. 100
** подразумевана вредност: `+10+`
-* [[option_typing.look.enabled_nicks]] *typing.look.enabled_nicks*
-** опис: pass:none[куцање је укључено за остале надимке (приказује инфо о куцању за надимке из текућег бафера)]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+off+`
-
-* [[option_typing.look.enabled_self]] *typing.look.enabled_self*
-** опис: pass:none[куцање је укључено за сопствене поруке (осталим корисницима се шаље инфо о куцању]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+off+`
-
-* [[option_typing.look.input_min_chars]] *typing.look.input_min_chars*
-** опис: pass:none[мин број карактера у поруци који окида слање сигнала о куцању]
-** тип: целобројна
-** вредности: 1 .. 2147483647
-** подразумевана вредност: `+4+`
-
-* [[option_typing.look.item_max_length]] *typing.look.item_max_length*
-** опис: pass:none[макс број карактера који се приказује у ставци траке "typing" (0 = садржај се не одсеца)]
-** тип: целобројна
-** вредности: 0 .. 2147483647
-** подразумевана вредност: `+0+`
-// end::typing_options[]
-
-// tag::xfer_options[]
-* [[option_xfer.color.status_aborted]] *xfer.color.status_aborted*
-** опис: pass:none[боја текста за „прекинут” статус]
-** тип: боја
-** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+lightred+`
-
-* [[option_xfer.color.status_active]] *xfer.color.status_active*
-** опис: pass:none[боја текста за „активан” статус]
-** тип: боја
-** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+lightblue+`
-
-* [[option_xfer.color.status_connecting]] *xfer.color.status_connecting*
-** опис: pass:none[боја текста за статус „connecting”]
-** тип: боја
-** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+yellow+`
-
-* [[option_xfer.color.status_done]] *xfer.color.status_done*
-** опис: pass:none[боја текста за „завршен” статус]
-** тип: боја
-** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+lightgreen+`
-
-* [[option_xfer.color.status_failed]] *xfer.color.status_failed*
-** опис: pass:none[боја текста за „није успео” статус]
-** тип: боја
-** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+lightred+`
-
-* [[option_xfer.color.status_waiting]] *xfer.color.status_waiting*
-** опис: pass:none[боја текста за „чекање” статус]
-** тип: боја
-** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+lightcyan+`
-
-* [[option_xfer.color.text]] *xfer.color.text*
-** опис: pass:none[боја текста у xfer баферу]
-** тип: боја
-** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+default+`
-
-* [[option_xfer.color.text_bg]] *xfer.color.text_bg*
-** опис: pass:none[боја позадине у xfer баферу]
-** тип: боја
-** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+default+`
-
-* [[option_xfer.color.text_selected]] *xfer.color.text_selected*
-** опис: pass:none[боја текста у изабраној линији xfer бафера]
-** тип: боја
-** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+white+`
-
-* [[option_xfer.file.auto_accept_chats]] *xfer.file.auto_accept_chats*
-** опис: pass:none[аутоматско прихватање захтева за разговор (употребљавајте опрезно!)]
+* [[option_fset.look.show_plugins_desc]] *fset.look.show_plugins_desc*
+** опис: pass:none[приказивање описа опција додатака (plugins.desc.*)]
** тип: логичка
** вредности: on, off
** подразумевана вредност: `+off+`
-* [[option_xfer.file.auto_accept_files]] *xfer.file.auto_accept_files*
-** опис: pass:none[аутоматско прихватање долазних фајлова (употребљавајте опрезно!)]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+off+`
+* [[option_fset.look.sort]] *fset.look.sort*
+** опис: pass:none[листа поља за сортирање опција раздвојених запетама (погледајте /help fset за листу поља); карактер „-” може да се користи испред поља чиме се обрће редослед, карактер „~” може да се употреби за поређење које не прави разлику у величини слова; пример: „-~name” за поређење које не прави разлику у величини слова и обрнуто сортирање по имену опције]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+"~name"+`
-* [[option_xfer.file.auto_accept_nicks]] *xfer.file.auto_accept_nicks*
-** опис: pass:none[листа надимака раздвојених запетама за које се долазни фајлови и разговори аутоматски прихватају; формат је „сервер.надимак” (за одређени сервер) или „надимак” (за све сервере); пример: „libera.FlashCode,andrew”]
+* [[option_fset.look.unmarked_string]] *fset.look.unmarked_string*
+** опис: pass:none[стринг који се приказује када опција није маркирана]
** тип: стринг
** вредности: било који стринг
-** подразумевана вредност: `+""+`
+** подразумевана вредност: `+" "+`
-* [[option_xfer.file.auto_check_crc32]] *xfer.file.auto_check_crc32*
-** опис: pass:none[аутоматска провера CRC32 контролне суме фајла ако се пронађе у имену фајла (8 хексадецималних карактера)]
+* [[option_fset.look.use_color_value]] *fset.look.use_color_value*
+** опис: pass:none[опције у вези боја се приказују обојено]
** тип: логичка
** вредности: on, off
** подразумевана вредност: `+off+`
-* [[option_xfer.file.auto_rename]] *xfer.file.auto_rename*
-** опис: pass:none[измена имена долазном фајлу ако већ постоји (додаје се „.1”, „.2”, ...)]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+on+`
-
-* [[option_xfer.file.auto_resume]] *xfer.file.auto_resume*
-** опис: pass:none[аутоматски наставак трансфера фајла ако се веза са удаљеним хостом прекине]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+on+`
-
-* [[option_xfer.file.convert_spaces]] *xfer.file.convert_spaces*
-** опис: pass:none[конвертовање размака у доње црте када се шаљу и примају фајлови]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+on+`
-
-* [[option_xfer.file.download_path]] *xfer.file.download_path*
-** опис: pass:none[путања за писање долазних фајлова (путања се израчунава, погледајте функцију string_eval_path_home у референтном приручнику API додатака)]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+"${weechat_data_dir}/xfer"+`
-
-* [[option_xfer.file.download_temporary_suffix]] *xfer.file.download_temporary_suffix*
-** опис: pass:none[суфикс привременог фајла који се користи током трансфера долазног фајла, он се уклања након успешног завршетка трансфера; ако је празан стринг, не користи се никакав суфикс имена фајла током трансфера]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+".part"+`
-
-* [[option_xfer.file.upload_path]] *xfer.file.upload_path*
-** опис: pass:none[путања за читање фајлова за слање (путања се израчунава, погледајте функцију string_eval_path_home у референтном приручнику API додатака)]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+"~"+`
-
-* [[option_xfer.file.use_nick_in_filename]] *xfer.file.use_nick_in_filename*
-** опис: pass:none[употреба удаљеног надимка као префикс у имену локалног фајла када се прима фајл]
+* [[option_fset.look.use_keys]] *fset.look.use_keys*
+** опис: pass:none[употреба тастера alt+X у fset баферу за извршавање акција над опцијама; ако је искључено, дозвољен је само унос]
** тип: логичка
** вредности: on, off
** подразумевана вредност: `+on+`
-* [[option_xfer.look.auto_open_buffer]] *xfer.look.auto_open_buffer*
-** опис: pass:none[ауто отварање xfer бафера када се на листу дода нови xfer]
+* [[option_fset.look.use_mute]] *fset.look.use_mute*
+** опис: pass:none[за постављање опција се користи команда /mute]
** тип: логичка
** вредности: on, off
-** подразумевана вредност: `+on+`
-
-* [[option_xfer.look.progress_bar_size]] *xfer.look.progress_bar_size*
-** опис: pass:none[величина траке напретка, у карактерима (ако је 0, трака напретка је искључена)]
-** тип: целобројна
-** вредности: 0 .. 256
-** подразумевана вредност: `+20+`
-
-* [[option_xfer.look.pv_tags]] *xfer.look.pv_tags*
-** опис: pass:none[листа ознака раздвојених запетама које се користе у приватним порукама, на пример: „notify_message”, „notify_private” или „notify_highlight”]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+"notify_private"+`
-
-* [[option_xfer.network.blocksize]] *xfer.network.blocksize*
-** опис: pass:none[величина блока за слање пакета, у бајтовима]
-** тип: целобројна
-** вредности: 1024 .. 102400
-** подразумевана вредност: `+65536+`
+** подразумевана вредност: `+off+`
+// end::fset_options[]
-* [[option_xfer.network.fast_send]] *xfer.network.fast_send*
-** опис: pass:none[не чека се на ACK када се шаље фајл]
+// tag::guile_options[]
+* [[option_guile.look.check_license]] *guile.look.check_license*
+** опис: pass:none[провера лиценце скрипти када се учитавају: ако се лиценца разликује од лиценце додатка, исписује се упозорење]
** тип: логичка
** вредности: on, off
-** подразумевана вредност: `+on+`
-
-* [[option_xfer.network.own_ip]] *xfer.network.own_ip*
-** опис: pass:none[IP или DNS адреса која се користи за слање фајлова/разговора (ако је празно, користи се IP локалног интерфејса)]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+""+`
-
-* [[option_xfer.network.port_range]] *xfer.network.port_range*
-** опис: pass:none[ограничава одлазне фајлове/разговоре тако да користе само портове у наведеном опсегу (корисно за NAT) (синтакса: један порт, тј. 5000 или опсег портова, тј. 5000-5015, празна вредност значи било који порт, препоручује се употреба портова већих од 1024, јер само root може да користи портове испод 1024)]
-** тип: стринг
-** вредности: било који стринг
-** подразумевана вредност: `+""+`
+** подразумевана вредност: `+off+`
-* [[option_xfer.network.send_ack]] *xfer.network.send_ack*
-** опис: pass:none[слање acks када се примају фајлови; ако је искључено, трансфер може да се закочи у случају да пошиљалац чека на acks (на пример програм WeeChat који шаље фајл са опцијом xfer.network.fast_send постављеном на off); с друге стране, искључивање слања acks може спречити замрзавање у случају да се acks одмах не шаљу пошиљаоцу]
+* [[option_guile.look.eval_keep_context]] *guile.look.eval_keep_context*
+** опис: pass:none[задржава се контекст између два позива израчунавања изворног кода (опција „eval” команде script или info „%s_eval”); за израчунавање кода скрипте се користи скривена скрипта; ако је ова опција искључена, ова скривена скрипта се уклања из меморије након сваког израчунавања: ово троши мање меморије, али је спорије]
** тип: логичка
** вредности: on, off
** подразумевана вредност: `+on+`
-
-* [[option_xfer.network.speed_limit_recv]] *xfer.network.speed_limit_recv*
-** опис: pass:none[ограничење брзине за пријем фајлова, у килобајтима по секунди (0 значи без ограничења)]
-** тип: целобројна
-** вредности: 0 .. 2147483647
-** подразумевана вредност: `+0+`
-
-* [[option_xfer.network.speed_limit_send]] *xfer.network.speed_limit_send*
-** опис: pass:none[ограничење брзине за слање фајлова, у килобајтима по секунди (0 значи без ограничења)]
-** тип: целобројна
-** вредности: 0 .. 2147483647
-** подразумевана вредност: `+0+`
-
-* [[option_xfer.network.timeout]] *xfer.network.timeout*
-** опис: pass:none[тајмаут за xfer захтев (у секундама)]
-** тип: целобројна
-** вредности: 5 .. 2147483647
-** подразумевана вредност: `+300+`
-// end::xfer_options[]
+// end::guile_options[]
// tag::irc_options[]
* [[option_irc.color.input_nick]] *irc.color.input_nick*
@@ -2985,6 +1601,192 @@
** подразумевана вредност: `+""+`
// end::irc_options[]
+// tag::javascript_options[]
+* [[option_javascript.look.check_license]] *javascript.look.check_license*
+** опис: pass:none[провера лиценце скрипти када се учитавају: ако се лиценца разликује од лиценце додатка, исписује се упозорење]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+off+`
+
+* [[option_javascript.look.eval_keep_context]] *javascript.look.eval_keep_context*
+** опис: pass:none[задржава се контекст између два позива израчунавања изворног кода (опција „eval” команде script или info „%s_eval”); за израчунавање кода скрипте се користи скривена скрипта; ако је ова опција искључена, ова скривена скрипта се уклања из меморије након сваког израчунавања: ово троши мање меморије, али је спорије]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+on+`
+// end::javascript_options[]
+
+// tag::logger_options[]
+* [[option_logger.color.backlog_end]] *logger.color.backlog_end*
+** опис: pass:none[боја за линију којом се завршавају старије линије]
+** тип: боја
+** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** подразумевана вредност: `+default+`
+
+* [[option_logger.color.backlog_line]] *logger.color.backlog_line*
+** опис: pass:none[боја за старије, користи се само ако је опција logger.file.color_lines искључена]
+** тип: боја
+** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** подразумевана вредност: `+default+`
+
+* [[option_logger.file.auto_log]] *logger.file.auto_log*
+** опис: pass:none[аутоматско чување садржаја бафера у фајлове (осим у случају да бафер искључује логовање); ако је искључена, логовање се искључује у свим баферима]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+on+`
+
+* [[option_logger.file.color_lines]] *logger.file.color_lines*
+** опис: pass:none[употреба ANSI кодова боја у линијама које се уписују у лог фајлове и приказ старијих линија уз употребу ових боја]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+off+`
+
+* [[option_logger.file.flush_delay]] *logger.file.flush_delay*
+** опис: pass:none[број секунди између спирања лог фајлова (0 = лог фајлови се уписују тренутно чим се свака линија испише)]
+** тип: целобројна
+** вредности: 0 .. 3600
+** подразумевана вредност: `+120+`
+
+* [[option_logger.file.fsync]] *logger.file.fsync*
+** опис: pass:none[употреба fsync за синхронизацију лог фајла на меморијски уређај након спирања (погледајте man fsync); ово је спорије али би требало да спречи евентуални губитак података у случају нестанка напајања за време чувања лог фајла]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+off+`
+
+* [[option_logger.file.info_lines]] *logger.file.info_lines*
+** опис: pass:none[упис линије са информацијама у лог фајл када се започне или заустави логовање за бафер]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+off+`
+
+* [[option_logger.file.mask]] *logger.file.mask*
+** опис: pass:none[подразумевана маска имена фајла за лог фајлове (формат је „директоријум/до/фајла” или „фајл”, без почетног „/” јер се опција „path” употребљава за изградњу комплетне путање до фајла); дозвољене су локалне бафер променљиве (требало би да користите само променљиве које су дефинисане у свим баферима, на пример, НЕ би требало да користите ни $server ни $channel); дозвољени су спецификатори датума (погледајте man strftime)]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+"$plugin.$name.weechatlog"+`
+
+* [[option_logger.file.name_lower_case]] *logger.file.name_lower_case*
+** опис: pass:none[за имена лог фајлова се користе само мала слова]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+on+`
+
+* [[option_logger.file.nick_prefix]] *logger.file.nick_prefix*
+** опис: pass:none[текст који се исписује испред надимка у префиксу поруке, пример: „<”]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+""+`
+
+* [[option_logger.file.nick_suffix]] *logger.file.nick_suffix*
+** опис: pass:none[текст који се исписује иза надимка у префиксу поруке, пример: „>”]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+""+`
+
+* [[option_logger.file.path]] *logger.file.path*
+** опис: pass:none[путања за WeeChat лог фајлове; дозвољавају се спецификатори датума (погледајте man strftime) (путања се израчунава, погледајте функцију string_eval_path_home у референтном приручнику API додатака)]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+"${weechat_data_dir}/logs"+`
+
+* [[option_logger.file.replacement_char]] *logger.file.replacement_char*
+** опис: pass:none[карактер који замењује специјалне карактере у именима фајлова која се изграђују помоћу маске (као што је граничник за директоријуме)]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+"_"+`
+
+* [[option_logger.file.rotation_compression_level]] *logger.file.rotation_compression_level*
+** опис: pass:none[ниво компресије за лог фајлове који се ротирају (са екстензијом „.1”, „.2”, итд.), ако је укључена опција logger.file.rotation_compression_type: 1 = ниска компресија / брзо ... 100 = најбоља компресија / споро; вредност је проценат конвертован у 1-9 за gzip и 1-19 за zstd; препоручује се подразумевана вредност, она нуди добар компромис између компресије и брзине]
+** тип: целобројна
+** вредности: 1 .. 100
+** подразумевана вредност: `+20+`
+
+* [[option_logger.file.rotation_compression_type]] *logger.file.rotation_compression_type*
+** опис: pass:none[тип компресије за ротиране лог фајлове; ако је постављено на „none”, ротирани лог фајлови се не компресују; УПОЗОРЕЊЕ: ако је ротирање уљкучено са неким другим типом компресије (или без компресије), најпре морате да из меморије уклоните логер додатак, компресујете фајлове новим типом (или да декомпресујете фајлове), па да затим промените опцију у logger.conf, и на крају учитате логер додатак]
+** тип: целобројна
+** вредности: none, gzip, zstd
+** подразумевана вредност: `+none+`
+
+* [[option_logger.file.rotation_size_max]] *logger.file.rotation_size_max*
+** опис: pass:none[када се достигне ова величина, врши се ротација лог фајлова: постојећи ротирани лог фајловима се мења име (.1 постаје .2, .2 постаје .3, итд.), атекућем фајлу се поставља екстензија .1; дозвољава се цели број са суфиксом: b = бајтова (подразумевано ако се не наведе јединица), k = килобајта, m = мегабајта, g = гигабајта, t = терабајта; примерe: „2g” значи да се ротација врши ако је величина фајла > 2,000,000,000 бајтова; ако се постави на „0”, ротација се не врши (нема ограничења лог фајла); УПОЗОРЕЊЕ: пре него што промените ову опцију, требало би најпре да поставите тип компресије опцијом logger.file.rotation_compression_type]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+"0"+`
+
+* [[option_logger.file.time_format]] *logger.file.time_format*
+** опис: pass:none[временска ознака која се користи у лог фајловима (погледајте man strftime за спецификаторе датума/времена)]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+"%Y-%m-%d %H:%M:%S"+`
+
+* [[option_logger.look.backlog]] *logger.look.backlog*
+** опис: pass:none[максимални број линија које се приказују из лог фајла када се креира нови бафер (0 = нема приказа старијих линија)]
+** тип: целобројна
+** вредности: 0 .. 2147483647
+** подразумевана вредност: `+20+`
+
+* [[option_logger.look.backlog_conditions]] *logger.look.backlog_conditions*
+** опис: pass:none[услови под којима се приказују старије линије (напомена: садржај се израчунава, погледајте /help eval); празна вредност приказује старије линије на свим баферима; на пример, ако желите да се старије линије приказују само за приватне бафере: „${type} == private”]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+""+`
+// end::logger_options[]
+
+// tag::lua_options[]
+* [[option_lua.look.check_license]] *lua.look.check_license*
+** опис: pass:none[провера лиценце скрипти када се учитавају: ако се лиценца разликује од лиценце додатка, исписује се упозорење]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+off+`
+
+* [[option_lua.look.eval_keep_context]] *lua.look.eval_keep_context*
+** опис: pass:none[задржава се контекст између два позива израчунавања изворног кода (опција „eval” команде script или info „%s_eval”); за израчунавање кода скрипте се користи скривена скрипта; ако је ова опција искључена, ова скривена скрипта се уклања из меморије након сваког израчунавања: ово троши мање меморије, али је спорије]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+on+`
+// end::lua_options[]
+
+// tag::perl_options[]
+* [[option_perl.look.check_license]] *perl.look.check_license*
+** опис: pass:none[провера лиценце скрипти када се учитавају: ако се лиценца разликује од лиценце додатка, исписује се упозорење]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+off+`
+
+* [[option_perl.look.eval_keep_context]] *perl.look.eval_keep_context*
+** опис: pass:none[задржава се контекст између два позива израчунавања изворног кода (опција „eval” команде script или info „%s_eval”); за израчунавање кода скрипте се користи скривена скрипта; ако је ова опција искључена, ова скривена скрипта се уклања из меморије након сваког израчунавања: ово троши мање меморије, али је спорије]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+on+`
+// end::perl_options[]
+
+// tag::php_options[]
+* [[option_php.look.check_license]] *php.look.check_license*
+** опис: pass:none[провера лиценце скрипти када се учитавају: ако се лиценца разликује од лиценце додатка, исписује се упозорење]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+off+`
+
+* [[option_php.look.eval_keep_context]] *php.look.eval_keep_context*
+** опис: pass:none[задржава се контекст између два позива израчунавања изворног кода (опција „eval” команде script или info „%s_eval”); за израчунавање кода скрипте се користи скривена скрипта; ако је ова опција искључена, ова скривена скрипта се уклања из меморије након сваког израчунавања: ово троши мање меморије, али је спорије]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+on+`
+// end::php_options[]
+
+// tag::python_options[]
+* [[option_python.look.check_license]] *python.look.check_license*
+** опис: pass:none[провера лиценце скрипти када се учитавају: ако се лиценца разликује од лиценце додатка, исписује се упозорење]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+off+`
+
+* [[option_python.look.eval_keep_context]] *python.look.eval_keep_context*
+** опис: pass:none[задржава се контекст између два позива израчунавања изворног кода (опција „eval” команде script или info „%s_eval”); за израчунавање кода скрипте се користи скривена скрипта; ако је ова опција искључена, ова скривена скрипта се уклања из меморије након сваког израчунавања: ово троши мање меморије, али је спорије]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+on+`
+// end::python_options[]
+
// tag::relay_options[]
* [[option_relay.color.client]] *relay.color.client*
** опис: pass:none[боја текста за опис клијента]
@@ -3197,90 +1999,6 @@
** подразумевана вредност: `+""+`
// end::relay_options[]
-// tag::guile_options[]
-* [[option_guile.look.check_license]] *guile.look.check_license*
-** опис: pass:none[провера лиценце скрипти када се учитавају: ако се лиценца разликује од лиценце додатка, исписује се упозорење]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+off+`
-
-* [[option_guile.look.eval_keep_context]] *guile.look.eval_keep_context*
-** опис: pass:none[задржава се контекст између два позива израчунавања изворног кода (опција „eval” команде script или info „%s_eval”); за израчунавање кода скрипте се користи скривена скрипта; ако је ова опција искључена, ова скривена скрипта се уклања из меморије након сваког израчунавања: ово троши мање меморије, али је спорије]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+on+`
-// end::guile_options[]
-
-// tag::javascript_options[]
-* [[option_javascript.look.check_license]] *javascript.look.check_license*
-** опис: pass:none[провера лиценце скрипти када се учитавају: ако се лиценца разликује од лиценце додатка, исписује се упозорење]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+off+`
-
-* [[option_javascript.look.eval_keep_context]] *javascript.look.eval_keep_context*
-** опис: pass:none[задржава се контекст између два позива израчунавања изворног кода (опција „eval” команде script или info „%s_eval”); за израчунавање кода скрипте се користи скривена скрипта; ако је ова опција искључена, ова скривена скрипта се уклања из меморије након сваког израчунавања: ово троши мање меморије, али је спорије]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+on+`
-// end::javascript_options[]
-
-// tag::lua_options[]
-* [[option_lua.look.check_license]] *lua.look.check_license*
-** опис: pass:none[провера лиценце скрипти када се учитавају: ако се лиценца разликује од лиценце додатка, исписује се упозорење]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+off+`
-
-* [[option_lua.look.eval_keep_context]] *lua.look.eval_keep_context*
-** опис: pass:none[задржава се контекст између два позива израчунавања изворног кода (опција „eval” команде script или info „%s_eval”); за израчунавање кода скрипте се користи скривена скрипта; ако је ова опција искључена, ова скривена скрипта се уклања из меморије након сваког израчунавања: ово троши мање меморије, али је спорије]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+on+`
-// end::lua_options[]
-
-// tag::perl_options[]
-* [[option_perl.look.check_license]] *perl.look.check_license*
-** опис: pass:none[провера лиценце скрипти када се учитавају: ако се лиценца разликује од лиценце додатка, исписује се упозорење]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+off+`
-
-* [[option_perl.look.eval_keep_context]] *perl.look.eval_keep_context*
-** опис: pass:none[задржава се контекст између два позива израчунавања изворног кода (опција „eval” команде script или info „%s_eval”); за израчунавање кода скрипте се користи скривена скрипта; ако је ова опција искључена, ова скривена скрипта се уклања из меморије након сваког израчунавања: ово троши мање меморије, али је спорије]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+on+`
-// end::perl_options[]
-
-// tag::php_options[]
-* [[option_php.look.check_license]] *php.look.check_license*
-** опис: pass:none[провера лиценце скрипти када се учитавају: ако се лиценца разликује од лиценце додатка, исписује се упозорење]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+off+`
-
-* [[option_php.look.eval_keep_context]] *php.look.eval_keep_context*
-** опис: pass:none[задржава се контекст између два позива израчунавања изворног кода (опција „eval” команде script или info „%s_eval”); за израчунавање кода скрипте се користи скривена скрипта; ако је ова опција искључена, ова скривена скрипта се уклања из меморије након сваког израчунавања: ово троши мање меморије, али је спорије]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+on+`
-// end::php_options[]
-
-// tag::python_options[]
-* [[option_python.look.check_license]] *python.look.check_license*
-** опис: pass:none[провера лиценце скрипти када се учитавају: ако се лиценца разликује од лиценце додатка, исписује се упозорење]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+off+`
-
-* [[option_python.look.eval_keep_context]] *python.look.eval_keep_context*
-** опис: pass:none[задржава се контекст између два позива израчунавања изворног кода (опција „eval” команде script или info „%s_eval”); за израчунавање кода скрипте се користи скривена скрипта; ако је ова опција искључена, ова скривена скрипта се уклања из меморије након сваког израчунавања: ово троши мање меморије, али је спорије]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+on+`
-// end::python_options[]
-
// tag::ruby_options[]
* [[option_ruby.look.check_license]] *ruby.look.check_license*
** опис: pass:none[провера лиценце скрипти када се учитавају: ако се лиценца разликује од лиценце додатка, исписује се упозорење]
@@ -3295,20 +2013,6 @@
** подразумевана вредност: `+on+`
// end::ruby_options[]
-// tag::tcl_options[]
-* [[option_tcl.look.check_license]] *tcl.look.check_license*
-** опис: pass:none[провера лиценце скрипти када се учитавају: ако се лиценца разликује од лиценце додатка, исписује се упозорење]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+off+`
-
-* [[option_tcl.look.eval_keep_context]] *tcl.look.eval_keep_context*
-** опис: pass:none[задржава се контекст између два позива израчунавања изворног кода (опција „eval” команде script или info „%s_eval”); за израчунавање кода скрипте се користи скривена скрипта; ако је ова опција искључена, ова скривена скрипта се уклања из меморије након сваког израчунавања: ово троши мање меморије, али је спорије]
-** тип: логичка
-** вредности: on, off
-** подразумевана вредност: `+on+`
-// end::tcl_options[]
-
// tag::script_options[]
* [[option_script.color.status_autoloaded]] *script.color.status_autoloaded*
** опис: pass:none[боја за статус „аутоучитана” („a”)]
@@ -3557,484 +2261,1780 @@
** подразумевана вредност: `+"https://weechat.org/files/plugins.xml.gz"+`
// end::script_options[]
-// tag::fset_options[]
-* [[option_fset.color.default_value]] *fset.color.default_value*
-** опис: pass:none[боја за подразумевану вредност]
-** тип: боја
-** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+default+`
+// tag::sec_options[]
+* [[option_sec.crypt.cipher]] *sec.crypt.cipher*
+** опис: pass:none[шифра која се користи за шифрирање података (број након алгоритма је величина кључа у битовима)]
+** тип: целобројна
+** вредности: aes128, aes192, aes256
+** подразумевана вредност: `+aes256+`
-* [[option_fset.color.default_value_selected]] *fset.color.default_value_selected*
-** опис: pass:none[боја за подразумевану вредност у изабраној линији]
+* [[option_sec.crypt.hash_algo]] *sec.crypt.hash_algo*
+** опис: pass:none[хеш алгоритам који се користи за проверу дешифрованих података]
+** тип: целобројна
+** вредности: sha224, sha256, sha384, sha512
+** подразумевана вредност: `+sha256+`
+
+* [[option_sec.crypt.passphrase_command]] *sec.crypt.passphrase_command*
+** опис: pass:none[чита тајну реченицу са излаза ове системске команде (користи се само прва линија и она не сме да садржи никакав додатни карактер); ова опција се користи само када се чита фајл sec.conf и ако није постављена променљива окружења „WEECHAT_PASSPHRASE” (променљива окружења има виши приоритет); пример са сефом лозинки: „/usr/bin/pass show weechat/passphrase”]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+""+`
+
+* [[option_sec.crypt.salt]] *sec.crypt.salt*
+** опис: pass:none[када се генерише кључ који се користи у шифрирању, употребљава се со (препоручује се за максималну сигурност); када је укључено садржај шифрованих података у фајлу sec.conf ће се разликовати приликом сваког уписа у фајл; ако фајл sec.conf чувате у систему за контролу верзија, онда ову опцију можете да искључите и тако увек имате исти садржај у фајлу]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+on+`
+// end::sec_options[]
+
+// tag::spell_options[]
+* [[option_spell.check.commands]] *spell.check.commands*
+** опис: pass:none[листа команди раздвојених запетама за које се укључује провера правописа (провера правописа се искључује за све остале команде)]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+"away,command,cycle,kick,kickban,me,msg,notice,part,query,quit,topic"+`
+
+* [[option_spell.check.default_dict]] *spell.check.default_dict*
+** опис: pass:none[подразумевани речник (или листа речника раздвојених запетама) који треба да се користе када бафер нема дефинисан ниједан речник (оставите празно ако желите да се искључи провера правописа у баферима у којима је нисте експлицитно укључили)]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+""+`
+
+* [[option_spell.check.during_search]] *spell.check.during_search*
+** опис: pass:none[провера речи за време претраге текста у баферу]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+off+`
+
+* [[option_spell.check.enabled]] *spell.check.enabled*
+** опис: pass:none[укључивање провере правописа у командној линији]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+off+`
+
+* [[option_spell.check.real_time]] *spell.check.real_time*
+** опис: pass:none[провера правописа речи у реалном времену (спорије, подразумевано је искључено: речи се проверавају само ако иза њих дође граничник)]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+off+`
+
+* [[option_spell.check.suggestions]] *spell.check.suggestions*
+** опис: pass:none[проја предлога који се приказује у ставки траке „spell_suggest” за сваки речник постављен у баферу (-1 = искључује предлоге, 0 = приказује све могуће предлоге у свим језицима)]
+** тип: целобројна
+** вредности: -1 .. 2147483647
+** подразумевана вредност: `+-1+`
+
+* [[option_spell.check.word_min_length]] *spell.check.word_min_length*
+** опис: pass:none[минимална дужина речи да би се проверио правопис (употребите 0 ако желите да се проверавају све речи)]
+** тип: целобројна
+** вредности: 0 .. 2147483647
+** подразумевана вредност: `+2+`
+
+* [[option_spell.color.misspelled]] *spell.color.misspelled*
+** опис: pass:none[боја текста за погрешно написане речи (трака уноса)]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+white+`
+** подразумевана вредност: `+lightred+`
-* [[option_fset.color.description]] *fset.color.description*
-** опис: pass:none[боја за опис]
+* [[option_spell.color.suggestion]] *spell.color.suggestion*
+** опис: pass:none[боја текста за предлог исправке погрешно исписане рели у ставки траке „spell_suggest”]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** подразумевана вредност: `+default+`
-* [[option_fset.color.description_selected]] *fset.color.description_selected*
-** опис: pass:none[боја за опис у изабраној линији]
+* [[option_spell.color.suggestion_delimiter_dict]] *spell.color.suggestion_delimiter_dict*
+** опис: pass:none[боја текста за граничнике који се исписују између два речника у ставки траке „spell_suggest”]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+white+`
+** подразумевана вредност: `+cyan+`
-* [[option_fset.color.file]] *fset.color.file*
-** опис: pass:none[боја за фајл]
+* [[option_spell.color.suggestion_delimiter_word]] *spell.color.suggestion_delimiter_word*
+** опис: pass:none[боја текста за граничнике који се исписују између две речи у ставки траке „spell_suggest”]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+default+`
+** подразумевана вредност: `+cyan+`
-* [[option_fset.color.file_changed]] *fset.color.file_changed*
-** опис: pass:none[боја за фајл у случају да је вредност промењена]
+* [[option_spell.look.suggestion_delimiter_dict]] *spell.look.suggestion_delimiter_dict*
+** опис: pass:none[граничник који се приказује између два речника у ставки траке „spell_suggest”]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+" / "+`
+
+* [[option_spell.look.suggestion_delimiter_word]] *spell.look.suggestion_delimiter_word*
+** опис: pass:none[граничник који се приказује између две речи у ставки траке „spell_suggest”]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+","+`
+// end::spell_options[]
+
+// tag::tcl_options[]
+* [[option_tcl.look.check_license]] *tcl.look.check_license*
+** опис: pass:none[провера лиценце скрипти када се учитавају: ако се лиценца разликује од лиценце додатка, исписује се упозорење]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+off+`
+
+* [[option_tcl.look.eval_keep_context]] *tcl.look.eval_keep_context*
+** опис: pass:none[задржава се контекст између два позива израчунавања изворног кода (опција „eval” команде script или info „%s_eval”); за израчунавање кода скрипте се користи скривена скрипта; ако је ова опција искључена, ова скривена скрипта се уклања из меморије након сваког израчунавања: ово троши мање меморије, али је спорије]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+on+`
+// end::tcl_options[]
+
+// tag::trigger_options[]
+* [[option_trigger.color.flag_command]] *trigger.color.flag_command*
+** опис: pass:none[боја текста за заставицу команде (у /trigger list)]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+brown+`
+** подразумевана вредност: `+lightgreen+`
-* [[option_fset.color.file_changed_selected]] *fset.color.file_changed_selected*
-** опис: pass:none[боја за фајл у изабраној линији у случају да је вредност промењена]
+* [[option_trigger.color.flag_conditions]] *trigger.color.flag_conditions*
+** опис: pass:none[боја текста за заставицу услова (у /trigger list)]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** подразумевана вредност: `+yellow+`
-* [[option_fset.color.file_selected]] *fset.color.file_selected*
-** опис: pass:none[боја за фајл у изабраној линији]
+* [[option_trigger.color.flag_post_action]] *trigger.color.flag_post_action*
+** опис: pass:none[боја текста за заставицу пост акције (у /trigger list)]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+white+`
+** подразумевана вредност: `+lightblue+`
-* [[option_fset.color.help_default_value]] *fset.color.help_default_value*
-** опис: pass:none[боја за подразумевану вредност у траци за помоћ]
+* [[option_trigger.color.flag_regex]] *trigger.color.flag_regex*
+** опис: pass:none[боја текста за заставицу регуларног израза (у /trigger list)]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+white+`
+** подразумевана вредност: `+lightcyan+`
-* [[option_fset.color.help_description]] *fset.color.help_description*
-** опис: pass:none[боја за опис у траци за помоћ]
+* [[option_trigger.color.flag_return_code]] *trigger.color.flag_return_code*
+** опис: pass:none[боја текста за заставицу повратног кода (у /trigger list)]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+default+`
+** подразумевана вредност: `+lightmagenta+`
-* [[option_fset.color.help_name]] *fset.color.help_name*
-** опис: pass:none[боја за име у траци за помоћ]
+* [[option_trigger.color.identifier]] *trigger.color.identifier*
+** опис: pass:none[боја текста за идентификатор контекста окидача у монитор баферу]
+** тип: боја
+** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** подразумевана вредност: `+cyan+`
+
+* [[option_trigger.color.regex]] *trigger.color.regex*
+** опис: pass:none[боја текста за регуларне изразе]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** подразумевана вредност: `+white+`
-* [[option_fset.color.help_quotes]] *fset.color.help_quotes*
-** опис: pass:none[боја за знаке навода око стринг вредности]
+* [[option_trigger.color.replace]] *trigger.color.replace*
+** опис: pass:none[боја текста за текст замене (у регуларним изразима)]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+darkgray+`
+** подразумевана вредност: `+cyan+`
-* [[option_fset.color.help_values]] *fset.color.help_values*
-** опис: pass:none[боја за дозвољене вредности]
+* [[option_trigger.color.trigger]] *trigger.color.trigger*
+** опис: pass:none[боја текста за име окидача]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+default+`
+** подразумевана вредност: `+green+`
-* [[option_fset.color.index]] *fset.color.index*
-** опис: pass:none[боја за индекс опције]
+* [[option_trigger.color.trigger_disabled]] *trigger.color.trigger_disabled*
+** опис: pass:none[боја текста за име искљученог окидача]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+cyan+`
+** подразумевана вредност: `+red+`
-* [[option_fset.color.index_selected]] *fset.color.index_selected*
-** опис: pass:none[боја за индекс опције у изабраној линији]
+* [[option_trigger.look.enabled]] *trigger.look.enabled*
+** опис: pass:none[укључивање подршке за окидаче]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+on+`
+
+* [[option_trigger.look.monitor_strip_colors]] *trigger.look.monitor_strip_colors*
+** опис: pass:none[из вредности хеш табеле приказаних у монитор баферу ће се уклонити боје]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+off+`
+// end::trigger_options[]
+
+// tag::typing_options[]
+* [[option_typing.look.delay_purge_paused]] *typing.look.delay_purge_paused*
+** опис: pass:none[број секунди након постављања статуса паузирано: ако се достигне, статус статус куцања се уклања]
+** тип: целобројна
+** вредности: 1 .. 2147483647
+** подразумевана вредност: `+30+`
+
+* [[option_typing.look.delay_purge_typing]] *typing.look.delay_purge_typing*
+** опис: pass:none[број секунди након постављања статуса куцања: ако се достигне, статус куцања се уклања]
+** тип: целобројна
+** вредности: 1 .. 2147483647
+** подразумевана вредност: `+6+`
+
+* [[option_typing.look.delay_set_paused]] *typing.look.delay_set_paused*
+** опис: pass:none[број секунди након уношења последњег карактера: ако се достигне, статус куцања постаје „паузирано” и не шаље се више ниједан сигнал куцања]
+** тип: целобројна
+** вредности: 1 .. 2147483647
+** подразумевана вредност: `+10+`
+
+* [[option_typing.look.enabled_nicks]] *typing.look.enabled_nicks*
+** опис: pass:none[куцање је укључено за остале надимке (приказује инфо о куцању за надимке из текућег бафера)]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+off+`
+
+* [[option_typing.look.enabled_self]] *typing.look.enabled_self*
+** опис: pass:none[куцање је укључено за сопствене поруке (осталим корисницима се шаље инфо о куцању]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+off+`
+
+* [[option_typing.look.input_min_chars]] *typing.look.input_min_chars*
+** опис: pass:none[мин број карактера у поруци који окида слање сигнала о куцању]
+** тип: целобројна
+** вредности: 1 .. 2147483647
+** подразумевана вредност: `+4+`
+
+* [[option_typing.look.item_max_length]] *typing.look.item_max_length*
+** опис: pass:none[макс број карактера који се приказује у ставци траке "typing" (0 = садржај се не одсеца)]
+** тип: целобројна
+** вредности: 0 .. 2147483647
+** подразумевана вредност: `+0+`
+// end::typing_options[]
+
+// tag::weechat_options[]
+* [[option_weechat.color.bar_more]] *weechat.color.bar_more*
+** опис: pass:none[боја текста за „+” када се траке скролују]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+lightcyan+`
+** подразумевана вредност: `+lightmagenta+`
-* [[option_fset.color.line_marked_bg1]] *fset.color.line_marked_bg1*
-** опис: pass:none[боја позадине за маркирану линију (користи се са првим форматом, погледајте опцију fset.format.option1)]
+* [[option_weechat.color.chat]] *weechat.color.chat*
+** опис: pass:none[боја текста за разговор]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** подразумевана вредност: `+default+`
-* [[option_fset.color.line_marked_bg2]] *fset.color.line_marked_bg2*
-** опис: pass:none[боја позадине за маркирану линију (користи се са другим форматом, погледајте опцију fset.format.option2)]
+* [[option_weechat.color.chat_bg]] *weechat.color.chat_bg*
+** опис: pass:none[боја позадине за разговор]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** подразумевана вредност: `+default+`
-* [[option_fset.color.line_selected_bg1]] *fset.color.line_selected_bg1*
-** опис: pass:none[боја позадине за изабрану линију (користи се са првим форматом, погледајте опцију fset.format.option1)]
+* [[option_weechat.color.chat_buffer]] *weechat.color.chat_buffer*
+** опис: pass:none[боја текста за имена бафера]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+blue+`
+** подразумевана вредност: `+white+`
-* [[option_fset.color.line_selected_bg2]] *fset.color.line_selected_bg2*
-** опис: pass:none[боја позадине за изабрану линију (користи се са другим форматом, погледајте опцију fset.format.option2)]
+* [[option_weechat.color.chat_channel]] *weechat.color.chat_channel*
+** опис: pass:none[боја текста за имена канала]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+red+`
+** подразумевана вредност: `+white+`
-* [[option_fset.color.marked]] *fset.color.marked*
-** опис: pass:none[боја за индикатор маркера]
+* [[option_weechat.color.chat_day_change]] *weechat.color.chat_day_change*
+** опис: pass:none[боја текста за поруку која се приказује при промени дана]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+brown+`
+** подразумевана вредност: `+cyan+`
-* [[option_fset.color.marked_selected]] *fset.color.marked_selected*
-** опис: pass:none[боја за индикатор маркера на изабраној линији]
+* [[option_weechat.color.chat_delimiters]] *weechat.color.chat_delimiters*
+** опис: pass:none[боја текста за граничнике]
+** тип: боја
+** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** подразумевана вредност: `+green+`
+
+* [[option_weechat.color.chat_highlight]] *weechat.color.chat_highlight*
+** опис: pass:none[боја текста за истакнути префикс]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** подразумевана вредност: `+yellow+`
-* [[option_fset.color.max]] *fset.color.max*
-** опис: pass:none[боја за макс вредност]
+* [[option_weechat.color.chat_highlight_bg]] *weechat.color.chat_highlight_bg*
+** опис: pass:none[боја позадине за истакнути префикс]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+default+`
+** подразумевана вредност: `+magenta+`
-* [[option_fset.color.max_selected]] *fset.color.max_selected*
-** опис: pass:none[боја за макс вредност у изабраној линији]
+* [[option_weechat.color.chat_host]] *weechat.color.chat_host*
+** опис: pass:none[боја текста за имена хостова]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+white+`
+** подразумевана вредност: `+cyan+`
-* [[option_fset.color.min]] *fset.color.min*
-** опис: pass:none[боја за мин вредност]
+* [[option_weechat.color.chat_inactive_buffer]] *weechat.color.chat_inactive_buffer*
+** опис: pass:none[боја текста за разговор када је линија неактивна (бафер је спојен са другим баферима и није изабран)]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** подразумевана вредност: `+default+`
-* [[option_fset.color.min_selected]] *fset.color.min_selected*
-** опис: pass:none[боја за мин вредност у изабраној линији]
+* [[option_weechat.color.chat_inactive_window]] *weechat.color.chat_inactive_window*
+** опис: pass:none[боја текста за разговор када је прозора неактиван (није тренутно изабрани прозор)]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+white+`
+** подразумевана вредност: `+default+`
-* [[option_fset.color.name]] *fset.color.name*
-** опис: pass:none[боја за име]
+* [[option_weechat.color.chat_nick]] *weechat.color.chat_nick*
+** опис: pass:none[боја текста за надимке у прозору разговора: користи се у неким серверским порукама и као последња опција у случају да се не пронађе боја за надимак; боја надимка у највећем броју случајева долази из опције option weechat.color.chat_nick_colors]
+** тип: боја
+** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** подразумевана вредност: `+lightcyan+`
+
+* [[option_weechat.color.chat_nick_colors]] *weechat.color.chat_nick_colors*
+** опис: pass:none[боја текста за надимке (листа боја раздвојених зарезима, дозвољена је и позадина у формату: „пп:по”, for example: „lightred:blue”)]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+"cyan,magenta,green,brown,lightblue,default,lightcyan,lightmagenta,lightgreen,blue"+`
+
+* [[option_weechat.color.chat_nick_offline]] *weechat.color.chat_nick_offline*
+** опис: pass:none[боја текста за надимак који није на мрежи (више није у листи надимака); ова боја се користи само онда када је опција weechat.look.color_nick_offline укључена]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** подразумевана вредност: `+default+`
-* [[option_fset.color.name_changed]] *fset.color.name_changed*
-** опис: pass:none[боја за име у случају да је вредност промењена]
+* [[option_weechat.color.chat_nick_offline_highlight]] *weechat.color.chat_nick_offline_highlight*
+** опис: pass:none[боја текста за надимак ван мреже, а који се истиче; ова боја се користи само онда када је опција weechat.look.color_nick_offline укључена]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+brown+`
+** подразумевана вредност: `+default+`
-* [[option_fset.color.name_changed_selected]] *fset.color.name_changed_selected*
-** опис: pass:none[боја за име у изабраној линији у случају да је вредност промењена]
+* [[option_weechat.color.chat_nick_offline_highlight_bg]] *weechat.color.chat_nick_offline_highlight_bg*
+** опис: pass:none[боја позадине за надимак ван мреже, а који се истиче; ова боја се користи само онда када је опција weechat.look.color_nick_offline укључена]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+yellow+`
+** подразумевана вредност: `+blue+`
-* [[option_fset.color.name_selected]] *fset.color.name_selected*
-** опис: pass:none[боја за име у изабраној линији]
+* [[option_weechat.color.chat_nick_other]] *weechat.color.chat_nick_other*
+** опис: pass:none[боја текста за други надимак у приватном баферу]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+white+`
+** подразумевана вредност: `+cyan+`
-* [[option_fset.color.option]] *fset.color.option*
-** опис: pass:none[боја за опцију]
+* [[option_weechat.color.chat_nick_prefix]] *weechat.color.chat_nick_prefix*
+** опис: pass:none[боја префикса надимка (стринг који се приказује испред надимка у префиксу)]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+default+`
+** подразумевана вредност: `+green+`
-* [[option_fset.color.option_changed]] *fset.color.option_changed*
-** опис: pass:none[боја за опцију у случају да је вредност промењена]
+* [[option_weechat.color.chat_nick_self]] *weechat.color.chat_nick_self*
+** опис: pass:none[боја текста за локални надимак у прозору разговора]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+brown+`
+** подразумевана вредност: `+white+`
-* [[option_fset.color.option_changed_selected]] *fset.color.option_changed_selected*
-** опис: pass:none[боја за опцију у изабраној линији у случају да је вредност промењена]
+* [[option_weechat.color.chat_nick_suffix]] *weechat.color.chat_nick_suffix*
+** опис: pass:none[боја суфикса надимка (стринг који се приказује иза надимка у префиксу)]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+yellow+`
+** подразумевана вредност: `+green+`
-* [[option_fset.color.option_selected]] *fset.color.option_selected*
-** опис: pass:none[боја за опцију у изабраној линији]
+* [[option_weechat.color.chat_prefix_action]] *weechat.color.chat_prefix_action*
+** опис: pass:none[боја текста за префикс акције]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** подразумевана вредност: `+white+`
-* [[option_fset.color.parent_name]] *fset.color.parent_name*
-** опис: pass:none[боја за име родитељ-опције]
+* [[option_weechat.color.chat_prefix_buffer]] *weechat.color.chat_prefix_buffer*
+** опис: pass:none[боја текста за име бафера (испред префикса, када је више бафера спојено под једним бројем)]
+** тип: боја
+** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** подразумевана вредност: `+brown+`
+
+* [[option_weechat.color.chat_prefix_buffer_inactive_buffer]] *weechat.color.chat_prefix_buffer_inactive_buffer*
+** опис: pass:none[боја текста за име неактивног бафера (испред префикса, када је више бафера спојено под једним бројем и бафер није изабран)]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** подразумевана вредност: `+default+`
-* [[option_fset.color.parent_name_selected]] *fset.color.parent_name_selected*
-** опис: pass:none[боја за име родитељ-опције у изабраној линији]
+* [[option_weechat.color.chat_prefix_error]] *weechat.color.chat_prefix_error*
+** опис: pass:none[боја текста за префикс грешке]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+white+`
+** подразумевана вредност: `+yellow+`
-* [[option_fset.color.parent_value]] *fset.color.parent_value*
-** опис: pass:none[боја за вредност родитељ-опције]
+* [[option_weechat.color.chat_prefix_join]] *weechat.color.chat_prefix_join*
+** опис: pass:none[боја текста са префикс приступања]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+cyan+`
+** подразумевана вредност: `+lightgreen+`
-* [[option_fset.color.parent_value_selected]] *fset.color.parent_value_selected*
-** опис: pass:none[боја за вредност родитељ-опције у изабраној линији]
+* [[option_weechat.color.chat_prefix_more]] *weechat.color.chat_prefix_more*
+** опис: pass:none[боја текста за „+” када је префикс сувише дугачак]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+lightcyan+`
+** подразумевана вредност: `+lightmagenta+`
-* [[option_fset.color.quotes]] *fset.color.quotes*
-** опис: pass:none[боја за знаке навода око стринг вредности]
+* [[option_weechat.color.chat_prefix_network]] *weechat.color.chat_prefix_network*
+** опис: pass:none[боја текста за мрежни префикс]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+darkgray+`
+** подразумевана вредност: `+magenta+`
-* [[option_fset.color.quotes_changed]] *fset.color.quotes_changed*
-** опис: pass:none[боја за знаке навода око измењених стринг вредности]
+* [[option_weechat.color.chat_prefix_quit]] *weechat.color.chat_prefix_quit*
+** опис: pass:none[боја текста за префикс напуштања]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+default+`
+** подразумевана вредност: `+lightred+`
-* [[option_fset.color.quotes_changed_selected]] *fset.color.quotes_changed_selected*
-** опис: pass:none[боја за знаке навода око измењених стринг вредности у изабраној линији]
+* [[option_weechat.color.chat_prefix_suffix]] *weechat.color.chat_prefix_suffix*
+** опис: pass:none[боја текста за суфикс (иза префикса)]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+white+`
+** подразумевана вредност: `+green+`
-* [[option_fset.color.quotes_selected]] *fset.color.quotes_selected*
-** опис: pass:none[боја за знаке навода око стринг вредности у изабраној линији]
+* [[option_weechat.color.chat_read_marker]] *weechat.color.chat_read_marker*
+** опис: pass:none[боја текста за маркер непрочитаних података]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+default+`
+** подразумевана вредност: `+magenta+`
-* [[option_fset.color.section]] *fset.color.section*
-** опис: pass:none[боја за одељке]
+* [[option_weechat.color.chat_read_marker_bg]] *weechat.color.chat_read_marker_bg*
+** опис: pass:none[боја позадине за маркер непрочитаних података]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** подразумевана вредност: `+default+`
-* [[option_fset.color.section_changed]] *fset.color.section_changed*
-** опис: pass:none[боја за одељак чија је вредност измењена]
+* [[option_weechat.color.chat_server]] *weechat.color.chat_server*
+** опис: pass:none[боја текста за имена сервера]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** подразумевана вредност: `+brown+`
-* [[option_fset.color.section_changed_selected]] *fset.color.section_changed_selected*
-** опис: pass:none[боја за одељак чија је вредност измењена у изабраној линији]
+* [[option_weechat.color.chat_tags]] *weechat.color.chat_tags*
+** опис: pass:none[боја текста за ознаке након порука (приказаних командом /debug tags)]
+** тип: боја
+** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** подразумевана вредност: `+red+`
+
+* [[option_weechat.color.chat_text_found]] *weechat.color.chat_text_found*
+** опис: pass:none[боја текста за маркер на линијама у којима је тражени текст пронађен]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** подразумевана вредност: `+yellow+`
-* [[option_fset.color.section_selected]] *fset.color.section_selected*
-** опис: pass:none[боја за одељак у изабраној линији]
+* [[option_weechat.color.chat_text_found_bg]] *weechat.color.chat_text_found_bg*
+** опис: pass:none[боја позадине за маркер на линијама у којима је тражени текст пронађен]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+white+`
+** подразумевана вредност: `+lightmagenta+`
-* [[option_fset.color.string_values]] *fset.color.string_values*
-** опис: pass:none[боја за стринг вредности]
+* [[option_weechat.color.chat_time]] *weechat.color.chat_time*
+** опис: pass:none[боја текста за време у прозору разговора]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** подразумевана вредност: `+default+`
-* [[option_fset.color.string_values_selected]] *fset.color.string_values_selected*
-** опис: pass:none[боја за стринг вредности у изабраној линији]
+* [[option_weechat.color.chat_time_delimiters]] *weechat.color.chat_time_delimiters*
+** опис: pass:none[боја текста за граничнике времена]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+white+`
+** подразумевана вредност: `+brown+`
-* [[option_fset.color.title_count_options]] *fset.color.title_count_options*
-** опис: pass:none[боја за број опција у наслову бафера које су пронађене уз текући филтер]
+* [[option_weechat.color.chat_value]] *weechat.color.chat_value*
+** опис: pass:none[боја текста за вредности]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** подразумевана вредност: `+cyan+`
-* [[option_fset.color.title_current_option]] *fset.color.title_current_option*
-** опис: pass:none[боја за број текуће опције у наслову бафера]
+* [[option_weechat.color.chat_value_null]] *weechat.color.chat_value_null*
+** опис: pass:none[боја текста за null вредности (недефинисане)]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+lightcyan+`
+** подразумевана вредност: `+blue+`
-* [[option_fset.color.title_filter]] *fset.color.title_filter*
-** опис: pass:none[боја за филтер у наслову бафера]
+* [[option_weechat.color.emphasized]] *weechat.color.emphasized*
+** опис: pass:none[боја текста за наглашени текст (на пример, када се претражује текст); ова опција се користи само онда када је опција weechat.look.emphasized_attributes празан стринг (што је и подразумевана вредност)]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** подразумевана вредност: `+yellow+`
-* [[option_fset.color.title_marked_options]] *fset.color.title_marked_options*
-** опис: pass:none[боја за број маркираних опција у наслову бафера]
+* [[option_weechat.color.emphasized_bg]] *weechat.color.emphasized_bg*
+** опис: pass:none[боја позадине за наглашени текст (на пример, када се претражује текст); ова опција се користи само онда када је опција weechat.look.emphasized_attributes празан стринг (што је и подразумевана вредност)]
+** тип: боја
+** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** подразумевана вредност: `+magenta+`
+
+* [[option_weechat.color.input_actions]] *weechat.color.input_actions*
+** опис: pass:none[боја текста за акције у линији уноса]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** подразумевана вредност: `+lightgreen+`
-* [[option_fset.color.title_sort]] *fset.color.title_sort*
-** опис: pass:none[боја за сортирање у наслову бафера]
+* [[option_weechat.color.input_text_not_found]] *weechat.color.input_text_not_found*
+** опис: pass:none[боја текста за неуспешну претрагу текста у линији уноса]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+white+`
+** подразумевана вредност: `+red+`
-* [[option_fset.color.type]] *fset.color.type*
-** опис: pass:none[боја за тип]
+* [[option_weechat.color.item_away]] *weechat.color.item_away*
+** опис: pass:none[боја текста за ставку одсутности]
+** тип: боја
+** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** подразумевана вредност: `+yellow+`
+
+* [[option_weechat.color.nicklist_away]] *weechat.color.nicklist_away*
+** опис: pass:none[боја текста за надимке који су одсутни]
+** тип: боја
+** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** подразумевана вредност: `+cyan+`
+
+* [[option_weechat.color.nicklist_group]] *weechat.color.nicklist_group*
+** опис: pass:none[боја текста за групе у листи надимака]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** подразумевана вредност: `+green+`
-* [[option_fset.color.type_selected]] *fset.color.type_selected*
-** опис: pass:none[боја за тип у изабраној линији]
+* [[option_weechat.color.separator]] *weechat.color.separator*
+** опис: pass:none[боја за граничнике прозора (када су подељени) и граничнике поред трака (као што је листа надимака)]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+lightgreen+`
+** подразумевана вредност: `+blue+`
-* [[option_fset.color.unmarked]] *fset.color.unmarked*
-** опис: pass:none[боја за индикатор маркера када опција није маркирана]
+* [[option_weechat.color.status_count_highlight]] *weechat.color.status_count_highlight*
+** опис: pass:none[боја текста за укупан број истакнутих порука у врућој листи (статусна трака)]
+** тип: боја
+** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** подразумевана вредност: `+magenta+`
+
+* [[option_weechat.color.status_count_msg]] *weechat.color.status_count_msg*
+** опис: pass:none[боја текста за укупан број порука у врућој листи (статусна линија)]
+** тип: боја
+** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** подразумевана вредност: `+brown+`
+
+* [[option_weechat.color.status_count_other]] *weechat.color.status_count_other*
+** опис: pass:none[боја текста за укупан број осталих порука у врућој листи (статусна линија)]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** подразумевана вредност: `+default+`
-* [[option_fset.color.unmarked_selected]] *fset.color.unmarked_selected*
-** опис: pass:none[боја за индикатор маркера у изабраној линији када опција није маркирана]
+* [[option_weechat.color.status_count_private]] *weechat.color.status_count_private*
+** опис: pass:none[боја текста за укупан број приватних порука у врућој листи (статусна трака)]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+white+`
+** подразумевана вредност: `+green+`
-* [[option_fset.color.value]] *fset.color.value*
-** опис: pass:none[боја за вредност]
+* [[option_weechat.color.status_data_highlight]] *weechat.color.status_data_highlight*
+** опис: pass:none[боја текста за бафер са истицањем (статусна трака)]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+cyan+`
+** подразумевана вредност: `+lightmagenta+`
-* [[option_fset.color.value_changed]] *fset.color.value_changed*
-** опис: pass:none[боја за измењену вредност (различиту од подразумеване)]
+* [[option_weechat.color.status_data_msg]] *weechat.color.status_data_msg*
+** опис: pass:none[боја текста за бафер са новим порукама (статусна трака)]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+brown+`
+** подразумевана вредност: `+yellow+`
-* [[option_fset.color.value_changed_selected]] *fset.color.value_changed_selected*
-** опис: pass:none[боја за измењену вредност у изабраној линији (различиту од подразумеване)]
+* [[option_weechat.color.status_data_other]] *weechat.color.status_data_other*
+** опис: pass:none[боја текста за бафер са новим подацима (што нису поруке) (статусна трака)]
+** тип: боја
+** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** подразумевана вредност: `+default+`
+
+* [[option_weechat.color.status_data_private]] *weechat.color.status_data_private*
+** опис: pass:none[боја текста за бафер са приватном поруком (статусна трака)]
+** тип: боја
+** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** подразумевана вредност: `+lightgreen+`
+
+* [[option_weechat.color.status_filter]] *weechat.color.status_filter*
+** опис: pass:none[боја текста за индикатор филтера у статусној траци]
+** тип: боја
+** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** подразумевана вредност: `+green+`
+
+* [[option_weechat.color.status_more]] *weechat.color.status_more*
+** опис: pass:none[боја текста за бафер са новим подацима (статусна трака)]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
** подразумевана вредност: `+yellow+`
-* [[option_fset.color.value_selected]] *fset.color.value_selected*
-** опис: pass:none[боја за вредност у изабраној линији]
+* [[option_weechat.color.status_mouse]] *weechat.color.status_mouse*
+** опис: pass:none[боја текста за индикатор миша у статусној траци]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+lightcyan+`
+** подразумевана вредност: `+green+`
-* [[option_fset.color.value_undef]] *fset.color.value_undef*
-** опис: pass:none[боја за недефинисану вредност]
+* [[option_weechat.color.status_name]] *weechat.color.status_name*
+** опис: pass:none[боја текста за име текућег бафера у статусној траци]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+magenta+`
+** подразумевана вредност: `+white+`
-* [[option_fset.color.value_undef_selected]] *fset.color.value_undef_selected*
-** опис: pass:none[боја за недефинисану вредност у изабраној линији]
+* [[option_weechat.color.status_name_ssl]] *weechat.color.status_name_ssl*
+** опис: pass:none[боја текста за име текућег бафера у статусној траци, у случају да су подаци обезбеђени протоколом као што је SSL]
** тип: боја
** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-** подразумевана вредност: `+lightmagenta+`
+** подразумевана вредност: `+lightgreen+`
-* [[option_fset.format.export_help]] *fset.format.export_help*
-** опис: pass:none[формат линије помоћи која се записује пре сваке опције која се извози у фајл (напомена: садржај се израчунава, погледајте /help fset)]
+* [[option_weechat.color.status_nicklist_count]] *weechat.color.status_nicklist_count*
+** опис: pass:none[боја текста за укупан број надимака у листи надимака (статусна трака)]
+** тип: боја
+** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** подразумевана вредност: `+default+`
+
+* [[option_weechat.color.status_number]] *weechat.color.status_number*
+** опис: pass:none[боја текста за број текућег бафера у статусној траци]
+** тип: боја
+** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** подразумевана вредност: `+yellow+`
+
+* [[option_weechat.color.status_time]] *weechat.color.status_time*
+** опис: pass:none[боја текста за време (статусна трака)]
+** тип: боја
+** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** подразумевана вредност: `+default+`
+
+* [[option_weechat.completion.base_word_until_cursor]] *weechat.completion.base_word_until_cursor*
+** опис: pass:none[ако је укључено, на карактеру испред курсора се завршава базна реч која треба да се доврши; у супротном се базна реч завршава на првом размаку након курсора]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+on+`
+
+* [[option_weechat.completion.command_inline]] *weechat.completion.command_inline*
+** опис: pass:none[ако је укључено, команде у командној линији се довршавају (команда на почетку линије има виши приоритет и прва се користи); напомена: када се ова опција укључи, више се не врши аутоматско довршавање путања које почињу са „/” (ван аргумената команде)]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+on+`
+
+* [[option_weechat.completion.default_template]] *weechat.completion.default_template*
+** опис: pass:none[подразумевани шаблон довршавања (молимо вас да погледајте документацију у вези кодова шаблона и вредности: референтно упутство API додатака, функција „weechat_hook_command”)]
** тип: стринг
** вредности: било који стринг
-** подразумевана вредност: `+"# ${description2}"+`
+** подразумевана вредност: `+"%(nicks)|%(irc_channels)"+`
-* [[option_fset.format.export_option]] *fset.format.export_option*
-** опис: pass:none[формат сваке опције која се извози у фајл (напомена: садржај се израчунава, погледајте /help fset)]
+* [[option_weechat.completion.nick_add_space]] *weechat.completion.nick_add_space*
+** опис: pass:none[додавање размака након довршавања надимка (када надимак није прва реч на командној линији)]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+on+`
+
+* [[option_weechat.completion.nick_case_sensitive]] *weechat.completion.nick_case_sensitive*
+** опис: pass:none[довршавање надимака води рачуна о величини слова]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+off+`
+
+* [[option_weechat.completion.nick_completer]] *weechat.completion.nick_completer*
+** опис: pass:none[стринг који се умеће након довршавања надимка (када је надимак прва реч у командној линији)]
** тип: стринг
** вредности: било који стринг
-** подразумевана вредност: `+"/set ${name} ${quoted_value}"+`
+** подразумевана вредност: `+": "+`
-* [[option_fset.format.export_option_null]] *fset.format.export_option_null*
-** опис: pass:none[формат сваке опција која има „null” вредност а извози се у фајл (напомена: садржај се израчунава, погледајте /help fset)]
+* [[option_weechat.completion.nick_first_only]] *weechat.completion.nick_first_only*
+** опис: pass:none[довршава се само први пронађени надимак]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+off+`
+
+* [[option_weechat.completion.nick_ignore_chars]] *weechat.completion.nick_ignore_chars*
+** опис: pass:none[карактери који се игноришу при довршавању надимка]
** тип: стринг
** вредности: било који стринг
-** подразумевана вредност: `+"/unset ${name}"+`
+** подразумевана вредност: `+"[]`_-^"+`
-* [[option_fset.format.option1]] *fset.format.option1*
-** опис: pass:none[први формат сваке линије, користи се када је вредност опције fset.look.format_number постављена на 1 (напомена: садржај се израчунава, погледајте /help fset); празан стринг значи да се користи подразумевани формат („${marked} ${name} ${type} ${value2}”), који је без израчунавања, дакле и много бржи; формати могу да се пребацују тастером ctrl+X]
+* [[option_weechat.completion.partial_completion_alert]] *weechat.completion.partial_completion_alert*
+** опис: pass:none[шаље упозорење (BEL) када се догоди делимично довршавање]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+on+`
+
+* [[option_weechat.completion.partial_completion_command]] *weechat.completion.partial_completion_command*
+** опис: pass:none[делимично довршавање имена команди (зауставља се када се пронађе више команда које почињу истим словима)]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+off+`
+
+* [[option_weechat.completion.partial_completion_command_arg]] *weechat.completion.partial_completion_command_arg*
+** опис: pass:none[делимично довршавање аргумената команде (зауставља се када се пронађе више аргумената са истим префиксом)]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+off+`
+
+* [[option_weechat.completion.partial_completion_count]] *weechat.completion.partial_completion_count*
+** опис: pass:none[у ставки траке се приказује укупан број за свако делимично довршавање]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+on+`
+
+* [[option_weechat.completion.partial_completion_other]] *weechat.completion.partial_completion_other*
+** опис: pass:none[делимично довршавање ван команди (зауставља се када се пронађе више речи које почињу истим словима)]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+off+`
+
+* [[option_weechat.completion.partial_completion_templates]] *weechat.completion.partial_completion_templates*
+** опис: pass:none[листа шаблона раздвојених запетама за које је делимично довршавање подразумевано укључено (тастером Tab уместо са shift-Tab); листа шаблон се налази у документацији: API референтно упутство за додатке, функција „weechat_hook_command”]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+"config_options"+`
+
+* [[option_weechat.history.display_default]] *weechat.history.display_default*
+** опис: pass:none[максимални број команди које се подразумевано приказују у списку историје (0 = без ограничења)]
+** тип: целобројна
+** вредности: 0 .. 2147483647
+** подразумевана вредност: `+5+`
+
+* [[option_weechat.history.max_buffer_lines_minutes]] *weechat.history.max_buffer_lines_minutes*
+** опис: pass:none[максимални број минута у историји по баферу (0 = без ограничења); примери: 1440 = један дан, 10080 = једна недеља, 43200 = једна месец, 525600 = једна година; користите 0 САМО у случају да опција weechat.history.max_buffer_lines_number НИЈЕ постављена на 0]
+** тип: целобројна
+** вредности: 0 .. 2147483647
+** подразумевана вредност: `+0+`
+
+* [[option_weechat.history.max_buffer_lines_number]] *weechat.history.max_buffer_lines_number*
+** опис: pass:none[максимални број линија у историји по баферу (0 = без ограничења); користите 0 САМО када опција weechat.history.max_buffer_lines_minutes НИЈЕ постављена на 0]
+** тип: целобројна
+** вредности: 0 .. 2147483647
+** подразумевана вредност: `+4096+`
+
+* [[option_weechat.history.max_commands]] *weechat.history.max_commands*
+** опис: pass:none[максимални број корисничких команди у историји (0 = без ограничења, НЕ ПРЕПОРУЧУЈЕ СЕ: нема ограничења употребе меморије)]
+** тип: целобројна
+** вредности: 0 .. 2147483647
+** подразумевана вредност: `+100+`
+
+* [[option_weechat.history.max_visited_buffers]] *weechat.history.max_visited_buffers*
+** опис: pass:none[максимални број посећених бафера који се чува у меморији]
+** тип: целобројна
+** вредности: 0 .. 1000
+** подразумевана вредност: `+50+`
+
+* [[option_weechat.look.align_end_of_lines]] *weechat.look.align_end_of_lines*
+** опис: pass:none[поравнање за крајеве линија (све линије након прве): оне почињу испод ових података (време, бафер, префикс, суфикс, порука (подразумевано))]
+** тип: целобројна
+** вредности: time, buffer, prefix, suffix, message
+** подразумевана вредност: `+message+`
+
+* [[option_weechat.look.align_multiline_words]] *weechat.look.align_multiline_words*
+** опис: pass:none[поравнање за вишелинијске речи сагласно са опцијом weechat.look.align_end_of_lines; ако је искључено, вишелинијске речи неће бити поравнате, што може бити корисно да се не преломе дугачке URL адресе]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+on+`
+
+* [[option_weechat.look.bar_more_down]] *weechat.look.bar_more_down*
+** опис: pass:none[стринг који се приказује када трака може да се скролује наниже (за траке чије се испуна разликује од „horizontal”)]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+"++"+`
+
+* [[option_weechat.look.bar_more_left]] *weechat.look.bar_more_left*
+** опис: pass:none[стринг који се приказује када трака може да се скролује у лево (за траке чија је испуна „horizontal”)]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+"<<"+`
+
+* [[option_weechat.look.bar_more_right]] *weechat.look.bar_more_right*
+** опис: pass:none[стринг који се приказује када трака може да се скролује у десно (за траке чија је испуна „horizontal”)]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+">>"+`
+
+* [[option_weechat.look.bar_more_up]] *weechat.look.bar_more_up*
+** опис: pass:none[стринг који се приказује када трака може да се скролује навише (за траке чија се испуна разликује од „horizontal”)]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+"--"+`
+
+* [[option_weechat.look.bare_display_exit_on_input]] *weechat.look.bare_display_exit_on_input*
+** опис: pass:none[режим огољеног приказа се напушта при било каквој промени уноса]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+on+`
+
+* [[option_weechat.look.bare_display_time_format]] *weechat.look.bare_display_time_format*
+** опис: pass:none[формат времена у режиму огољеног приказа (погледајте man strftime за спецификаторе датума/времена)]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+"%H:%M"+`
+
+* [[option_weechat.look.buffer_auto_renumber]] *weechat.look.buffer_auto_renumber*
+** опис: pass:none[аутоматска ренумерација бафера тако да постоје само суседни бројеви и да почињу од 1; ако је искључено, дозвољени су размаци између бројева бафера и први бафер може да има број већи од 1]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+on+`
+
+* [[option_weechat.look.buffer_notify_default]] *weechat.look.buffer_notify_default*
+** опис: pass:none[подразумевани ниво обавештавања за бафере (користи се да програму WeeChat каже да ли бафер мора да се прикаже у врућој листи или не, сагласно томе колика је важност поруке): all=све поруке (подразумевано), message=поруке+истицања, highlight=само истицања, none=никада се не приказује у врућој листи]
+** тип: целобројна
+** вредности: none, highlight, message, all
+** подразумевана вредност: `+all+`
+
+* [[option_weechat.look.buffer_position]] *weechat.look.buffer_position*
+** опис: pass:none[позиција новог бафера: end = након краја листе (number = последњи број + 1) (подразумевано), first_gap = на првом доступном броју у листи (након краја листе, у случају да није доступан ниједан број); ова опција се користи само ако бафер нема броја распореда]
+** тип: целобројна
+** вредности: end, first_gap
+** подразумевана вредност: `+end+`
+
+* [[option_weechat.look.buffer_search_case_sensitive]] *weechat.look.buffer_search_case_sensitive*
+** опис: pass:none[подразумевана текст претрага у баферу: прави се разлика у величини слова или не]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+off+`
+
+* [[option_weechat.look.buffer_search_force_default]] *weechat.look.buffer_search_force_default*
+** опис: pass:none[форсира подразумеване вредности за претрагу текста у баферу (уместо да се користе вредности последње претраге у баферу)]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+off+`
+
+* [[option_weechat.look.buffer_search_regex]] *weechat.look.buffer_search_regex*
+** опис: pass:none[подразумевана претрага текста у баферу: ако је укључено, тражи се према POSIX проширеном регуларном изразу, у супротном према простом стрингу претраге]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+off+`
+
+* [[option_weechat.look.buffer_search_where]] *weechat.look.buffer_search_where*
+** опис: pass:none[подразумевана претрага текста у баферу: у поруци, префиксу, префиксу и поруци]
+** тип: целобројна
+** вредности: prefix, message, prefix_message
+** подразумевана вредност: `+prefix_message+`
+
+* [[option_weechat.look.buffer_time_format]] *weechat.look.buffer_time_format*
+** опис: pass:none[формат времена за сваку линију која се приказује у баферима (погледајте man strftime за спецификаторе датума/времена) (напомена: садржај се израчунава, тако да са форматом можете да користите и боје „${color:xxx}”, погледајте /help eval); на пример, време употребом скале сивих (неопходна је подршка за 256 боја): „${color:252}%H${color:245}%M${color:240}%S”]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+"%H:%M:%S"+`
+
+* [[option_weechat.look.buffer_time_same]] *weechat.look.buffer_time_same*
+** опис: pass:none[време приказано за поруку са истим временом као и претходна порука: употребите размак „ ” да сакријете време, неки други стринг који желите да се прикаже уместо времена, или празан стринг којим се могућност искључује (приказ времена) (напомена: садржај се израчунава, тако да уз формат можете да користите у боје „${color:xxx}”, погледајте /help eval)]
** тип: стринг
** вредности: било који стринг
** подразумевана вредност: `+""+`
-* [[option_fset.format.option2]] *fset.format.option2*
-** опис: pass:none[други формат сваке линије, користи се када је вредност опције fset.look.format_number постављена на 2 (напомена: садржај се израчунава, погледајте /help fset); празан стринг значи да се користи подразумевани формат („${marked} ${name} ${type} ${value2}”), који је без израчунавања, дакле и много бржи; формати могу да се пребацују тастером ctrl+X]
+* [[option_weechat.look.chat_space_right]] *weechat.look.chat_space_right*
+** опис: pass:none[keep a space on the right side of chat area if there is a bar displayed on the right (for both text and read marker)]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+off+`
+
+* [[option_weechat.look.color_basic_force_bold]] *weechat.look.color_basic_force_bold*
+** опис: pass:none[форсира атрибут „подебљано” за светле боје и „darkgray” у основним бојама (ова опција је подразумевано искључена: подебљано се користи само ако терминал подржава мање од 16 боја)]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+off+`
+
+* [[option_weechat.look.color_inactive_buffer]] *weechat.look.color_inactive_buffer*
+** опис: pass:none[за линије неактивног бафера се користи различита боја (када је линија из спојеног бафера који није изабран)]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+on+`
+
+* [[option_weechat.look.color_inactive_message]] *weechat.look.color_inactive_message*
+** опис: pass:none[за неактивну поруку се користи различита боја (када прозор није текући прозор, или ако је линија из спојеног бафера који није изабран)]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+on+`
+
+* [[option_weechat.look.color_inactive_prefix]] *weechat.look.color_inactive_prefix*
+** опис: pass:none[за неактиван префикс се користи различита боја (када прозор није текући прозор, или ако је линија из спојеног бафера који није изабран)]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+on+`
+
+* [[option_weechat.look.color_inactive_prefix_buffer]] *weechat.look.color_inactive_prefix_buffer*
+** опис: pass:none[за име неактивног бафера у префиксу се користи различита боја (када прозор није текући прозор, или ако је линија из спојеног бафера који није изабран)]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+on+`
+
+* [[option_weechat.look.color_inactive_time]] *weechat.look.color_inactive_time*
+** опис: pass:none[за неактивно време се користи различита боја (када прозор није текући прозор, или ако је линија из спојеног бафера који није изабран)]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+off+`
+
+* [[option_weechat.look.color_inactive_window]] *weechat.look.color_inactive_window*
+** опис: pass:none[за линије у неактивном прозору се користи различита боја (када прозор није текући прозор)]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+on+`
+
+* [[option_weechat.look.color_nick_offline]] *weechat.look.color_nick_offline*
+** опис: pass:none[за надимке који нису на мрежи се користи различита боја (више нису на листи надимака)]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+off+`
+
+* [[option_weechat.look.color_pairs_auto_reset]] *weechat.look.color_pairs_auto_reset*
+** опис: pass:none[табела парова боја се аутоматски ресетује када је број доступних боја мањи или једнак овом броју (-1 = искључује аутоматско ресетовање, па је тада потребно ручно „/color reset” када је табела пуна)]
+** тип: целобројна
+** вредности: -1 .. 256
+** подразумевана вредност: `+5+`
+
+* [[option_weechat.look.color_real_white]] *weechat.look.color_real_white*
+** опис: pass:none[ако је постављено, користи се права бела боја, подразумевано је искључено за терминале са белом позадином (ако уопште не користите белу позадину, требало би да укључите ову опцију да бисте уместо подразумеване терминалове боје предњег плана видели праву белу)]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+off+`
+
+* [[option_weechat.look.command_chars]] *weechat.look.command_chars*
+** опис: pass:none[карактери који се користе за одређивање да ли је улазни стринг команда или не: улаз мора да почне једним од наведених карактера; коса црта („/”) се увек узима као префикс команде (пример: „.$”)]
** тип: стринг
** вредности: било који стринг
-** подразумевана вредност: `+"${marked} ${name} ${type} ${value2}${newline} ${empty_name} ${_default_value}${color:darkgray} -- ${min}..${max}${newline} ${empty_name} ${description}"+`
+** подразумевана вредност: `+""+`
-* [[option_fset.look.auto_refresh]] *fset.look.auto_refresh*
-** опис: pass:none[листа опција раздвојених запетама које треба да се аутоматски освеже у fset баферу (ако је отворен); „*” значи све опције (препоручена вредност), име које почиње на „!” представља негативну вредност која спречава да се опција освежи, у именима је дозвољена употреба џокера „*” (пример: „*,!plugin.section.*”)]
+* [[option_weechat.look.command_incomplete]] *weechat.look.command_incomplete*
+** опис: pass:none[ако је постављено, дозвољене су недовршене или двосмислене команде, на пример /he за /help]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+off+`
+
+* [[option_weechat.look.confirm_quit]] *weechat.look.confirm_quit*
+** опис: pass:none[ако је постављено, /quit команда мора да се потврди додатним аргументом „-yes” (погледајте /help quit)]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+off+`
+
+* [[option_weechat.look.confirm_upgrade]] *weechat.look.confirm_upgrade*
+** опис: pass:none[ако је постављено, команда /upgrade мора да се потврди додатним аргументом „-yes” (погледајте /help upgrade)]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+off+`
+
+* [[option_weechat.look.day_change]] *weechat.look.day_change*
+** опис: pass:none[приказ специјалне поруке када се мења дан]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+on+`
+
+* [[option_weechat.look.day_change_message_1date]] *weechat.look.day_change_message_1date*
+** опис: pass:none[порука која се приказује када се промени дан, са приказаним једним датумом (на пример, на почетку бафера) (погледајте man strftime за спецификаторе датума/времена) (напомена: садржај се израчунава, тако да можете користити боје у формату „${color:xxx}”, погледајте /help eval)]
** тип: стринг
** вредности: било који стринг
-** подразумевана вредност: `+"*"+`
+** подразумевана вредност: `+"-- %a, %d %b %Y --"+`
-* [[option_fset.look.auto_unmark]] *fset.look.auto_unmark*
-** опис: pass:none[аутоматско уклањање маркирања са свих опција након акције над маркираним опцијама или након освежавања]
+* [[option_weechat.look.day_change_message_2dates]] *weechat.look.day_change_message_2dates*
+** опис: pass:none[порука која се приказује када се промени дан, са приказаним два датума (између две поруке); спецификатор другог датума мора да почне са два „%” јер се над овим стрингом strftime позива два пута (погледајте man strftime за спецификаторе датума/времена) (напомена: садржај се израчунава, тако да можете користити боје у формату „${color:xxx}”, погледајте /help eval)]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+"-- %%a, %%d %%b %%Y (%a, %d %b %Y) --"+`
+
+* [[option_weechat.look.eat_newline_glitch]] *weechat.look.eat_newline_glitch*
+** опис: pass:none[ако је постављено, eat_newline_glitch ће да се постави на 0; ово се користи да се на крај линије сваке не дода карактер нова линија, па да се текст не преломи када копирате/налепите текст из програма WeeChat у неку другу апликацију (ова опција је подразумевано искључена јер може да буде узрок озбиљних проблема са приказом)]
** тип: логичка
** вредности: on, off
** подразумевана вредност: `+off+`
-* [[option_fset.look.condition_catch_set]] *fset.look.condition_catch_set*
-** опис: pass:none[услов којим се хвата /set команда и приказују резултати у fset баферу; могу да се користе следеће променљиве: ${name} (име опције које се даје /set команди), ${count} (број аргумената пронађених у аргументу команде /set); празан стринг искључује хватање /set команде; ако је вредност „1”, fset бафер се увек користи са /set командом]
+* [[option_weechat.look.emphasized_attributes]] *weechat.look.emphasized_attributes*
+** опис: pass:none[attributes for emphasized text: one or more attribute chars ("%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline); if the string is empty, the colors weechat.color.emphasized* are used]
** тип: стринг
** вредности: било који стринг
-** подразумевана вредност: `+"${count} >= 1"+`
+** подразумевана вредност: `+""+`
-* [[option_fset.look.export_help_default]] *fset.look.export_help_default*
-** опис: pass:none[подразумевано се уз сваку извезену опцију записује и помоћ (ово може да се премости аргументима „-help” и „-nohelp” за команду /fset -export)]
+* [[option_weechat.look.highlight]] *weechat.look.highlight*
+** опис: pass:none[листа речи које се истичу раздвојених запетама; поређење не прави разлику у величини слова (употребите „(?-i)” на почетку речи ако желите да се величина слова узима у обзир), речи могу да почну или да се заврше са „*” чиме се добија делимично подударање; пример: „test,(?-i)*toto*,flash*”]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+""+`
+
+* [[option_weechat.look.highlight_disable_regex]] *weechat.look.highlight_disable_regex*
+** опис: pass:none[POSIX проширени регуларни израз који се користи за спречавање било каквог истицања у поруци: ова опција има виши приоритет у односу на све осталеопције истицања (ако се стринг пронађе у поруци, истицање се исључује и све остале опције се игноришу), регуларни израз не прави разлику у величини слова (употребите „(?-i)” на почетку да се величина слова не узима у обзир), примери: „<flash.*>”, „(?-i)<Flash.*>”]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+""+`
+
+* [[option_weechat.look.highlight_regex]] *weechat.look.highlight_regex*
+** опис: pass:none[POSIX проширени регуларни израз који се користи за проверу да ли порука садржи истицање или не, барем једно подударање мора бити окружено граничницима (карактери који се разликују од: алфанумерика, „-”, „_” и „|”), регуларни израз не прави разлику у величини слова (употребите „(?-i)” не почетку ако желите да се величина слова узима у обзир), примери: „flashcode|flashy”, „(?-i)FlashCode|flashy”]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+""+`
+
+* [[option_weechat.look.highlight_tags]] *weechat.look.highlight_tags*
+** опис: pass:none[листа ознака које се истичу раздвојених запетама; поређење не прави разлику у величини слова; у свакој ознаки је дозвољен џокер „*”; „+” може да раздвоји више ознака чиме се наводи логичко „и” међу ознакама; примери: „nick_flashcode” за поруку од надимка „FlashCode”, „irc_notice+nick_toto*” за обавештења од надимка који почиње са „toto”]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+""+`
+
+* [[option_weechat.look.hotlist_add_conditions]] *weechat.look.hotlist_add_conditions*
+** опис: pass:none[услови под којима се бафер додаје у врућу листу (ако је за бафер ниво обавештавања одговарајући); можете да користите следеће услове: „window” (показивач на текући прозор), „buffer” (показивач на бафер који треба да се дода у врућу листу), „priority” (0 = низак, 1 = порука, 2 = приватно, 3 = истицање); подразумевано је да се бафер додаје на врућу листу ако сте одсутни, или ако се бафер не види на екрану (не приказује се ни у једном прозору), или ако је барем један релеј клијент повезан преко weechat протокола]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+"${away} || ${buffer.num_displayed} == 0 || ${info:relay_client_count,weechat,connected} > 0"+`
+
+* [[option_weechat.look.hotlist_buffer_separator]] *weechat.look.hotlist_buffer_separator*
+** опис: pass:none[стринг који се приказује између бафера у врућој листи]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+", "+`
+
+* [[option_weechat.look.hotlist_count_max]] *weechat.look.hotlist_count_max*
+** опис: pass:none[максималан број порука који се приказује у врућој листи за бафер: 0 = никада се не приказује број порука, други број = приказује се максимално N порука (од највишег до најнижег приоритета)]
+** тип: целобројна
+** вредности: 0 .. 4
+** подразумевана вредност: `+2+`
+
+* [[option_weechat.look.hotlist_count_min_msg]] *weechat.look.hotlist_count_min_msg*
+** опис: pass:none[приказује број порука у случају да је укупан број порука већи или једнак овој вредности]
+** тип: целобројна
+** вредности: 1 .. 100
+** подразумевана вредност: `+2+`
+
+* [[option_weechat.look.hotlist_names_count]] *weechat.look.hotlist_names_count*
+** опис: pass:none[максимални број имена у врућој листи (0 = не приказује се ниједно име, само бројеви бафера)]
+** тип: целобројна
+** вредности: 0 .. 10000
+** подразумевана вредност: `+3+`
+
+* [[option_weechat.look.hotlist_names_length]] *weechat.look.hotlist_names_length*
+** опис: pass:none[макс дужина имена у врућој листи (0 = нема ограничења)]
+** тип: целобројна
+** вредности: 0 .. 32
+** подразумевана вредност: `+0+`
+
+* [[option_weechat.look.hotlist_names_level]] *weechat.look.hotlist_names_level*
+** опис: pass:none[ниво за приказивање имена у врућој листи (комбинација: 1=join/part, 2=порука, 4=приватно, 8=истицање, на пример: 12=приватно+истицање)]
+** тип: целобројна
+** вредности: 1 .. 15
+** подразумевана вредност: `+12+`
+
+* [[option_weechat.look.hotlist_names_merged_buffers]] *weechat.look.hotlist_names_merged_buffers*
+** опис: pass:none[ако је постављено, форсира приказ имена у врућој листи за спојене бафере]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+off+`
+
+* [[option_weechat.look.hotlist_prefix]] *weechat.look.hotlist_prefix*
+** опис: pass:none[текст који се приказује на почетку вруће листе]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+"H: "+`
+
+* [[option_weechat.look.hotlist_remove]] *weechat.look.hotlist_remove*
+** опис: pass:none[уклања бафере из вруће листе: buffer = уклања бафер по бафер, merged = уклања све видљиве спојене бафере одједном]
+** тип: целобројна
+** вредности: buffer, merged
+** подразумевана вредност: `+merged+`
+
+* [[option_weechat.look.hotlist_short_names]] *weechat.look.hotlist_short_names*
+** опис: pass:none[ако је постављено, користи кратка имена за приказ имена бафера у врућој листи (почињу након првог „.” у имену)]
** тип: логичка
** вредности: on, off
** подразумевана вредност: `+on+`
-* [[option_fset.look.format_number]] *fset.look.format_number*
-** опис: pass:none[број формата који се користи за приказ опција; ово се динамички мења тастером ctrl-X у fset баферу]
+* [[option_weechat.look.hotlist_sort]] *weechat.look.hotlist_sort*
+** опис: pass:none[сортирање вруће листе: group_time_*: груписање по нивоу обавештавања (прво истицања) па онда сортирање по времену, group_number_*: груписање по нивоу обавештавања (прво истицања) па онда сортирање по броју, number_*: сортирање по броју; asc = растући редослед, desc = опадајући редослед]
** тип: целобројна
-** вредности: 1 .. 2
-** подразумевана вредност: `+1+`
+** вредности: group_time_asc, group_time_desc, group_number_asc, group_number_desc, number_asc, number_desc
+** подразумевана вредност: `+group_time_asc+`
-* [[option_fset.look.marked_string]] *fset.look.marked_string*
-** опис: pass:none[стринг који се приказује када се опција маркира (како ви се извршила акција над више опција одједном)]
+* [[option_weechat.look.hotlist_suffix]] *weechat.look.hotlist_suffix*
+** опис: pass:none[текст који се приказује на крају вруће листе]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+""+`
+
+* [[option_weechat.look.hotlist_unique_numbers]] *weechat.look.hotlist_unique_numbers*
+** опис: pass:none[задржава у врућој листи само јединствене бројеве (ово се односи само ставке вруће листе за које се након броја НЕ приказује име)]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+on+`
+
+* [[option_weechat.look.hotlist_update_on_buffer_switch]] *weechat.look.hotlist_update_on_buffer_switch*
+** опис: pass:none[ажурирање вруће листе када се прелази на други бафер]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+on+`
+
+* [[option_weechat.look.input_cursor_scroll]] *weechat.look.input_cursor_scroll*
+** опис: pass:none[број карактера који се приказују након краја линије уноса када се скролује тако да се прикаже крај линије]
+** тип: целобројна
+** вредности: 0 .. 100
+** подразумевана вредност: `+20+`
+
+* [[option_weechat.look.input_share]] *weechat.look.input_share*
+** опис: pass:none[за улаз свих бафера се деле команде, текст или оба (и даље постоји локална историја за сваки бафер)]
+** тип: целобројна
+** вредности: none, commands, text, all
+** подразумевана вредност: `+none+`
+
+* [[option_weechat.look.input_share_overwrite]] *weechat.look.input_share_overwrite*
+** опис: pass:none[ако је постављено и улаз се дели, увек се преписује унос у циљном баферу]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+off+`
+
+* [[option_weechat.look.input_undo_max]] *weechat.look.input_undo_max*
+** опис: pass:none[макс број „поништавања” за командну линију, по баферу (0 = поништавање је искључено)]
+** тип: целобројна
+** вредности: 0 .. 65535
+** подразумевана вредност: `+32+`
+
+* [[option_weechat.look.item_away_message]] *weechat.look.item_away_message*
+** опис: pass:none[приказивање серверске поруке о одсутности у ставки одсутности траке]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+on+`
+
+* [[option_weechat.look.item_buffer_filter]] *weechat.look.item_buffer_filter*
+** опис: pass:none[стринг који се користи за обавештавање да су неке линије у текућем баферу филтриране (ставка траке „buffer_filter”)]
** тип: стринг
** вредности: било који стринг
** подразумевана вредност: `+"*"+`
-* [[option_fset.look.scroll_horizontal]] *fset.look.scroll_horizontal*
-** опис: pass:none[скроловање у лево/десно у fset баферу (проценат ширине)]
+* [[option_weechat.look.item_buffer_zoom]] *weechat.look.item_buffer_zoom*
+** опис: pass:none[стринг који се користи да покаже зум на спојени бафер (ставка траке „buffer_zoom”)]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+"!"+`
+
+* [[option_weechat.look.item_mouse_status]] *weechat.look.item_mouse_status*
+** опис: pass:none[стринг који се корити да покаже стање миша (ставка траке „mouse_status”)]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+"M"+`
+
+* [[option_weechat.look.item_time_format]] *weechat.look.item_time_format*
+** опис: pass:none[формат времена за „time” ставку траке (погледајте man strftime за спецификаторе датума/времена) (напомена: садржај се израчунава, тако да можете користите боје у формату „${color:xxx}”, погледајте /help eval)]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+"%H:%M"+`
+
+* [[option_weechat.look.jump_current_to_previous_buffer]] *weechat.look.jump_current_to_previous_buffer*
+** опис: pass:none[скок на претходни бафер који је био приказан када се скаче на број текућег бафера са /buffer *N (где је N број бафера), чиме је могуће једноставно пребацивање на други бафер, па повратак на текући бафер]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+on+`
+
+* [[option_weechat.look.jump_previous_buffer_when_closing]] *weechat.look.jump_previous_buffer_when_closing*
+** опис: pass:none[скок на претходно посећени бафер када се бафер затвара (ако је искључено, онда се скаче на бафер број - 1)]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+on+`
+
+* [[option_weechat.look.jump_smart_back_to_buffer]] *weechat.look.jump_smart_back_to_buffer*
+** опис: pass:none[скок назад на почетни бафер када се достигне крај вруће листе]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+on+`
+
+* [[option_weechat.look.key_bind_safe]] *weechat.look.key_bind_safe*
+** опис: pass:none[дозвољава се везивање само „сигурних” тастера (који почињу са ctrl или meta кодом)]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+on+`
+
+* [[option_weechat.look.key_grab_delay]] *weechat.look.key_grab_delay*
+** опис: pass:none[подразумевано кашњење (у милисекундама) за хватање тастера (користећи подразумевани тастер alt-k); ово кашњење може да се премости у команди /input (погледајте /help input)]
** тип: целобројна
-** вредности: 1 .. 100
+** вредности: 1 .. 10000
+** подразумевана вредност: `+800+`
+
+* [[option_weechat.look.mouse]] *weechat.look.mouse*
+** опис: pass:none[укључује подршку за миша]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+off+`
+
+* [[option_weechat.look.mouse_timer_delay]] *weechat.look.mouse_timer_delay*
+** опис: pass:none[кашњење (у милисекундама) за хватање догађаја миша: програм WeeChat ће чекати да протекне оволико времена пре нео што обради догађај]
+** тип: целобројна
+** вредности: 1 .. 10000
+** подразумевана вредност: `+100+`
+
+* [[option_weechat.look.nick_color_force]] *weechat.look.nick_color_force*
+** опис: pass:none[за неке надимке се форсира боја: хеш израчунат са надимком у циљу проналажења боје се неће користити за ове надимке (формат је: „надимак1:боја1;надимак2:боја2”); претрага надимака пази на величину слова само када су мала, тако да ова опција може да се користи само за надимке исписане малим словима; боја може да укључи и позадину помоћу формата „текст,позадина”, на пример „yellow,red”]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+""+`
+
+* [[option_weechat.look.nick_color_hash]] *weechat.look.nick_color_hash*
+** опис: pass:none[хеш алгоритам који се користи за проналажење боје неког надимка: djb2 = варијанта djb2 (важна је позиција слова: анаграми надимка имају другачије боје), djb2_32 = варијанта djb2 која уместо 64-битног целог броја користи 32-битни, sum = збир слова, sum_32 = збир слова код којег се уместо 64-битног целог броја користи 32-битни]
+** тип: целобројна
+** вредности: djb2, sum, djb2_32, sum_32
+** подразумевана вредност: `+djb2+`
+
+* [[option_weechat.look.nick_color_hash_salt]] *weechat.look.nick_color_hash_salt*
+** опис: pass:none[со за хеш алгоритам који се користи за проналажење боја надимака (на ову со се додаје надимак, па хеш алгоритам као улаз користи тај стринг); измена ове вредности меша боје надимака]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+""+`
+
+* [[option_weechat.look.nick_color_stop_chars]] *weechat.look.nick_color_stop_chars*
+** опис: pass:none[карактери који се користе за заустављање код израчунавања боје словима надимка (пре заустављања мора да се наиђе на барем један карактер ван ове листе) (пример: надимак „|nick|away” са „|” у карактерима ће вратити боју за надимак „|nick”); ова опција утиче на опцију weechat.look.nick_color_force, тако да надимак за форсирану боју не сме да садржи карактере који се овом опцијом игноришу]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+"_|["+`
+
+* [[option_weechat.look.nick_prefix]] *weechat.look.nick_prefix*
+** опис: pass:none[текст који се приказује испред надимка у префиксу поруке, на пример: „<”]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+""+`
+
+* [[option_weechat.look.nick_suffix]] *weechat.look.nick_suffix*
+** опис: pass:none[текст који се приказује иза надимка у префиксу поруке, на пример: „>”]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+""+`
+
+* [[option_weechat.look.paste_auto_add_newline]] *weechat.look.paste_auto_add_newline*
+** опис: pass:none[аутоматско додавање прелома реда на крај налепљеног текста у случају да постоји барем две линије и да ли се тражи потврда]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+on+`
+
+* [[option_weechat.look.paste_bracketed]] *weechat.look.paste_bracketed*
+** опис: pass:none[укључује терминалски „режим ограђеног налепљивања” (не подржавају га сви терминали/мултиплексери): у овом режиму се налепљени текст ограђује контролним низовима тако да програм WeeChat може направити разлику између налепљеног и откуцаног текста („ESC[200~”, након које следи налепљени текст, иза којег следи „ESC[201~”)]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+on+`
+
+* [[option_weechat.look.paste_bracketed_timer_delay]] *weechat.look.paste_bracketed_timer_delay*
+** опис: pass:none[Форсира крај ограђеног налепљивања након протека оволико времена (у секундама) ако се контролни низ та крај ограђеног налепљивања („ESC[201~”) није примио на време]
+** тип: целобројна
+** вредности: 1 .. 60
** подразумевана вредност: `+10+`
-* [[option_fset.look.show_plugins_desc]] *fset.look.show_plugins_desc*
-** опис: pass:none[приказивање описа опција додатака (plugins.desc.*)]
+* [[option_weechat.look.paste_max_lines]] *weechat.look.paste_max_lines*
+** опис: pass:none[макс број линија које могу да се налепе без питања корисника (-1 = искључује ову могућност); ова опција се користи само у случају да је у барем једној траци употребљена ставка траке „input_paste” (подразумевано се користи у траци „input”)]
+** тип: целобројна
+** вредности: -1 .. 2147483647
+** подразумевана вредност: `+1+`
+
+* [[option_weechat.look.prefix_action]] *weechat.look.prefix_action*
+** опис: pass:none[префикс за поруке акције (напомена: садржај се израчунава, тако да можете користити боје у формату „${color:xxx}”, погледајте /help eval)]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+" *"+`
+
+* [[option_weechat.look.prefix_align]] *weechat.look.prefix_align*
+** опис: pass:none[поравнање префикса alignment (none, left, right (подраз.))]
+** тип: целобројна
+** вредности: none, left, right
+** подразумевана вредност: `+right+`
+
+* [[option_weechat.look.prefix_align_max]] *weechat.look.prefix_align_max*
+** опис: pass:none[макс величина префикса (0 = без ограничења)]
+** тип: целобројна
+** вредности: 0 .. 128
+** подразумевана вредност: `+0+`
+
+* [[option_weechat.look.prefix_align_min]] *weechat.look.prefix_align_min*
+** опис: pass:none[мин величина префикса]
+** тип: целобројна
+** вредности: 0 .. 128
+** подразумевана вредност: `+0+`
+
+* [[option_weechat.look.prefix_align_more]] *weechat.look.prefix_align_more*
+** опис: pass:none[карактер који се приказује ако се префикс скрати (мора бити тачно један карактер на екрану)]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+"+"+`
+
+* [[option_weechat.look.prefix_align_more_after]] *weechat.look.prefix_align_more_after*
+** опис: pass:none[приказује карактер одсецања (подразумевано „+”) након текста (замењујући размак који би требало да се прикаже на овом месту); ако је искључено, карактер одсецања замењује последњи карактер текста]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+on+`
+
+* [[option_weechat.look.prefix_buffer_align]] *weechat.look.prefix_buffer_align*
+** опис: pass:none[поравнање префикса за име бафера, када је више бафера спојено под истим бројем (none, left, right (подразумевано))]
+** тип: целобројна
+** вредности: none, left, right
+** подразумевана вредност: `+right+`
+
+* [[option_weechat.look.prefix_buffer_align_max]] *weechat.look.prefix_buffer_align_max*
+** опис: pass:none[макс величина за име бафера, када је више бафера спојено под истим бројем (0 = нема максималне величине)]
+** тип: целобројна
+** вредности: 0 .. 128
+** подразумевана вредност: `+0+`
+
+* [[option_weechat.look.prefix_buffer_align_more]] *weechat.look.prefix_buffer_align_more*
+** опис: pass:none[карактер који се приказује ако се име бафера одсеца (када је више бафера спојено под истим бројем) (мора да буде тачно један карактер на екрану)]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+"+"+`
+
+* [[option_weechat.look.prefix_buffer_align_more_after]] *weechat.look.prefix_buffer_align_more_after*
+** опис: pass:none[приказује карактер одсецања (подразумевано „+”) након текста (замењујући размак који би требало да се прикаже на овом месту); ако је искључено, карактер одсецања замењује последњи карактер текста]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+on+`
+
+* [[option_weechat.look.prefix_error]] *weechat.look.prefix_error*
+** опис: pass:none[префикс за поруке о грешки (напомена: садржај се израчунава, тако да можете користити боје у формату „${color:xxx}”, погледајте /help eval)]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+"=!="+`
+
+* [[option_weechat.look.prefix_join]] *weechat.look.prefix_join*
+** опис: pass:none[префикс за поруке приступа (напомена: садржај се израчунава, тако да можете користити боје у формату „${color:xxx}”, погледајте /help eval)]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+"-->"+`
+
+* [[option_weechat.look.prefix_network]] *weechat.look.prefix_network*
+** опис: pass:none[префикс за мрежне поруке (напомена: садржај се израчунава, тако да можете користити боје у формату „${color:xxx}”, погледајте /help eval)]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+"--"+`
+
+* [[option_weechat.look.prefix_quit]] *weechat.look.prefix_quit*
+** опис: pass:none[префикс за поруке напуштања (напомена: садржај се израчунава, тако да можете користити боје у формату „${color:xxx}”, погледајте /help eval)]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+"<--"+`
+
+* [[option_weechat.look.prefix_same_nick]] *weechat.look.prefix_same_nick*
+** опис: pass:none[префикс који се приказује за поруку са истим надимком као и претходна, али не и наредна порука: употребите размак „ ” да сакријете префикс, неки други стринг који желите да се прикаже уместо префикса, или празан стринг ако желите да искључите ову могућност (приказиваће се префикс)]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+""+`
+
+* [[option_weechat.look.prefix_same_nick_middle]] *weechat.look.prefix_same_nick_middle*
+** опис: pass:none[префикс који се приказује за поруку са истим надимком који имају и претходна и наредна порука: употребите размак „ ” ако желите да сакријете префикс, неки други стринг који желите да се прикаже уместо префикса, или празан стринг ако желите да искључите ову могућност (приказиваће се префикс)]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+""+`
+
+* [[option_weechat.look.prefix_suffix]] *weechat.look.prefix_suffix*
+** опис: pass:none[стринг који се приказује након префикса]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+"|"+`
+
+* [[option_weechat.look.quote_nick_prefix]] *weechat.look.quote_nick_prefix*
+** опис: pass:none[текст који се приказује испред надимка када се цитира порука (погледајте /help cursor)]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+"<"+`
+
+* [[option_weechat.look.quote_nick_suffix]] *weechat.look.quote_nick_suffix*
+** опис: pass:none[текст који се приказује након надимка када се цитира порука (погледајте /help cursor)]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+">"+`
+
+* [[option_weechat.look.quote_time_format]] *weechat.look.quote_time_format*
+** опис: pass:none[формат времена када се цитира порука (погледајте /help cursor)]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+"%H:%M:%S"+`
+
+* [[option_weechat.look.read_marker]] *weechat.look.read_marker*
+** опис: pass:none[употреба маркера (линије или карактера) у баферима за означавање прве непрочитане линије]
+** тип: целобројна
+** вредности: none, line, char
+** подразумевана вредност: `+line+`
+
+* [[option_weechat.look.read_marker_always_show]] *weechat.look.read_marker_always_show*
+** опис: pass:none[маркер читања се увек приказује, чак и ако се налази иза последње линије бафера]
** тип: логичка
** вредности: on, off
** подразумевана вредност: `+off+`
-* [[option_fset.look.sort]] *fset.look.sort*
-** опис: pass:none[листа поља за сортирање опција раздвојених запетама (погледајте /help fset за листу поља); карактер „-” може да се користи испред поља чиме се обрће редослед, карактер „~” може да се употреби за поређење које не прави разлику у величини слова; пример: „-~name” за поређење које не прави разлику у величини слова и обрнуто сортирање по имену опције]
+* [[option_weechat.look.read_marker_string]] *weechat.look.read_marker_string*
+** опис: pass:none[стринг који се користи за исцртавање линије маркера читања (стринг се понавља све до краја линије)]
** тип: стринг
** вредности: било који стринг
-** подразумевана вредност: `+"~name"+`
+** подразумевана вредност: `+"- "+`
-* [[option_fset.look.unmarked_string]] *fset.look.unmarked_string*
-** опис: pass:none[стринг који се приказује када опција није маркирана]
+* [[option_weechat.look.read_marker_update_on_buffer_switch]] *weechat.look.read_marker_update_on_buffer_switch*
+** опис: pass:none[ажурирање маркера читања када се прелази на друге бафере]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+on+`
+
+* [[option_weechat.look.save_config_on_exit]] *weechat.look.save_config_on_exit*
+** опис: pass:none[чување конфигурације приликом напуштања програма]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+on+`
+
+* [[option_weechat.look.save_config_with_fsync]] *weechat.look.save_config_with_fsync*
+** опис: pass:none[за синхронизацију конфигурационог фајла са меморијским уређајем се користи fsync (погледајте man fsync); ово је спорије, али би требало да спречи евентуални губитак података у случају губитка напајања током чувања конфигурационог фајла]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+off+`
+
+* [[option_weechat.look.save_layout_on_exit]] *weechat.look.save_layout_on_exit*
+** опис: pass:none[чување распореда приликом напуштања програма (бафери, прозори, или оба)]
+** тип: целобројна
+** вредности: none, buffers, windows, all
+** подразумевана вредност: `+none+`
+
+* [[option_weechat.look.scroll_amount]] *weechat.look.scroll_amount*
+** опис: pass:none[колико линија се скролује помоћу scroll_up и scroll_down]
+** тип: целобројна
+** вредности: 1 .. 2147483647
+** подразумевана вредност: `+3+`
+
+* [[option_weechat.look.scroll_bottom_after_switch]] *weechat.look.scroll_bottom_after_switch*
+** опис: pass:none[скролује се на дно прозора када се пређе на други бафер (у прозорима се не памти скрол позиција); скроловање се ради само у баферима са форматираним садржајем (не ради се за слободни садржај)]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+off+`
+
+* [[option_weechat.look.scroll_page_percent]] *weechat.look.scroll_page_percent*
+** опис: pass:none[проценат екрана који се скролује када се скролује страница навише или наниже (на пример, 100 значи једна страница, 50 пола странице)]
+** тип: целобројна
+** вредности: 1 .. 100
+** подразумевана вредност: `+100+`
+
+* [[option_weechat.look.search_text_not_found_alert]] *weechat.look.search_text_not_found_alert*
+** опис: pass:none[корисник се упозорава када се у баферу не пронађе текст који је тражио]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+on+`
+
+* [[option_weechat.look.separator_horizontal]] *weechat.look.separator_horizontal*
+** опис: pass:none[карактер који се користи за исцртавање хоризонталних сепаратора око трака и прозора (празна вредност ће помоћу ncurses да исцрта праву линију, али на неким терминалима може да изазове багове код избора URL адреса); ширина на екрану мора бити тачно један карактер]
** тип: стринг
** вредности: било који стринг
-** подразумевана вредност: `+" "+`
+** подразумевана вредност: `+"-"+`
-* [[option_fset.look.use_color_value]] *fset.look.use_color_value*
-** опис: pass:none[опције у вези боја се приказују обојено]
+* [[option_weechat.look.separator_vertical]] *weechat.look.separator_vertical*
+** опис: pass:none[карактер који се користи за исцртавање вертикалних сепаратора око трака и прозора (празна вредност ће помоћу ncurses да исцрта праву линију); ширина на екрану мора бити тачно један карактер]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+""+`
+
+* [[option_weechat.look.tab_width]] *weechat.look.tab_width*
+** опис: pass:none[број размака који се користи за приказ табулатора у порукама]
+** тип: целобројна
+** вредности: 1 .. 64
+** подразумевана вредност: `+1+`
+
+* [[option_weechat.look.time_format]] *weechat.look.time_format*
+** опис: pass:none[формат времена за датуме који се конвертују у стрингове и приказују у порукама (погледајте man strftime за спецификаторе датума/времена)]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+"%a, %d %b %Y %T"+`
+
+* [[option_weechat.look.window_auto_zoom]] *weechat.look.window_auto_zoom*
+** опис: pass:none[аутоматско зумирање на текући прозор ако прозор терминала постане сувише мали да покаже све прозоре (употребите alt-z да вратите зум прозора када терминалски прозор постане довољно велики)]
** тип: логичка
** вредности: on, off
** подразумевана вредност: `+off+`
-* [[option_fset.look.use_keys]] *fset.look.use_keys*
-** опис: pass:none[употреба тастера alt+X у fset баферу за извршавање акција над опцијама; ако је искључено, дозвољен је само унос]
+* [[option_weechat.look.window_separator_horizontal]] *weechat.look.window_separator_horizontal*
+** опис: pass:none[приказ хоризонталног сепаратора између прозора]
** тип: логичка
** вредности: on, off
** подразумевана вредност: `+on+`
-* [[option_fset.look.use_mute]] *fset.look.use_mute*
-** опис: pass:none[за постављање опција се користи команда /mute]
+* [[option_weechat.look.window_separator_vertical]] *weechat.look.window_separator_vertical*
+** опис: pass:none[приказ вертикалног сепаратора између прозора]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+on+`
+
+* [[option_weechat.look.window_title]] *weechat.look.window_title*
+** опис: pass:none[наслов прозора (терминала за Curses ГКИ), који се поставља приликом покретања програма; празан стринг ће задржати постојећи наслов (напомена: садржај се израчунава, погледајте /help eval); пример: „WeeChat ${info:version}”]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+""+`
+
+* [[option_weechat.look.word_chars_highlight]] *weechat.look.word_chars_highlight*
+** опис: pass:none[листа карактера раздвојених зарезима (или опсега карактера) који се сматрају за део речи које се истичу; свака ставка може бити један карактер, опсег карактера (формат је: a-z), класа широких карактера (на пример „alnum”, погледајте man wctype); „!” испред ставке је чини негативном (тј. карактер се НЕ сматра као део речи); вредност „*” се подудара са било којим карактером; дозвољени су уникод карактери у формату \u1234, на пример \u00A0 за размак који не сме да се преломи (погледајте /help print за подржане формате)]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+"!\u00A0,-,_,|,alnum"+`
+
+* [[option_weechat.look.word_chars_input]] *weechat.look.word_chars_input*
+** опис: pass:none[листа карактера раздвојених зарезима (или опсег карактера) који се сматра за део речи у командној линији; свака ставка може бити један карактер, опсег карактера (формат: a-z), класа широких карактера (на пример „alnum”, погледајте man wctype); „!” испред ставке је чини негативном (тј. карактер се НЕ сматра као део речи); вредност „*” се подудара са било којим карактером; дозвољени су уникод карактери у формату \u1234, на пример \u00A0 за размак који не може да се преломи (погледајте /help print за подржане формате)]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+"!\u00A0,-,_,|,alnum"+`
+
+* [[option_weechat.network.connection_timeout]] *weechat.network.connection_timeout*
+** опис: pass:none[тајмаут (у секундама) који се чека на конекцију са удаљеним хостом (која се креира као процес дете)]
+** тип: целобројна
+** вредности: 1 .. 2147483647
+** подразумевана вредност: `+60+`
+
+* [[option_weechat.network.gnutls_ca_system]] *weechat.network.gnutls_ca_system*
+** опис: pass:none[током покретања учитава подразумеване системске ауторитете сертификата; ово може да се искључи како би се уштедело нешто меморије, али само онда када уопште не користите SSL везе]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+on+`
+
+* [[option_weechat.network.gnutls_ca_user]] *weechat.network.gnutls_ca_user*
+** опис: pass:none[додатни фајл(ови) са ауторитетима сертификата; више фајлова може да се раздвоји тачка зарезима (свака путања се израчунава, погледајте функцију string_eval_path_home у референтном приручнику API додатака)]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+""+`
+
+* [[option_weechat.network.gnutls_handshake_timeout]] *weechat.network.gnutls_handshake_timeout*
+** опис: pass:none[тајмаут (у секундама) за gnutls успостављање везе]
+** тип: целобројна
+** вредности: 1 .. 2147483647
+** подразумевана вредност: `+30+`
+
+* [[option_weechat.network.proxy_curl]] *weechat.network.proxy_curl*
+** опис: pass:none[име проксија који се користи за преузимање са URL адреса програмом Curl (користи се за преузимање листе скрипти и за позивање функције hook_process у скриптама); прокси мора бити дефинисан командом /proxy]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+""+`
+
+* [[option_weechat.plugin.autoload]] *weechat.plugin.autoload*
+** опис: pass:none[листа додатака раздвојена зарезима који се приликом покретања аутоматски учитавају, „*” значи сви пронађени додаци, име које почиње са „!” је негативна вредност која спречава да се тај додатак учита, џокер „*” се дозвољава у именима (примери: „*” или „*,!lua,!tcl”)]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+"*"+`
+
+* [[option_weechat.plugin.extension]] *weechat.plugin.extension*
+** опис: pass:none[листа екстензија имена фајлова за додатке раздвојених запетама]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+".so,.dll"+`
+
+* [[option_weechat.plugin.path]] *weechat.plugin.path*
+** опис: pass:none[путања за претраживање додатака (путања се израчунава, погледајте функцију string_eval_path_home у референтном приручнику API додатака)]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+"${weechat_data_dir}/plugins"+`
+
+* [[option_weechat.plugin.save_config_on_unload]] *weechat.plugin.save_config_on_unload*
+** опис: pass:none[чување конфигурације када се додаци уклањају из меморије]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+on+`
+
+* [[option_weechat.signal.sighup]] *weechat.signal.sighup*
+** опис: pass:none[команда која се извршава када се прими сигнал, више команди може да се раздвоји тачка зарезима (напомена: команде се израчунавају, погледајте /help eval)]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+"${if:${info:weechat_headless}?/reload:/quit -yes}"+`
+
+* [[option_weechat.signal.sigquit]] *weechat.signal.sigquit*
+** опис: pass:none[команда која се извршава када се прими сигнал, више команди може да се раздвоји тачка зарезима (напомена: команде се израчунавају, погледајте /help eval)]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+"/quit -yes"+`
+
+* [[option_weechat.signal.sigterm]] *weechat.signal.sigterm*
+** опис: pass:none[команда која се извршава када се прими сигнал, више команди може да се раздвоји тачка зарезима (напомена: команде се израчунавају, погледајте /help eval)]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+"/quit -yes"+`
+
+* [[option_weechat.signal.sigusr1]] *weechat.signal.sigusr1*
+** опис: pass:none[команда која се извршава када се прими сигнал, више команди може да се раздвоји тачка зарезима (напомена: команде се израчунавају, погледајте /help eval)]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+""+`
+
+* [[option_weechat.signal.sigusr2]] *weechat.signal.sigusr2*
+** опис: pass:none[команда која се извршава када се прими сигнал, више команди може да се раздвоји тачка зарезима (напомена: команде се израчунавају, погледајте /help eval)]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+""+`
+
+* [[option_weechat.startup.command_after_plugins]] *weechat.startup.command_after_plugins*
+** опис: pass:none[команда која се извршава када се покрене програм WeeChat, након учитавања додатака; више команди може да се раздвоји тачка зарезима (напомена: команде се израчунавају, погледајте /help eval)]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+""+`
+
+* [[option_weechat.startup.command_before_plugins]] *weechat.startup.command_before_plugins*
+** опис: pass:none[команда која се извршава када се покрене програм WeeChat, пре учитавања додатака; више команди може да се раздвоји тачка зарезима (напомена: команде се израчунавају, погледајте /help eval)]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+""+`
+
+* [[option_weechat.startup.display_logo]] *weechat.startup.display_logo*
+** опис: pass:none[приказивање WeeChat логоа приликом покретања]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+on+`
+
+* [[option_weechat.startup.display_version]] *weechat.startup.display_version*
+** опис: pass:none[приказивање WeeChat верзије приликом покретања]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+on+`
+
+* [[option_weechat.startup.sys_rlimit]] *weechat.startup.sys_rlimit*
+** опис: pass:none[поставља границе ресурса за WeeChat процес, формат је: „рес1:лимит1,рес2:лимит2”; име ресурса је крај константе (RLIMIT_XXX) исписано малим словима (за вредности погледајте man setrlimit); лимит -1 значи „неограничено”; пример: постављање неограничене величине за фајл језгра и максимално 1ГБ виртуелне меморије: „core:-1,as:1000000000”]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+""+`
+// end::weechat_options[]
+
+// tag::xfer_options[]
+* [[option_xfer.color.status_aborted]] *xfer.color.status_aborted*
+** опис: pass:none[боја текста за „прекинут” статус]
+** тип: боја
+** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** подразумевана вредност: `+lightred+`
+
+* [[option_xfer.color.status_active]] *xfer.color.status_active*
+** опис: pass:none[боја текста за „активан” статус]
+** тип: боја
+** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** подразумевана вредност: `+lightblue+`
+
+* [[option_xfer.color.status_connecting]] *xfer.color.status_connecting*
+** опис: pass:none[боја текста за статус „connecting”]
+** тип: боја
+** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** подразумевана вредност: `+yellow+`
+
+* [[option_xfer.color.status_done]] *xfer.color.status_done*
+** опис: pass:none[боја текста за „завршен” статус]
+** тип: боја
+** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** подразумевана вредност: `+lightgreen+`
+
+* [[option_xfer.color.status_failed]] *xfer.color.status_failed*
+** опис: pass:none[боја текста за „није успео” статус]
+** тип: боја
+** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** подразумевана вредност: `+lightred+`
+
+* [[option_xfer.color.status_waiting]] *xfer.color.status_waiting*
+** опис: pass:none[боја текста за „чекање” статус]
+** тип: боја
+** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** подразумевана вредност: `+lightcyan+`
+
+* [[option_xfer.color.text]] *xfer.color.text*
+** опис: pass:none[боја текста у xfer баферу]
+** тип: боја
+** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** подразумевана вредност: `+default+`
+
+* [[option_xfer.color.text_bg]] *xfer.color.text_bg*
+** опис: pass:none[боја позадине у xfer баферу]
+** тип: боја
+** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** подразумевана вредност: `+default+`
+
+* [[option_xfer.color.text_selected]] *xfer.color.text_selected*
+** опис: pass:none[боја текста у изабраној линији xfer бафера]
+** тип: боја
+** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
+** подразумевана вредност: `+white+`
+
+* [[option_xfer.file.auto_accept_chats]] *xfer.file.auto_accept_chats*
+** опис: pass:none[аутоматско прихватање захтева за разговор (употребљавајте опрезно!)]
** тип: логичка
** вредности: on, off
** подразумевана вредност: `+off+`
-// end::fset_options[]
+
+* [[option_xfer.file.auto_accept_files]] *xfer.file.auto_accept_files*
+** опис: pass:none[аутоматско прихватање долазних фајлова (употребљавајте опрезно!)]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+off+`
+
+* [[option_xfer.file.auto_accept_nicks]] *xfer.file.auto_accept_nicks*
+** опис: pass:none[листа надимака раздвојених запетама за које се долазни фајлови и разговори аутоматски прихватају; формат је „сервер.надимак” (за одређени сервер) или „надимак” (за све сервере); пример: „libera.FlashCode,andrew”]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+""+`
+
+* [[option_xfer.file.auto_check_crc32]] *xfer.file.auto_check_crc32*
+** опис: pass:none[аутоматска провера CRC32 контролне суме фајла ако се пронађе у имену фајла (8 хексадецималних карактера)]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+off+`
+
+* [[option_xfer.file.auto_rename]] *xfer.file.auto_rename*
+** опис: pass:none[измена имена долазном фајлу ако већ постоји (додаје се „.1”, „.2”, ...)]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+on+`
+
+* [[option_xfer.file.auto_resume]] *xfer.file.auto_resume*
+** опис: pass:none[аутоматски наставак трансфера фајла ако се веза са удаљеним хостом прекине]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+on+`
+
+* [[option_xfer.file.convert_spaces]] *xfer.file.convert_spaces*
+** опис: pass:none[конвертовање размака у доње црте када се шаљу и примају фајлови]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+on+`
+
+* [[option_xfer.file.download_path]] *xfer.file.download_path*
+** опис: pass:none[путања за писање долазних фајлова (путања се израчунава, погледајте функцију string_eval_path_home у референтном приручнику API додатака)]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+"${weechat_data_dir}/xfer"+`
+
+* [[option_xfer.file.download_temporary_suffix]] *xfer.file.download_temporary_suffix*
+** опис: pass:none[суфикс привременог фајла који се користи током трансфера долазног фајла, он се уклања након успешног завршетка трансфера; ако је празан стринг, не користи се никакав суфикс имена фајла током трансфера]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+".part"+`
+
+* [[option_xfer.file.upload_path]] *xfer.file.upload_path*
+** опис: pass:none[путања за читање фајлова за слање (путања се израчунава, погледајте функцију string_eval_path_home у референтном приручнику API додатака)]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+"~"+`
+
+* [[option_xfer.file.use_nick_in_filename]] *xfer.file.use_nick_in_filename*
+** опис: pass:none[употреба удаљеног надимка као префикс у имену локалног фајла када се прима фајл]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+on+`
+
+* [[option_xfer.look.auto_open_buffer]] *xfer.look.auto_open_buffer*
+** опис: pass:none[ауто отварање xfer бафера када се на листу дода нови xfer]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+on+`
+
+* [[option_xfer.look.progress_bar_size]] *xfer.look.progress_bar_size*
+** опис: pass:none[величина траке напретка, у карактерима (ако је 0, трака напретка је искључена)]
+** тип: целобројна
+** вредности: 0 .. 256
+** подразумевана вредност: `+20+`
+
+* [[option_xfer.look.pv_tags]] *xfer.look.pv_tags*
+** опис: pass:none[листа ознака раздвојених запетама које се користе у приватним порукама, на пример: „notify_message”, „notify_private” или „notify_highlight”]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+"notify_private"+`
+
+* [[option_xfer.network.blocksize]] *xfer.network.blocksize*
+** опис: pass:none[величина блока за слање пакета, у бајтовима]
+** тип: целобројна
+** вредности: 1024 .. 102400
+** подразумевана вредност: `+65536+`
+
+* [[option_xfer.network.fast_send]] *xfer.network.fast_send*
+** опис: pass:none[не чека се на ACK када се шаље фајл]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+on+`
+
+* [[option_xfer.network.own_ip]] *xfer.network.own_ip*
+** опис: pass:none[IP или DNS адреса која се користи за слање фајлова/разговора (ако је празно, користи се IP локалног интерфејса)]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+""+`
+
+* [[option_xfer.network.port_range]] *xfer.network.port_range*
+** опис: pass:none[ограничава одлазне фајлове/разговоре тако да користе само портове у наведеном опсегу (корисно за NAT) (синтакса: један порт, тј. 5000 или опсег портова, тј. 5000-5015, празна вредност значи било који порт, препоручује се употреба портова већих од 1024, јер само root може да користи портове испод 1024)]
+** тип: стринг
+** вредности: било који стринг
+** подразумевана вредност: `+""+`
+
+* [[option_xfer.network.send_ack]] *xfer.network.send_ack*
+** опис: pass:none[слање acks када се примају фајлови; ако је искључено, трансфер може да се закочи у случају да пошиљалац чека на acks (на пример програм WeeChat који шаље фајл са опцијом xfer.network.fast_send постављеном на off); с друге стране, искључивање слања acks може спречити замрзавање у случају да се acks одмах не шаљу пошиљаоцу]
+** тип: логичка
+** вредности: on, off
+** подразумевана вредност: `+on+`
+
+* [[option_xfer.network.speed_limit_recv]] *xfer.network.speed_limit_recv*
+** опис: pass:none[ограничење брзине за пријем фајлова, у килобајтима по секунди (0 значи без ограничења)]
+** тип: целобројна
+** вредности: 0 .. 2147483647
+** подразумевана вредност: `+0+`
+
+* [[option_xfer.network.speed_limit_send]] *xfer.network.speed_limit_send*
+** опис: pass:none[ограничење брзине за слање фајлова, у килобајтима по секунди (0 значи без ограничења)]
+** тип: целобројна
+** вредности: 0 .. 2147483647
+** подразумевана вредност: `+0+`
+
+* [[option_xfer.network.timeout]] *xfer.network.timeout*
+** опис: pass:none[тајмаут за xfer захтев (у секундама)]
+** тип: целобројна
+** вредности: 5 .. 2147483647
+** подразумевана вредност: `+300+`
+// end::xfer_options[]