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 [[;...]] addcompletion [[;...]] del [...] + rename - 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) + 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) -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 +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 -Beispiele: - Alternativbefehl "/split" wird anlegt um ein Fenster horizontal zu teilen: +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,6 +3,2264 @@ // DO NOT EDIT BY HAND! // +// 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},"+` + +* [[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+` + +* [[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_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_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+` + +* [[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_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] +** Typ: integer +** Werte: 1 .. 3 +** Standardwert: `+1+` +// end::buflist_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[] + +// 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: `+lightred+` + +* [[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: `+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[] + +// 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)] +** Typ: Zeichenkette +** Werte: beliebige Zeichenkette +** Standardwert: `+"${weechat_runtime_dir}/weechat_fifo_${info:pid}"+` +// end::fifo_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+` + +* [[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_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: `+default+` + +* [[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_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_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: `+brown+` + +* [[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: `+yellow+` + +* [[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: `+white+` + +* [[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: `+white+` + +* [[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: `+default+` + +* [[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: `+white+` + +* [[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: `+darkgray+` + +* [[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_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: `+cyan+` + +* [[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: `+lightcyan+` + +* [[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: `+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)] +** 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)] +** 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+` + +* [[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: `+red+` + +* [[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: `+brown+` + +* [[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_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: `+default+` + +* [[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: `+white+` + +* [[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: `+default+` + +* [[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: `+white+` + +* [[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: `+default+` + +* [[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: `+brown+` + +* [[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: `+yellow+` + +* [[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: `+white+` + +* [[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: `+default+` + +* [[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: `+brown+` + +* [[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: `+yellow+` + +* [[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: `+white+` + +* [[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: `+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] +** 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_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: `+cyan+` + +* [[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: `+lightcyan+` + +* [[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: `+darkgray+` + +* [[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: `+default+` + +* [[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_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: `+default+` + +* [[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_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: `+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] +** 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] +** 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.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_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: `+white+` + +* [[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: `+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] +** 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_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_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: `+lightgreen+` + +* [[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: `+white+` + +* [[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: `+green+` + +* [[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: `+lightgreen+` + +* [[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: `+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] +** 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.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: `+cyan+` + +* [[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: `+brown+` + +* [[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: `+yellow+` + +* [[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: `+lightcyan+` + +* [[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: `+magenta+` + +* [[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: `+lightmagenta+` + +* [[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: `+"# ${description2}"+` + +* [[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: `+"/set ${name} ${quoted_value}"+` + +* [[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: `+"/unset ${name}"+` + +* [[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: `+""+` + +* [[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: `+"${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* +** 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: `+"*"+` + +* [[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: `+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] +** Typ: Zeichenkette +** Werte: beliebige Zeichenkette +** Standardwert: `+"${count} >= 1"+` + +* [[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_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 .. 2 +** Standardwert: `+1+` + +* [[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: `+"*"+` + +* [[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 .. 100 +** 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.*)] +** 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_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: `+" "+` + +* [[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_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_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: `+off+` +// end::fset_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::irc_options[] +* [[option_irc.color.input_nick]] *irc.color.input_nick* +** Beschreibung: pass:none[Farbe des eigenen Nicknamens in der 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: `+lightcyan+` + +* [[option_irc.color.item_channel_modes]] *irc.color.item_channel_modes* +** Beschreibung: pass:none[Farbe der Kanal-Modes (neben des Kanalnamens)] +** 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_irc.color.item_lag_counting]] *irc.color.item_lag_counting* +** Beschreibung: pass:none[Farbe in der die Anzeige für die Verzögerung (Lag) dargestellt werden soll, sobald auf Antwort gewartet wird ("pong" wurde vom Server nicht empfangen und die Verzögerungszeit wird erhöht)] +** 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_irc.color.item_lag_finished]] *irc.color.item_lag_finished* +** Beschreibung: pass:none[Farbe in der die Anzeige für die Verzögerung (Lag) dargestellt werden soll, sobald ein "pong" vom Server empfangen 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+` + +* [[option_irc.color.item_nick_modes]] *irc.color.item_nick_modes* +** Beschreibung: pass:none[Farbe in der der Nick-Modus in dem Bar-Item "input_prompt" angezeigt 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+` + +* [[option_irc.color.item_tls_version_deprecated]] *irc.color.item_tls_version_deprecated* +** Beschreibung: pass:none[Farbe die für eine unsicherere TLS-Version im Bar-Item "tls_version" genutzt 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: `+yellow+` + +* [[option_irc.color.item_tls_version_insecure]] *irc.color.item_tls_version_insecure* +** Beschreibung: pass:none[Farbe die für eine unsichere TLS-Versionen im Bar-Item "tls_version" genutzt wirdFarbe für unsichere TLS-Versionen im Balkenelement "tls_version"] +** 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_irc.color.item_tls_version_ok]] *irc.color.item_tls_version_ok* +** Beschreibung: pass:none[Farbe die für eine sicherere TLS-Version im Bar-Item "tls_version" genutzt 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: `+green+` + +* [[option_irc.color.message_account]] *irc.color.message_account* +** Beschreibung: pass:none[Textfarbe für "account" Nachrichten] +** 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_irc.color.message_chghost]] *irc.color.message_chghost* +** Beschreibung: pass:none[Textfarbe in der "chghost" Nachrichten dargestellt 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: `+brown+` + +* [[option_irc.color.message_join]] *irc.color.message_join* +** Beschreibung: pass:none[Textfarbe in der die Meldungen für das Betreten eines Kanals angezeigt 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: `+green+` + +* [[option_irc.color.message_kick]] *irc.color.message_kick* +** Beschreibung: pass:none[Textfarbe in der die Meldungen für kick/kill Nachrichten angezeigt 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: `+red+` + +* [[option_irc.color.message_quit]] *irc.color.message_quit* +** Beschreibung: pass:none[Textfarbe in der die Meldungen für das Verlassen/Beenden eines Kanals angezeigt 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: `+red+` + +* [[option_irc.color.message_setname]] *irc.color.message_setname* +** Beschreibung: pass:none[Textfarbe in der "setname" Nachrichten dargestellt 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: `+brown+` + +* [[option_irc.color.mirc_remap]] *irc.color.mirc_remap* +** Beschreibung: pass:none[ersetzt mirc Farben in Nachrichten mittels einer Hashtabelle: Schlüssel sind "fg,bg" als Ganzzahl zwischen -1 (nicht näher bezeichnet) und 15. Als Wert ist der Farbname oder die Farbnummer von WeeChat möglich (Format: "1,-1:Farbe1;2,7:Farbe2"), Beispiel: "1,-1:darkgray;1,2:white,blue" ersetzt schwarz durch "darkgray" und schwarz auf blau durch "white,blue"; Tabelle der Standard-IRC-Farben von WeeChat (in Klammern der Farbname, wie er von WeeChat genutzt wird): 0=weiß (white), 1=schwarz (black), 2=blau (blue), 3=grün (green), 4=hellrot (lightred), 5=rot (red), 6=violett (magenta), 7=braun (brown), 8=gelb (yellow), 9= hell-grün (lightgreen), 10=türkis (cyan), 11=hell-türkis (lightcyan), 12=hellblau (lightblue), 13=hell-violett (lightmagenta), 14=dunkel-grau (darkgray), 15=grau (gray)] +** Typ: Zeichenkette +** Werte: beliebige Zeichenkette +** Standardwert: `+"1,-1:darkgray"+` + +* [[option_irc.color.nick_prefixes]] *irc.color.nick_prefixes* +** Beschreibung: pass:none[Farben für Nick Präfix für das Modus-Symbol (o=op, h=halfop, v=voice, ..), Format: "o:color1;h:color2;v:color3" (wird ein Modus nicht gefunden probiert WeeChat einen der nächsten Modi aus, die der Server sendet ("PREFIX"); wird kein Modus in der Liste gefunden, wird eine Standardfarbe verwendet die dem Zeichen "*" zugeordnet wurde)] +** Typ: Zeichenkette +** Werte: beliebige Zeichenkette +** Standardwert: `+"y:lightred;q:lightred;a:lightcyan;o:lightgreen;h:lightmagenta;v:yellow;*:lightblue"+` + +* [[option_irc.color.notice]] *irc.color.notice* +** Beschreibung: pass:none[Farbe des "Notice"-Textes in Notizen] +** 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_irc.color.reason_kick]] *irc.color.reason_kick* +** Beschreibung: pass:none[Textfarbe in der die Begründung einer kick/kill Nachricht angezeigt 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+` + +* [[option_irc.color.reason_quit]] *irc.color.reason_quit* +** Beschreibung: pass:none[Textfarbe in der die Begründung einer part/quit Nachricht angezeigt 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+` + +* [[option_irc.color.topic_current]] *irc.color.topic_current* +** Beschreibung: pass:none[Farbe in dem das aktuelle Thema des Kanals dargestellt werden soll (wenn ein Kanal betreten oder der Befehl /topic genutzt 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: `+default+` + +* [[option_irc.color.topic_new]] *irc.color.topic_new* +** Beschreibung: pass:none[Farbe in dem das neue Thema des Kanals dargestellt werden soll, falls das Thema des Kanals geä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: `+white+` + +* [[option_irc.color.topic_old]] *irc.color.topic_old* +** Beschreibung: pass:none[Farbe in dem das alte Thema des Kanals dargestellt werden soll, falls das Thema des Kanals geä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_irc.look.buffer_open_before_autojoin]] *irc.look.buffer_open_before_autojoin* +** Beschreibung: pass:none[betritt man automatisch einen Kanal-Buffer (mittels autojoin Option) wird dieser direkt geöffnet, ohne auf die JOIN Nachricht des Servers zu warten; dies ist sinnvoll um die Kanäle immer an der selben Position bei einem Neustart zu öffnen] +** Typ: boolesch +** Werte: on, off +** Standardwert: `+on+` + +* [[option_irc.look.buffer_open_before_join]] *irc.look.buffer_open_before_join* +** Beschreibung: pass:none[betritt man mittels dem /join Befehl einen Kanal wird der Buffer direkt geöffnet, ohne auf die JOIN Nachricht des Servers zu warten] +** Typ: boolesch +** Werte: on, off +** Standardwert: `+off+` + +* [[option_irc.look.buffer_switch_autojoin]] *irc.look.buffer_switch_autojoin* +** Beschreibung: pass:none[wechselt automatisch zum Kanal-Buffer falls dieser automatisch betreten wurde (mittels der Serveroption "autojoin")] +** Typ: boolesch +** Werte: on, off +** Standardwert: `+on+` + +* [[option_irc.look.buffer_switch_join]] *irc.look.buffer_switch_join* +** Beschreibung: pass:none[wechselt automatisch zum Kanal-Buffer falls dieser manuell betreten wurde (mittels dem /join Befehl)] +** Typ: boolesch +** Werte: on, off +** Standardwert: `+on+` + +* [[option_irc.look.color_nicks_in_names]] *irc.look.color_nicks_in_names* +** Beschreibung: pass:none[nutzt in der Ausgabe von /names die jeweiligen Farbe des Nick (oder bei der Auflistung der Nicks wenn man einen Kanal betritt)] +** Typ: boolesch +** Werte: on, off +** Standardwert: `+off+` + +* [[option_irc.look.color_nicks_in_nicklist]] *irc.look.color_nicks_in_nicklist* +** Beschreibung: pass:none[nutzt die Farbe des Nick in der Nicklist] +** Typ: boolesch +** Werte: on, off +** Standardwert: `+off+` + +* [[option_irc.look.color_nicks_in_server_messages]] *irc.look.color_nicks_in_server_messages* +** Beschreibung: pass:none[nutzt die Farbe des Nick bei Nachrichten vom Server] +** Typ: boolesch +** Werte: on, off +** Standardwert: `+on+` + +* [[option_irc.look.color_pv_nick_like_channel]] *irc.look.color_pv_nick_like_channel* +** Beschreibung: pass:none[nutzt die selbe Farbe für die Darstellung des Nicks im Kanal wie auch im privaten Buffer] +** Typ: boolesch +** Werte: on, off +** Standardwert: `+on+` + +* [[option_irc.look.ctcp_time_format]] *irc.look.ctcp_time_format* +** Beschreibung: pass:none[Format für die Zeitanzeige die bei einer CTCP TIME Anfrage zurückgesendet 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 %z"+` + +* [[option_irc.look.display_account_message]] *irc.look.display_account_message* +** Beschreibung: pass:none[ACCOUNT Nachrichten anzeigen, die empfangen wurden, wenn die Funktion account-notify aktiviert ist] +** Typ: boolesch +** Werte: on, off +** Standardwert: `+on+` + +* [[option_irc.look.display_away]] *irc.look.display_away* +** Beschreibung: pass:none[zeigt eine Nachricht an, sobald der Abwesenheitsstatus ein- bzw. ausgeschaltet wird (off: zeigt/sendet keine Nachricht, local: eine Nachricht wird lokal angezeigt, channel: sendet eine Nachricht an die Kanäle)] +** Typ: integer +** Werte: off, local, channel +** Standardwert: `+local+` + +* [[option_irc.look.display_ctcp_blocked]] *irc.look.display_ctcp_blocked* +** Beschreibung: pass:none[CTCP Nachrichten werden angezeigt, obwohl sie unterdrückt werden] +** Typ: boolesch +** Werte: on, off +** Standardwert: `+on+` + +* [[option_irc.look.display_ctcp_reply]] *irc.look.display_ctcp_reply* +** Beschreibung: pass:none[CTCP Antworten, die durch WeeChat versendet wurden, werden angezeigt] +** Typ: boolesch +** Werte: on, off +** Standardwert: `+on+` + +* [[option_irc.look.display_ctcp_unknown]] *irc.look.display_ctcp_unknown* +** Beschreibung: pass:none[unbekannte CTCP Nachrichten werden angezeigt] +** Typ: boolesch +** Werte: on, off +** Standardwert: `+on+` + +* [[option_irc.look.display_extended_join]] *irc.look.display_extended_join* +** Beschreibung: pass:none[zusätzliche Informationen in den JOIN-Nachrichten anzeigen: Kontoname und richtiger Name (Funktion extended-join muss aktiviert sein)] +** Typ: boolesch +** Werte: on, off +** Standardwert: `+on+` + +* [[option_irc.look.display_host_join]] *irc.look.display_host_join* +** Beschreibung: pass:none[zeigt den Host innerhalb einer join Nachricht an] +** Typ: boolesch +** Werte: on, off +** Standardwert: `+on+` + +* [[option_irc.look.display_host_join_local]] *irc.look.display_host_join_local* +** Beschreibung: pass:none[zeigt den Host innerhalb einer join Nachrichten des lokalen Client an] +** Typ: boolesch +** Werte: on, off +** Standardwert: `+on+` + +* [[option_irc.look.display_host_quit]] *irc.look.display_host_quit* +** Beschreibung: pass:none[zeigt den Host innerhalb einer part/quit Nachricht an] +** Typ: boolesch +** Werte: on, off +** Standardwert: `+on+` + +* [[option_irc.look.display_join_message]] *irc.look.display_join_message* +** Beschreibung: pass:none[durch Kommata getrennte Liste von Nachrichten die beim Betreten eines Kanals angezeigt werden sollen: 324 = Channel-Modi, 329 = Erstellungsdatum des Kanals, 332 = Topic, 333 = Nick/Datum für Topic, 353 = genutzte Namen im Kanal, 366 = Anzahl der Nicks im Kanal] +** Typ: Zeichenkette +** Werte: beliebige Zeichenkette +** Standardwert: `+"329,332,333,366"+` + +* [[option_irc.look.display_old_topic]] *irc.look.display_old_topic* +** Beschreibung: pass:none[zeige das alte Thema an, falls das Thema des Kanals geändert wurde] +** Typ: boolesch +** Werte: on, off +** Standardwert: `+on+` + +* [[option_irc.look.display_pv_away_once]] *irc.look.display_pv_away_once* +** Beschreibung: pass:none[in einer privaten Unterhaltung nur einmal eine Abwesenheitsnachricht anzeigen] +** Typ: boolesch +** Werte: on, off +** Standardwert: `+on+` + +* [[option_irc.look.display_pv_back]] *irc.look.display_pv_back* +** Beschreibung: pass:none[es wird bei einer privaten Unterhaltung eine Mitteilung ausgegeben falls der User wieder zurück ist (falls der User sich beim Server abgemeldet hat)] +** Typ: boolesch +** Werte: on, off +** Standardwert: `+on+` + +* [[option_irc.look.display_pv_nick_change]] *irc.look.display_pv_nick_change* +** Beschreibung: pass:none[Nickänderung im privaten Buffer anzeigen] +** Typ: boolesch +** Werte: on, off +** Standardwert: `+on+` + +* [[option_irc.look.display_pv_warning_address]] *irc.look.display_pv_warning_address* +** Beschreibung: pass:none[zeigt eine Warnung in einem privaten Buffer an, sobald sich die Adresse eines Remote-Nick geändert hat; diese Option ist standardmäßig ausgeschaltet, da Server wie bitlbee eine solche Warnung unvermittelt auslösen (die Adresse des Remote-Nick ändert sich während eines Login mehrfach)] +** Typ: boolesch +** Werte: on, off +** Standardwert: `+off+` + +* [[option_irc.look.highlight_channel]] *irc.look.highlight_channel* +** Beschreibung: pass:none[durch Kommata getrennte Liste von Wörtern die im Kanal-Buffern als Highlight erscheinen sollen (zwischen Groß- und Kleinschreibung wird nicht unterschieden. Um zwischen Groß- und Kleinschreibung zu unterscheiden muss zu Beginn "(?-i)" genutzt werden; des Weiteren können folgende Variablen genutzt werden: $nick, $channel und $server). Wird ein Buffer geöffnet, dann werden die angegeben Wörter dem Buffer-Merkmal "highlight_words" hinzugefügt. Dies bedeutet, dass diese Einstellung keinen direkten Einfluss auf schon geöffnete Buffer hat. Eine leere Zeichenkette deaktiviert ein Highlight für den Nick. Beispiel: "$nick", "(?-i)$nick"] +** Typ: Zeichenkette +** Werte: beliebige Zeichenkette +** Standardwert: `+"$nick"+` + +* [[option_irc.look.highlight_pv]] *irc.look.highlight_pv* +** Beschreibung: pass:none[durch Kommata getrennte Liste von Wörtern die in einem privaten Buffer als Highlight erscheinen sollen (zwischen Groß- und Kleinschreibung wird nicht unterschieden. Um zwischen Groß- und Kleinschreibung zu unterscheiden muss zu Beginn "(?-i)" genutzt werden; des Weiteren können folgende Variablen genutzt werden: $nick, $channel und $server). Wird ein Buffer geöffnet, dann werden die angegeben Wörter dem Buffer-Merkmal "highlight_words" hinzugefügt. Dies bedeutet, dass diese Einstellung keinen direkten Einfluss auf schon geöffnete Buffer hat. Eine leere Zeichenkette deaktiviert ein Highlight für den Nick. Beispiel: "$nick", "(?-i)$nick"] +** Typ: Zeichenkette +** Werte: beliebige Zeichenkette +** Standardwert: `+"$nick"+` + +* [[option_irc.look.highlight_server]] *irc.look.highlight_server* +** Beschreibung: pass:none[durch Kommata getrennte Liste von Wörtern die in Server-Buffern als Highlight erscheinen sollen (zwischen Groß- und Kleinschreibung wird nicht unterschieden. Um zwischen Groß- und Kleinschreibung zu unterscheiden muss zu Beginn "(?-i)" genutzt werden; des Weiteren können folgende Variablen genutzt werden: $nick, $channel und $server). Wird ein Buffer geöffnet, dann werden die angegeben Wörter dem Buffer-Merkmal "highlight_words" hinzugefügt. Dies bedeutet, dass diese Einstellung keinen direkten Einfluss auf schon geöffnete Buffer hat. Eine leere Zeichenkette deaktiviert ein Highlight für den Nick. Beispiel: "$nick", "(?-i)$nick"] +** Typ: Zeichenkette +** Werte: beliebige Zeichenkette +** Standardwert: `+"$nick"+` + +* [[option_irc.look.highlight_tags_restrict]] *irc.look.highlight_tags_restrict* +** Beschreibung: pass:none[beschränkt Highlights für IRC Buffer auf bestimmte Tags (um Highlights durch User- aber nicht durch Servernachrichten zu erhalten); Tags müssen durch Kommata getrennt werden; um eine logische "und" Verknüpfung zu verwenden, können mehrere Tags durch "+" zusammengefügt werden; der Platzhalter "*" kann verwendet werden um mehr als ein Tag zu markieren; wird kein Wert angegeben, erzeugt jedes Tag ein Highlight] +** Typ: Zeichenkette +** Werte: beliebige Zeichenkette +** Standardwert: `+"irc_privmsg,irc_notice"+` + +* [[option_irc.look.item_channel_modes_hide_args]] *irc.look.item_channel_modes_hide_args* +** Beschreibung: pass:none[unterdrückt die Ausgabe von Argumenten die die Kanalmodi betreffen, sofern der entsprechende Modus für den Kanal gesetzt ist ("*" unterdrückt jedwede Ausgabe von Argumenten; wird kein Wert angegeben, dann werden alle Argumente angezeigt); Beispiele: "kf" unterdrückt die Argumente, falls "k" oder "f" für den Kanal gesetzt sind] +** Typ: Zeichenkette +** Werte: beliebige Zeichenkette +** Standardwert: `+"k"+` + +* [[option_irc.look.item_display_server]] *irc.look.item_display_server* +** Beschreibung: pass:none[Name der Bar-Item in dem der IRC Server angezeigt wird (für Status-Bar)] +** Typ: integer +** Werte: buffer_plugin, buffer_name +** Standardwert: `+buffer_plugin+` + +* [[option_irc.look.item_nick_modes]] *irc.look.item_nick_modes* +** Beschreibung: pass:none[der Nick-Modus wird in dem Bar-Item "input_prompt" angezeigt] +** Typ: boolesch +** Werte: on, off +** Standardwert: `+on+` + +* [[option_irc.look.item_nick_prefix]] *irc.look.item_nick_prefix* +** Beschreibung: pass:none[der Nick-Präfix wird im Bar-Item "input_prompt" angezeigt] +** Typ: boolesch +** Werte: on, off +** Standardwert: `+on+` + +* [[option_irc.look.join_auto_add_chantype]] *irc.look.join_auto_add_chantype* +** Beschreibung: pass:none[es wird dem Kanalnamen automatisch der Kanal-Typ vorangestellt, falls bei der Benutzung des /join Befehls der angegebene Kanalname keinen gültigen Typ besitzt; Beispiel: "/join weechat" wird als: "/join #weechat" versendet] +** Typ: boolesch +** Werte: on, off +** Standardwert: `+off+` + +* [[option_irc.look.msgbuffer_fallback]] *irc.look.msgbuffer_fallback* +** Beschreibung: pass:none[Standardbuffer der für Ausgaben genutzt werden soll, falls ein privater Buffer nicht gefunden wird] +** Typ: integer +** Werte: current, server +** Standardwert: `+current+` + +* [[option_irc.look.new_channel_position]] *irc.look.new_channel_position* +** Beschreibung: pass:none[ein neu geöffneter Kanal wird auf eine Position gezwungen (none = standardmäßige Position (sollte der letzte Buffer in der Liste sein), next = aktueller Buffer + 1, near_server = nach dem letztem Kanal/privaten Buffer des jeweiligen Servers)] +** Typ: integer +** Werte: none, next, near_server +** Standardwert: `+none+` + +* [[option_irc.look.new_pv_position]] *irc.look.new_pv_position* +** Beschreibung: pass:none[ein neuer privater Buffer wird auf eine Position gezwungen (none = standardmäßige Position (sollte der letzte Buffer in der Liste sein), next = aktueller Buffer + 1, near_server = nach dem letztem Kanal/privaten Buffer des jeweiligen Servers)] +** Typ: integer +** Werte: none, next, near_server +** Standardwert: `+none+` + +* [[option_irc.look.nick_completion_smart]] *irc.look.nick_completion_smart* +** Beschreibung: pass:none[intelligente Vervollständigung für Nicks (es wird zuerst mit den letzten Rednern vervollständigt): speakers = alle Redner (einschließlich Highlights), speakers_highlight = nur Redner die eine Highlight Nachricht geschrieben haben] +** Typ: integer +** Werte: off, speakers, speakers_highlights +** Standardwert: `+speakers+` + +* [[option_irc.look.nick_mode]] *irc.look.nick_mode* +** Beschreibung: pass:none[vor dem Nick wird der entsprechende Nickmodus (op, voice,...) angezeigt (none = Funktion ist deaktiviert, prefix = wird nur im Präfix angezeigt (Standardeinstellung), action = wird nur in action Nachrichten angezeigt, both = im Präfix und in action Nachrichten)] +** Typ: integer +** Werte: none, prefix, action, both +** Standardwert: `+prefix+` + +* [[option_irc.look.nick_mode_empty]] *irc.look.nick_mode_empty* +** Beschreibung: pass:none[es wird ein Leerzeichen anstelle eines Nickmodus verwendet, falls kein Nickmodus ((half)op/voice [@%+\]) vorhanden ist] +** Typ: boolesch +** Werte: on, off +** Standardwert: `+off+` + +* [[option_irc.look.nicks_hide_password]] *irc.look.nicks_hide_password* +** Beschreibung: pass:none[durch Kommata getrennte Liste von Nicks bei denen das Passwort in einer Nachricht unterdrückt werden soll. Zum Beispiel bei einer Nachricht die durch "/msg nickserv identify password" generiert wird. Beispiel: "nickserv,nickbot"] +** Typ: Zeichenkette +** Werte: beliebige Zeichenkette +** Standardwert: `+"nickserv"+` + +* [[option_irc.look.notice_as_pv]] *irc.look.notice_as_pv* +** Beschreibung: pass:none[zeigt Notizen als private Nachricht an (wird die "auto" Einstellung verwendet dann wird ein privater Buffer genutzt, falls vorhanden)] +** Typ: integer +** Werte: auto, never, always +** Standardwert: `+auto+` + +* [[option_irc.look.notice_welcome_redirect]] *irc.look.notice_welcome_redirect* +** Beschreibung: pass:none[automatische Weiterleitung von Willkommen Nachrichten in den entsprechenden Kanal-Buffer. Solche Nachrichten haben als Empfänger den entsprechenden Nick. Der Kanalname wird aber der Nachricht vorangestellt. Eine solche ENTRYMSG Nachricht sieht auf dem Atheme IRC Server wie folgt aus: "[#channel\] Herzlich Willkommen in diesem Kanal ..."] +** Typ: boolesch +** Werte: on, off +** Standardwert: `+on+` + +* [[option_irc.look.notice_welcome_tags]] *irc.look.notice_welcome_tags* +** Beschreibung: pass:none[durch Kommata getrennte Liste von Schlagwörtern für Willkommen-Nachrichten die in einen Kanal umgeleitet werden. Zum Beispiel: "notify_private"] +** Typ: Zeichenkette +** Werte: beliebige Zeichenkette +** Standardwert: `+""+` + +* [[option_irc.look.notify_tags_ison]] *irc.look.notify_tags_ison* +** Beschreibung: pass:none[durch Kommata getrennte Liste von Schlagwörtern die in notify-Nachrichten genutzt werden sollen, falls ein Nick einen Server betritt oder verlässt (Rückgabewert des Befehls ison oder monitor), zum Beispiel: "notify_message", "notify_private" oder "notify_highlight"] +** Typ: Zeichenkette +** Werte: beliebige Zeichenkette +** Standardwert: `+"notify_message"+` + +* [[option_irc.look.notify_tags_whois]] *irc.look.notify_tags_whois* +** Beschreibung: pass:none[durch Kommata getrennte Liste von Schlagwörtern die in notify-Nachrichten genutzt werden sollen, falls sich der away-Status eines Nick ändert (Rückgabe durch Befehl whois), zum Beispiel: "notify_message", "notify_private" oder "notify_highlight"] +** Typ: Zeichenkette +** Werte: beliebige Zeichenkette +** Standardwert: `+"notify_message"+` + +* [[option_irc.look.part_closes_buffer]] *irc.look.part_closes_buffer* +** Beschreibung: pass:none[schließt den Buffer wenn "/part" im Kanal ausgeführt wird] +** Typ: boolesch +** Werte: on, off +** Standardwert: `+off+` + +* [[option_irc.look.pv_buffer]] *irc.look.pv_buffer* +** Beschreibung: pass:none[private Buffer zusammenfügen] +** Typ: integer +** Werte: independent, merge_by_server, merge_all +** Standardwert: `+independent+` + +* [[option_irc.look.pv_tags]] *irc.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_irc.look.raw_messages]] *irc.look.raw_messages* +** Beschreibung: pass:none[Anzahl der IRC-RAW-Nachrichten die im Speicher gehalten werden sollen falls der RAW-Daten-Buffer geschlossen ist (die Nachrichten werden umgehend angezeigt sobald der RAW-Daten-Buffer geöffnet wird)] +** Typ: integer +** Werte: 0 .. 65535 +** Standardwert: `+256+` + +* [[option_irc.look.server_buffer]] *irc.look.server_buffer* +** Beschreibung: pass:none[fügt Serverbuffer zusammen; diese Option hat keine Auswirkung wenn ein Layout genutzt wird und mit dieser Option im Widerspruch steht (siehe /help layout)] +** Typ: integer +** Werte: merge_with_core, merge_without_core, independent +** Standardwert: `+merge_with_core+` + +* [[option_irc.look.smart_filter]] *irc.look.smart_filter* +** Beschreibung: pass:none[filtert join/part/quit/nick Nachrichten für einen Nick der einige Minuten im Kanal inaktiv gewesen ist (dazu muss ein Filter mit dem Schlagwort "irc_smart_filter" erstellt werden, siehe /help filter)] +** Typ: boolesch +** Werte: on, off +** Standardwert: `+on+` + +* [[option_irc.look.smart_filter_account]] *irc.look.smart_filter_account* +** Beschreibung: pass:none[aktiviert einen intelligenten Filter für "account" Nachrichten] +** Typ: boolesch +** Werte: on, off +** Standardwert: `+on+` + +* [[option_irc.look.smart_filter_chghost]] *irc.look.smart_filter_chghost* +** Beschreibung: pass:none[aktiviert einen intelligenten Filter für "chghost" Nachrichten] +** Typ: boolesch +** Werte: on, off +** Standardwert: `+on+` + +* [[option_irc.look.smart_filter_delay]] *irc.look.smart_filter_delay* +** Beschreibung: pass:none[Verzögerung, in Minuten, für eine Filterung von join/part/quit Mitteilungen. Falls ein Nick in der angegebenen Zeit keine Nachricht schreibt, wird seinejoin/part/quit Mitteilung gefiltert] +** Typ: integer +** Werte: 1 .. 10080 +** Standardwert: `+5+` + +* [[option_irc.look.smart_filter_join]] *irc.look.smart_filter_join* +** Beschreibung: pass:none[aktiviert einen intelligenten Filter für "join" Nachrichten] +** Typ: boolesch +** Werte: on, off +** Standardwert: `+on+` + +* [[option_irc.look.smart_filter_join_unmask]] *irc.look.smart_filter_join_unmask* +** Beschreibung: pass:none[Verzögerung (in Minuten) um Join Mitteilungen rückwirkend anzuzeigen, falls diese mittels "irc_smart_filter" unterdrückt wurden. Sollte ein Nick während der vorgegeben Zeit etwas im Kanal schreiben, dann wird seine Join Mitteilung angezeigt. Dies bezieht sich auf Nachrichten, eine Notice, Änderungen am Topic oder falls der Nick gewechselt wird (0 = deaktiviert: join-Mitteilungen bleiben verborgen)] +** Typ: integer +** Werte: 0 .. 10080 +** Standardwert: `+30+` + +* [[option_irc.look.smart_filter_mode]] *irc.look.smart_filter_mode* +** Beschreibung: pass:none[aktiviert einen intelligenten Filter für "mode" Nachrichten: "*" filtert alle Modi-Nachrichten, "+" um alle Modi im Server-Präfix zu filtern (zum Beispiel "ovh"), "xyz" um die Modi x/y/z zu filtern, "-xyz" um alle Modi, außer x/y/z, zu filtern; Beispiele: "ovh": filtert die Modi o/v/h, "-bkl": filtert alle Modi, ausgenommen b/k/l] +** Typ: Zeichenkette +** Werte: beliebige Zeichenkette +** Standardwert: `+"+"+` + +* [[option_irc.look.smart_filter_nick]] *irc.look.smart_filter_nick* +** Beschreibung: pass:none[aktiviert einen intelligenten Filter für "nick" Nachrichten (Änderungen des Nick)] +** Typ: boolesch +** Werte: on, off +** Standardwert: `+on+` + +* [[option_irc.look.smart_filter_quit]] *irc.look.smart_filter_quit* +** Beschreibung: pass:none[aktiviert einen intelligenten Filter für "part" und "quit" Nachrichten] +** Typ: boolesch +** Werte: on, off +** Standardwert: `+on+` + +* [[option_irc.look.smart_filter_setname]] *irc.look.smart_filter_setname* +** Beschreibung: pass:none[aktiviert einen intelligenten Filter für "setname" Nachrichten] +** Typ: boolesch +** Werte: on, off +** Standardwert: `+on+` + +* [[option_irc.look.temporary_servers]] *irc.look.temporary_servers* +** Beschreibung: pass:none[aktiviert die Erstellung von temporären Servern mit dem Befehl /connect] +** Typ: boolesch +** Werte: on, off +** Standardwert: `+off+` + +* [[option_irc.look.topic_strip_colors]] *irc.look.topic_strip_colors* +** Beschreibung: pass:none[Farben werden im Kanalthema entfernt (wird nur genutzt wenn der Buffer-Titel angezeigt wird)] +** Typ: boolesch +** Werte: on, off +** Standardwert: `+off+` + +* [[option_irc.look.typing_status_nicks]] *irc.look.typing_status_nicks* +** Beschreibung: pass:none[Nicks in der Bar-Item "typing" anzeigen, die in dem Kanal tippen (Option typing.look.enabled_nicks muss aktiviert sein und die Fähigkeit "message-tags" muss auf dem Server aktiviert sein)] +** Typ: boolesch +** Werte: on, off +** Standardwert: `+off+` + +* [[option_irc.look.typing_status_self]] *irc.look.typing_status_self* +** Beschreibung: pass:none[sendet den eigenen Tippstatus an Kanäle, damit andere Benutzer sehen, wenn Sie eine Nachricht schreiben (Option typing.look.enabled_self muss aktiviert sein und die Fähigkeit "message-tags" muss auf dem Server aktiviert sein)] +** Typ: boolesch +** Werte: on, off +** Standardwert: `+off+` + +* [[option_irc.network.autoreconnect_delay_growing]] *irc.network.autoreconnect_delay_growing* +** Beschreibung: pass:none[Multiplikator für die Verzögerung bei der automatischen Wiederverbindung zum Server (1 = immer die selbe Verzögerung nutzen, 2 = Verzögerung*2 für jeden weiteren Versuch, usw.)] +** Typ: integer +** Werte: 1 .. 100 +** Standardwert: `+2+` + +* [[option_irc.network.autoreconnect_delay_max]] *irc.network.autoreconnect_delay_max* +** Beschreibung: pass:none[maximale Verzögerung bei der automatischen Wiederverbindung zum Server (in Sekunden, 0 = keine Begrenzung)] +** Typ: integer +** Werte: 0 .. 604800 +** Standardwert: `+600+` + +* [[option_irc.network.ban_mask_default]] *irc.network.ban_mask_default* +** Beschreibung: pass:none[Vorgabewert für Befehle /ban, /unban und /kickban; Variablen $nick, $user, $ident und $host werden durch den jeweiligen Wert ersetzt (extrahiert aus "nick!user@host"); $ident ist identisch mit $user, sofern $user nicht mit "~" beginnt. Andernfalls wird daraus "*"; diese Vorgabemaske wird nur angewendet, sofern WeeChat den Host des Nicks ermitteln kann] +** Typ: Zeichenkette +** Werte: beliebige Zeichenkette +** Standardwert: `+"*!$ident@$host"+` + +* [[option_irc.network.colors_receive]] *irc.network.colors_receive* +** Beschreibung: pass:none[wenn deaktiviert, werden Farben-Codes von eingehenden Nachrichten ignoriert] +** Typ: boolesch +** Werte: on, off +** Standardwert: `+on+` + +* [[option_irc.network.colors_send]] *irc.network.colors_send* +** Beschreibung: pass:none[erlaubt Benutzern, spezielle Farbcodes zu versenden (ctrl-c + Code und optional Farbe: b=fett, cxx=Farbe, cxx,yy=Schrift-/Hintergrundfarbe, i=kursiv, o=schaltet Farbe/Attribute aus, r=invertiert, u=unterstrichen)] +** Typ: boolesch +** Werte: on, off +** Standardwert: `+on+` + +* [[option_irc.network.lag_check]] *irc.network.lag_check* +** Beschreibung: pass:none[Intervall zwischen zwei Überprüfungen auf Verfügbarkeit des Servers (in Sekunden, 0 = keine Überprüfung)] +** Typ: integer +** Werte: 0 .. 604800 +** Standardwert: `+60+` + +* [[option_irc.network.lag_max]] *irc.network.lag_max* +** Beschreibung: pass:none[maximale Verzögerung (in Sekunden): sollte die maximale Verzögerung erreicht werden geht WeeChat davon aus, dass die Antwort (pong) des Servers nicht mehr empfangen wird. Die Verzögerung wird dann nicht weiter gezählt (0 = es wird ewig gewartet)] +** Typ: integer +** Werte: 0 .. 604800 +** Standardwert: `+1800+` + +* [[option_irc.network.lag_min_show]] *irc.network.lag_min_show* +** Beschreibung: pass:none[geringste Verzögerungszeit (Lag) die angezeigt werden soll (in Millisekunden)] +** Typ: integer +** Werte: 0 .. 86400000 +** Standardwert: `+500+` + +* [[option_irc.network.lag_reconnect]] *irc.network.lag_reconnect* +** Beschreibung: pass:none[erneut mit Server verbinden, falls die maximal Verzögerung (Lag) erreicht wurde (Zeit in Sekunden, 0 = keine automatische Neuverbindung, zum Server); dieser Wert muss geringer oder gleich dem Wert in irc.network.lag_max sein] +** Typ: integer +** Werte: 0 .. 604800 +** Standardwert: `+300+` + +* [[option_irc.network.lag_refresh_interval]] *irc.network.lag_refresh_interval* +** Beschreibung: pass:none[Intervall zwischen zwei Aktualisierungen für die Anzeige der Verzögerung (Lag-Item), wenn die Verzögerungszeit sich erhöht (in Sekunden)] +** Typ: integer +** Werte: 1 .. 3600 +** Standardwert: `+1+` + +* [[option_irc.network.notify_check_ison]] *irc.network.notify_check_ison* +** Beschreibung: pass:none[Intervall zwischen zwei notify Überprüfungen mit dem IRC Befehl "ison" (in Minuten)] +** Typ: integer +** Werte: 1 .. 10080 +** Standardwert: `+1+` + +* [[option_irc.network.notify_check_whois]] *irc.network.notify_check_whois* +** Beschreibung: pass:none[Intervall zwischen zwei notify Überprüfungen mit dem IRC Befehl "whois" (in Minuten)] +** Typ: integer +** Werte: 1 .. 10080 +** Standardwert: `+5+` + +* [[option_irc.network.sasl_fail_unavailable]] *irc.network.sasl_fail_unavailable* +** Beschreibung: pass:none[erzeugt einen Fehler bei der SASL Authentifizierung, falls SASL angefragt aber vom Server nicht zur Verfügung gestellt wird; falls diese Option aktiviert ist hat sie nur dann Einfluss sofern bei der Option "sasl_fail" die Einstellung "reconnect" oder "disconnect" genutzt wird] +** Typ: boolesch +** Werte: on, off +** Standardwert: `+on+` + +* [[option_irc.network.send_unknown_commands]] *irc.network.send_unknown_commands* +** Beschreibung: pass:none[sendet unbekannte Befehle an den Server] +** Typ: boolesch +** Werte: on, off +** Standardwert: `+off+` + +* [[option_irc.network.whois_double_nick]] *irc.network.whois_double_nick* +** Beschreibung: pass:none[dupliziert den Nick, für den /whois Befehl (falls nur ein Nick angegeben wird), um die Idle-Zeit zu erhalten. Zum Beispiel: "/whois nick" wird als "whois nick nick" verschickt] +** Typ: boolesch +** Werte: on, off +** Standardwert: `+off+` + +* [[option_irc.server_default.addresses]] *irc.server_default.addresses* +** Beschreibung: pass:none[Liste von Hostname/Port oder IP/Port für Server (durch Komma getrennt) (Hinweis: Inhalt wird evaluiert, siehe /help eval; Serveroptionen sind mittels ${irc_server.xxx} evaluiert und ${server} wird durch den eigentlichen Servernamen ersetzt)] +** Typ: Zeichenkette +** Werte: beliebige Zeichenkette +** Standardwert: `+""+` + +* [[option_irc.server_default.anti_flood_prio_high]] *irc.server_default.anti_flood_prio_high* +** Beschreibung: pass:none[Anti-Flood für dringliche Inhalte: Zeit in Sekunden zwischen zwei Benutzernachrichten oder Befehlen die zum IRC Server versendet wurden (0 = Anti-Flood deaktivieren)] +** Typ: integer +** Werte: 0 .. 60 +** Standardwert: `+2+` + +* [[option_irc.server_default.anti_flood_prio_low]] *irc.server_default.anti_flood_prio_low* +** Beschreibung: pass:none[Anti-Flood für weniger dringliche Inhalte: Zeit in Sekunden zwischen zwei Benutzernachrichten die zum IRC Server versendet wurden. Beispiel: automatische CTCP Antworten (0 = Anti-Flood deaktivieren)] +** Typ: integer +** Werte: 0 .. 60 +** Standardwert: `+2+` + +* [[option_irc.server_default.autoconnect]] *irc.server_default.autoconnect* +** Beschreibung: pass:none[Beim Programmstart von WeeChat automatisch mit dem Server verbinden] +** Typ: boolesch +** Werte: on, off +** Standardwert: `+off+` + +* [[option_irc.server_default.autojoin]] *irc.server_default.autojoin* +** Beschreibung: pass:none[durch Kommata getrennte Liste von Kanälen, die beim Verbinden mit dem Server automatisch betreten werden (nachdem die Einstellungen command + delay ausgeführt wurden). Kanäle, die einen Schlüssel benötigen, müssen in der Auflistung als erstes aufgeführt werden. Die Schlüssel, zu den jeweiligen Kanälen, werden nach den Kanälen aufgeführt (eine Trennung von Kanälen und Schlüssel erfolgt mittels eines Leerzeichens. Schlüssel werden hintereinander auch durch Kommata voneinander getrennt) (Beispiel: "#channel1,#channel2,#channnel3 key1,key2", #channel1 und #channel2 sind durch jeweils einen Schlüssel, key1 und key2, geschützt) (Hinweis: Inhalt wird evaluiert, siehe /help eval; Serveroptionen sind mittels ${irc_server.xxx} evaluiert und ${server} wird durch den eigentlichen Servernamen ersetzt)] +** Typ: Zeichenkette +** Werte: beliebige Zeichenkette +** Standardwert: `+""+` + +* [[option_irc.server_default.autojoin_dynamic]] *irc.server_default.autojoin_dynamic* +** Beschreibung: pass:none[Setze automatisch die "autojoin"-Option entsprechend den Kanälen, die du manuell beitrittst bzw. verlässt, mit den Befehlen /join und /part] +** Typ: boolesch +** Werte: on, off +** Standardwert: `+off+` + +* [[option_irc.server_default.autoreconnect]] *irc.server_default.autoreconnect* +** Beschreibung: pass:none[Nach einer Trennung vom Server die Verbindung automatisch wiederherstellen] +** Typ: boolesch +** Werte: on, off +** Standardwert: `+on+` + +* [[option_irc.server_default.autoreconnect_delay]] *irc.server_default.autoreconnect_delay* +** Beschreibung: pass:none[Zeit (in Sekunden) die gewartet werden soll bevor ein neuer Verbindungsaufbau durchgeführt werden soll] +** Typ: integer +** Werte: 1 .. 65535 +** Standardwert: `+10+` + +* [[option_irc.server_default.autorejoin]] *irc.server_default.autorejoin* +** Beschreibung: pass:none[Kanäle automatisch betreten, falls man rausgeworfen wurde. Es kann eine lokale Buffer Variable für einen Kanal erstellt werden, diese lokale Variable wird vorrangig behandelt (Name der lokalen Variable: "autorejoin", Wert: "on" oder "off")] +** Typ: boolesch +** Werte: on, off +** Standardwert: `+off+` + +* [[option_irc.server_default.autorejoin_delay]] *irc.server_default.autorejoin_delay* +** Beschreibung: pass:none[Wartezeit, in Sekunden, die verstreichen soll bevor man den Kanal automatisch erneut betritt (nachdem man rausgeworfen wurde)] +** Typ: integer +** Werte: 0 .. 86400 +** Standardwert: `+30+` + +* [[option_irc.server_default.away_check]] *irc.server_default.away_check* +** Beschreibung: pass:none[überprüft die Abwesenheit (/away) der Nutzer, in dem angegebenen Intervall (in Minuten, 0 = nicht überprüfen)] +** Typ: integer +** Werte: 0 .. 10080 +** Standardwert: `+0+` + +* [[option_irc.server_default.away_check_max_nicks]] *irc.server_default.away_check_max_nicks* +** Beschreibung: pass:none[Die Abwesenheit von Nutzern in Kanälen wird nicht überprüft wenn die Anzahl der Nutzer höher ist, als der angegebene Wert (0 = unbegrenzte Anzahl an Nutzern im Kanal)] +** Typ: integer +** Werte: 0 .. 1000000 +** Standardwert: `+25+` + +* [[option_irc.server_default.capabilities]] *irc.server_default.capabilities* +** Beschreibung: pass:none[durch Kommata getrennte Liste von erweiterten Client-Fähigkeiten ("client capabilities"), welche vom Server angeboten und genutzt werden sollen (siehe /help cap um eine Liste von Fähigkeiten zu erhalten die von WeeChat unterstützt werden); "*" aktiviert standardmäßig alle Funktionen (die sowohl vom Server als auch von WeeChat unterstützt werden); Platzhalter "*" ist erlaubt; eine Fähigkeit, die mit "!" beginnt, wird ignoriert (Beispiel: "*,!account-*,!extended-join")] +** Typ: Zeichenkette +** Werte: beliebige Zeichenkette +** Standardwert: `+"*"+` + +* [[option_irc.server_default.charset_message]] *irc.server_default.charset_message* +** Beschreibung: pass:none[Teil der IRC Nachricht (empfangen oder gesendet) die zum Zielzeichensatz dekodiert/kodiert werden soll; message = die komplette IRC Nachricht (Standard), channel = beginnend mit dem Kanalnamen (sofern dieser gefunden wird, ansonsten Fallback auf text), text = beginnend mit dem Nachrichtentext (dieser Wert sollte ausprobiert werden, falls es Probleme bei der Kodierung des Kanalnamens geben sollte)] +** Typ: integer +** Werte: message, channel, text +** Standardwert: `+message+` + +* [[option_irc.server_default.command]] *irc.server_default.command* +** Beschreibung: pass:none[Befehl(e) welche nach einem Verbindungsaufbau zum Server und vor dem automatischem Betreten von Kanälen ausgeführt werden sollen (mehrere Befehle können durch ";" getrennt werden, will man ein Semikolon nutzen, schreibt man "\;", die Platzhalter $nick,$channel und $server werden durch den entsprechenden Wert ersetzt) (Hinweis: Inhalt wird evaluiert, siehe /help eval; Serveroptionen sind mittels ${irc_server.xxx} evaluiert und ${server} wird durch den eigentlichen Servernamen ersetzt)] +** Typ: Zeichenkette +** Werte: beliebige Zeichenkette +** Standardwert: `+""+` + +* [[option_irc.server_default.command_delay]] *irc.server_default.command_delay* +** Beschreibung: pass:none[Wartezeit (in Sekunden) nach Ausführung des Befehls und bevor Kanäle automatisch betreten werden (Beispiel: es wird eine gewisse Zeit gewartet, um eine Authentifizierung zu ermöglichen)] +** Typ: integer +** Werte: 0 .. 3600 +** Standardwert: `+0+` + +* [[option_irc.server_default.connection_timeout]] *irc.server_default.connection_timeout* +** Beschreibung: pass:none[Wartezeit (in Sekunden) zwischen einer TCP Verbindung mit dem Server und des Empfanges der "message 001" Nachricht. Falls die Wartezeit verstreichen sollte bevor die "message 001" Nachricht empfangen wurde dann wird WeeChat die Verbindung zum Server trennen] +** Typ: integer +** Werte: 1 .. 3600 +** Standardwert: `+60+` + +* [[option_irc.server_default.default_chantypes]] *irc.server_default.default_chantypes* +** Beschreibung: pass:none[Kanal-Typ-Präfix, die verwendet werden sollen, wenn der Server diese nicht in Nachricht 005 sendet (Standard ist "#&")] +** Typ: Zeichenkette +** Werte: beliebige Zeichenkette +** Standardwert: `+"#&"+` + +* [[option_irc.server_default.ipv6]] *irc.server_default.ipv6* +** Beschreibung: pass:none[bei der Kommunikation mit dem Server wird das IPv6 Protokoll genutzt (sollte IPv6 nicht verfügbar sein dann wird automatisch auf IPv4 umgeschaltet); wird die Funktion deaktiviert, dann wird ausschließlich IPv4 genutzt] +** Typ: boolesch +** Werte: on, off +** Standardwert: `+on+` + +* [[option_irc.server_default.local_hostname]] *irc.server_default.local_hostname* +** Beschreibung: pass:none[benutzerdefinierter lokaler Hostname bzw. IP-Adresse für den entsprechenden Server (optional). Falls kein Eintrag vorhanden sein sollte wird der lokale Hostname verwendet] +** Typ: Zeichenkette +** Werte: beliebige Zeichenkette +** Standardwert: `+""+` + +* [[option_irc.server_default.msg_kick]] *irc.server_default.msg_kick* +** Beschreibung: pass:none[Standardmitteilung einer kick-Nachricht, für die Befehle "/kick" und "/kickban" (Hinweis: Inhalt wird evaluiert, siehe /help eval; besondere Variablen ${nick} (eigener Nick), ${target} (betroffener Nick), ${channel} und ${server}, werden durch den entsprechenden Wert ersetzt)] +** Typ: Zeichenkette +** Werte: beliebige Zeichenkette +** Standardwert: `+""+` + +* [[option_irc.server_default.msg_part]] *irc.server_default.msg_part* +** Beschreibung: pass:none[Standardmitteilung einer part-Nachricht (/part) (Hinweis: Inhalt wird evaluiert, siehe /help eval; Variablen die genutzt werden können: ${nick}, ${channel} und ${server}; "%v" wird durch die genutzte WeeChat-Version ersetzt, sofern keine Variable vom Typ ${...} verwendet wird)] +** Typ: Zeichenkette +** Werte: beliebige Zeichenkette +** Standardwert: `+"WeeChat ${info:version}"+` + +* [[option_irc.server_default.msg_quit]] *irc.server_default.msg_quit* +** Beschreibung: pass:none[Standardmitteilung einer quit-Nachricht (Trennung vom Server) (Hinweis: Inhalt wird evaluiert, siehe /help eval; Variablen die genutzt werden können: ${nick}, ${channel} und ${server}; "%v" wird durch die genutzte WeeChat-Version ersetzt, sofern keine Variable vom Typ ${...} verwendet wird)] +** Typ: Zeichenkette +** Werte: beliebige Zeichenkette +** Standardwert: `+"WeeChat ${info:version}"+` + +* [[option_irc.server_default.nicks]] *irc.server_default.nicks* +** Beschreibung: pass:none[Nicknamen, die auf dem IRC-Server benutzt werden sollen (durch Kommatagetrennt) (Hinweis: Inhalt wird evaluiert, siehe /help eval; Serveroptionen sind mittels ${irc_server.xxx} evaluiert und ${server} wird durch den eigentlichen Servernamen ersetzt)] +** Typ: Zeichenkette +** Werte: beliebige Zeichenkette +** Standardwert: `+""+` + +* [[option_irc.server_default.nicks_alternate]] *irc.server_default.nicks_alternate* +** Beschreibung: pass:none[nutzt einen alternativen Nick, sofern alle voreingestellten Nicks am Server schon genutzt werden. Dazu wird das Zeichen "_" an den Nick angehangen, sofern der Nick nicht mehr als neun Zeichen besitzt. Andernfalls werden die beiden letzten Zeichen durch eine Zahl zwischen 1 und 99 ersetzt, bis ein freier Nick auf dem Server gefunden wird] +** Typ: boolesch +** Werte: on, off +** Standardwert: `+on+` + +* [[option_irc.server_default.notify]] *irc.server_default.notify* +** Beschreibung: pass:none[Liste mit Benachrichtigung für Server (diese Einstellung sollte nicht direkt verändert werden. Dazu sollte der Befehl /notify genutzt werden)] +** Typ: Zeichenkette +** Werte: beliebige Zeichenkette +** Standardwert: `+""+` + +* [[option_irc.server_default.password]] *irc.server_default.password* +** Beschreibung: pass:none[Passwort welches für den Server genutzt werden soll (Hinweis: Inhalt wird evaluiert, siehe /help eval; Serveroptionen sind mittels ${irc_server.xxx} evaluiert und ${server} wird durch den eigentlichen Servernamen ersetzt)] +** Typ: Zeichenkette +** Werte: beliebige Zeichenkette +** Standardwert: `+""+` + +* [[option_irc.server_default.proxy]] *irc.server_default.proxy* +** Beschreibung: pass:none[Name des Proxy für diesen Server (optional, Proxy muss mit dem Befehl /proxy angelegt werden)] +** Typ: Zeichenkette +** Werte: beliebige Zeichenkette +** Standardwert: `+""+` + +* [[option_irc.server_default.realname]] *irc.server_default.realname* +** Beschreibung: pass:none[Realname welcher für den Server genutzt werden soll (Hinweis: Inhalt wird evaluiert, siehe /help eval; Serveroptionen sind mittels ${irc_server.xxx} evaluiert und ${server} wird durch den eigentlichen Servernamen ersetzt)] +** Typ: Zeichenkette +** Werte: beliebige Zeichenkette +** Standardwert: `+""+` + +* [[option_irc.server_default.sasl_fail]] *irc.server_default.sasl_fail* +** Beschreibung: pass:none[auszuführende Aktion falls die SASL Authentifizierung fehlschlägt: "continue" ignoriert das Problem welches bei der Authentifizierung aufgetreten ist, "reconnect" versucht erneut eine Verbindung herzustellen, "disconnect" trennt die Verbindung zum Server (siehe Option irc.network.sasl_fail_unavailable)] +** Typ: integer +** Werte: continue, reconnect, disconnect +** Standardwert: `+reconnect+` + +* [[option_irc.server_default.sasl_key]] *irc.server_default.sasl_key* +** Beschreibung: pass:none[Datei mit privatem ECC-Schlüssel für den Mechanismus "ecdsa-nist256p-challenge" (Pfad ist evaluiert, siehe Funktion string_eval_path_home in der Plugin-API-Referenz)] +** Typ: Zeichenkette +** Werte: beliebige Zeichenkette +** Standardwert: `+""+` + +* [[option_irc.server_default.sasl_mechanism]] *irc.server_default.sasl_mechanism* +** Beschreibung: pass:none[Verfahren welches bei einer SASL Authentifizierung angewandt werden soll: "plain" Passwort wird im Klartext gesendet, "scram-sha-1" für SCRAM-Authentifizierung mit SHA-1-Digest-Algorithmus, "scram-sha-256" für SCRAM-Authenrifizierung mit SHA-256 Digest-Algorithmus, "scram-sha-512" für SCRAM-Authentifizierung mit SHA-512 Digest-Algorithmus, "ecdsa-nist256p-challenge" für öffentlich/private Schlüsselmethode, "external" ein SSL Zertifikat welches auf Client Seite vorliegt wird verwendet] +** Typ: integer +** Werte: plain, scram-sha-1, scram-sha-256, scram-sha-512, ecdsa-nist256p-challenge, external +** Standardwert: `+plain+` + +* [[option_irc.server_default.sasl_password]] *irc.server_default.sasl_password* +** Beschreibung: pass:none[Passwort für SASL Authentifikation; diese Option findet keine Anwendung falls der Mechanismus "ecdsa-nist256p-challenge" und "external" verwendet wird (Hinweis: Inhalt wird evaluiert, siehe /help eval; Serveroptionen sind mittels ${irc_server.xxx} evaluiert und ${server} wird durch den eigentlichen Servernamen ersetzt)] +** Typ: Zeichenkette +** Werte: beliebige Zeichenkette +** Standardwert: `+""+` + +* [[option_irc.server_default.sasl_timeout]] *irc.server_default.sasl_timeout* +** Beschreibung: pass:none[Zeitüberschreitung bis zum Abbruch der SASL Authentifizierung (in Sekunden)] +** Typ: integer +** Werte: 1 .. 3600 +** Standardwert: `+15+` + +* [[option_irc.server_default.sasl_username]] *irc.server_default.sasl_username* +** Beschreibung: pass:none[Username für SASL Authentifikation; diese Option wird nicht für den Mechanismus "external" verwendet (Hinweis: Inhalt wird evaluiert, siehe /help eval; Serveroptionen sind mittels ${irc_server.xxx} evaluiert und ${server} wird durch den eigentlichen Servernamen ersetzt)] +** Typ: Zeichenkette +** Werte: beliebige Zeichenkette +** Standardwert: `+""+` + +* [[option_irc.server_default.split_msg_max_length]] *irc.server_default.split_msg_max_length* +** Beschreibung: pass:none[ausgehende IRC Nachrichten werden bei der angegebene Anzahl an Zeichen getrennt; der Standardwert beträgt 512, dabei handelt es sich um einen empfohlenen Wert; ein Wert von 0 deaktiviert eine Trennung von Nachrichten (dies wird nicht empfohlen, außer Du weißt was Du tust); erlaubte Werte sind 0 oder jeder Wert zwischen 128 und 4096; diese Option sollte nur bei nicht-Standard IRC Servern verändert werden, zum Beispiel ein bitlbee Gateway] +** Typ: integer +** Werte: 0 .. 4096 +** Standardwert: `+512+` + +* [[option_irc.server_default.ssl]] *irc.server_default.ssl* +** Beschreibung: pass:none[Server über SSL ansprechen] +** Typ: boolesch +** Werte: on, off +** Standardwert: `+off+` + +* [[option_irc.server_default.ssl_cert]] *irc.server_default.ssl_cert* +** Beschreibung: pass:none[SSL-Zertifikatdatei zur automatischen Identifizierung Ihres Nick (Pfad ist evaluiert, siehe Funktion string_eval_path_home in der Plugin-API-Referenz)] +** Typ: Zeichenkette +** Werte: beliebige Zeichenkette +** Standardwert: `+""+` + +* [[option_irc.server_default.ssl_dhkey_size]] *irc.server_default.ssl_dhkey_size* +** Beschreibung: pass:none[Größe des Schlüssels der während des Diffie-Hellman-Schlüsselaustausches genutzt wurde] +** Typ: integer +** Werte: 0 .. 2147483647 +** Standardwert: `+2048+` + +* [[option_irc.server_default.ssl_fingerprint]] *irc.server_default.ssl_fingerprint* +** Beschreibung: pass:none[Fingerprint des Zertifikates welches als vertrauenswürdig eingestuft und für diesen Server akzeptiert wird; es sind nur hexadezimale Zeichen erlaubt (0-9, a-f): bei SHA-512 ist das Zertifikat 128 Zeichen lang, bei SHA-256 sind es 64 Zeichen, bei SHA-1 sind es 40 Zeichen (nicht empfohlen, da unsicher); mehrere Fingerprints können durch Kommata voneinander getrennt werden; wird diese Option genutzt, findet KEINE weitere Überprüfung der Zertifikate statt (Option "ssl_verify") (Hinweis: Inhalt wird evaluiert, siehe /help eval; Serveroptionen sind mittels ${irc_server.xxx} evaluiert und ${server} wird durch den eigentlichen Servernamen ersetzt)] +** Typ: Zeichenkette +** Werte: beliebige Zeichenkette +** Standardwert: `+""+` + +* [[option_irc.server_default.ssl_password]] *irc.server_default.ssl_password* +** Beschreibung: pass:none[Passwort für SSL Zertifikat des privaten Schlüssels, nur unter gnutls Version >= 3.1.0 (Hinweis: Inhalt wird evaluiert, siehe /help eval; Serveroptionen sind mittels ${irc_server.xxx} evaluiert und ${server} wird durch den eigentlichen Servernamen ersetzt)] +** Typ: Zeichenkette +** Werte: beliebige Zeichenkette +** Standardwert: `+""+` + +* [[option_irc.server_default.ssl_priorities]] *irc.server_default.ssl_priorities* +** Beschreibung: pass:none[Zeichenkette mit Prioritäten für gnutls (für die korrekte Syntax siehe gnutls Dokumentation unter Funktion gnutls_priority_init. Gebräuchliche Zeichenketten sind: "PERFORMANCE", "NORMAL", "SECURE128", "SECURE256", "EXPORT", "NONE")] +** Typ: Zeichenkette +** Werte: beliebige Zeichenkette +** Standardwert: `+"NORMAL:-VERS-SSL3.0"+` + +* [[option_irc.server_default.ssl_verify]] *irc.server_default.ssl_verify* +** Beschreibung: pass:none[überprüft ob die SSL-Verbindung vertrauenswürdig ist] +** Typ: boolesch +** Werte: on, off +** Standardwert: `+on+` + +* [[option_irc.server_default.usermode]] *irc.server_default.usermode* +** Beschreibung: pass:none[Usermode(s) der direkt nach der Verbindung zum Server gesetzt werden soll. Dies geschieht bevor Befehle für den Server ausgeführt und bevor Kanäle automatisch betreten werden; Beispiele: "+R" (um den Modus "R" zu setzen), "+R-i" (setzt den Modus "R" und entfernt den Modus "i"); siehe /help mode um den Befehlssatz angezeigt zu bekommen (Hinweis: Inhalt wird evaluiert, siehe /help eval; Serveroptionen sind mittels ${irc_server.xxx} evaluiert und ${server} wird durch den eigentlichen Servernamen ersetzt)] +** Typ: Zeichenkette +** Werte: beliebige Zeichenkette +** Standardwert: `+""+` + +* [[option_irc.server_default.username]] *irc.server_default.username* +** Beschreibung: pass:none[Username welcher für den Server genutzt werden soll (Hinweis: Inhalt wird evaluiert, siehe /help eval; Serveroptionen sind mittels ${irc_server.xxx} evaluiert und ${server} wird durch den eigentlichen Servernamen ersetzt)] +** Typ: Zeichenkette +** Werte: beliebige Zeichenkette +** 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] +** 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_relay.color.status_active]] *relay.color.status_active* +** Beschreibung: pass:none[Textfarbe für Status: "Verbindung hergestellt"] +** 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_relay.color.status_auth_failed]] *relay.color.status_auth_failed* +** Beschreibung: pass:none[Textfarbe für Status: "Authentifizierung gescheitert"] +** 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_relay.color.status_connecting]] *relay.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: `+white+` + +* [[option_relay.color.status_disconnected]] *relay.color.status_disconnected* +** Beschreibung: pass:none[Textfarbe für Status: "Verbindung getrennt"] +** 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_relay.color.status_waiting_auth]] *relay.color.status_waiting_auth* +** Beschreibung: pass:none[Textfarbe für Status: "warte auf Authentifizierung"] +** 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_relay.color.text]] *relay.color.text* +** Beschreibung: pass:none[Textfarbe in Relay-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_relay.color.text_bg]] *relay.color.text_bg* +** Beschreibung: pass:none[Hintergrundfarbe in Relay-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_relay.color.text_selected]] *relay.color.text_selected* +** Beschreibung: pass:none[Textfarbe für selektierte Zeile in Relay-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_relay.irc.backlog_max_minutes]] *relay.irc.backlog_max_minutes* +** Beschreibung: pass:none[Zeitangabe, in Minuten, wie lange die Zeilen im Verlaufsspeicher für jeden IRC Kanal gehalten werden sollen (0 = unbegrenzt, Beispiele: 1440 = einen Tag, 10080 = eine Woche, 43200 = einen Monat, 525600 = ein Jahr)] +** Typ: integer +** Werte: 0 .. 2147483647 +** Standardwert: `+0+` + +* [[option_relay.irc.backlog_max_number]] *relay.irc.backlog_max_number* +** Beschreibung: pass:none[maximale Anzahl an Zeilen im Verlaufsspeicher. Dies gilt für jeden IRC Kanal (0: keine Zeilenbegrenzung)] +** Typ: integer +** Werte: 0 .. 2147483647 +** Standardwert: `+1024+` + +* [[option_relay.irc.backlog_since_last_disconnect]] *relay.irc.backlog_since_last_disconnect* +** Beschreibung: pass:none[Verlaufsspeicher anzeigen, beginnend mit dem Client der zuletzt beendet wurde] +** Typ: boolesch +** Werte: on, off +** Standardwert: `+on+` + +* [[option_relay.irc.backlog_since_last_message]] *relay.irc.backlog_since_last_message* +** Beschreibung: pass:none[Verlaufsspeicher anzeigen, beginnend mit Ihrer zuletzt geschriebenen Nachricht] +** Typ: boolesch +** Werte: on, off +** Standardwert: `+off+` + +* [[option_relay.irc.backlog_tags]] *relay.irc.backlog_tags* +** Beschreibung: pass:none[durch Kommata getrennte Liste von Nachrichten-Tags welche im Verlaufsspeicher von IRC Kanälen angezeigt werden (unterstützte Tags: "irc_join", "irc_part", "irc_quit", "irc_nick", "irc_privmsg"), "*" = alle unterstützten Tags] +** Typ: Zeichenkette +** Werte: beliebige Zeichenkette +** Standardwert: `+"irc_privmsg"+` + +* [[option_relay.irc.backlog_time_format]] *relay.irc.backlog_time_format* +** Beschreibung: pass:none[Format für die Zeitanzeige im Verlaufsspeicher (siehe man strftime für gültige Formate) (findet keine Anwendung wenn die Serverfunktion, "server-time", durch den Client aktiviert wurde, da die Zeitanzeige als irc-Tag gesendet wird); keine Zeichenkette = deaktiviert die Zeitanzeige im Verlaufsspeicher] +** Typ: Zeichenkette +** Werte: beliebige Zeichenkette +** Standardwert: `+"[%H:%M] "+` + +* [[option_relay.look.auto_open_buffer]] *relay.look.auto_open_buffer* +** Beschreibung: pass:none[öffnet automatisch einen Relay-Buffer, falls eine Verbindung zu einem neuen Client hergestellt wird] +** Typ: boolesch +** Werte: on, off +** Standardwert: `+on+` + +* [[option_relay.look.raw_messages]] *relay.look.raw_messages* +** Beschreibung: pass:none[Anzahl der IRC-RAW-Nachrichten die im Speicher gehalten werden sollen falls der RAW-Daten-Buffer geschlossen ist (die Nachrichten werden umgehend angezeigt sobald der RAW-Daten-Buffer geöffnet wird)] +** Typ: integer +** Werte: 0 .. 65535 +** Standardwert: `+256+` + +* [[option_relay.network.allow_empty_password]] *relay.network.allow_empty_password* +** Beschreibung: pass:none[erlaubt das kein Passwort für Relay genutzt wird (sollte ausschließlich für Testzwecke oder auf einem lokalen System genutzt werden)] +** Typ: boolesch +** Werte: on, off +** Standardwert: `+off+` + +* [[option_relay.network.allowed_ips]] *relay.network.allowed_ips* +** Beschreibung: pass:none[Erweiterter regulärer POSIX Ausdruck für IPs die von relay akzeptiert werden (Groß- und Kleinschreibung wird ignoriert. Um zwischen Groß- und Kleinschreibung zu unterscheiden muss die Zeichenkette mit "(?-i)" eingeleitet werden), Beispiele: "^(123\.45\.67\.89|192\.160\..*)$"] +** Typ: Zeichenkette +** Werte: beliebige Zeichenkette +** Standardwert: `+""+` + +* [[option_relay.network.auth_timeout]] *relay.network.auth_timeout* +** Beschreibung: pass:none[Zeitüberschreitung (in Sekunden) für die Clientauthentifizierung: Die Verbindung wird geschlossen, falls der Client nach dieser Verzögerung immer noch nicht authentifiziert ist und der Clientstatus auf "Authentifizierung fehlgeschlagen" gesetzt ist (0 = ewig warten)] +** Typ: integer +** Werte: 0 .. 2147483647 +** Standardwert: `+60+` + +* [[option_relay.network.bind_address]] *relay.network.bind_address* +** Beschreibung: pass:none[Adresse für Bind (falls nicht gesetzt ist eine Verbindung zu allen Interfaces möglich. Wird die Adresse "127.0.0.1" genutzt kann nur eine Verbindung mit dem lokalen Rechner hergestellt werden)] +** Typ: Zeichenkette +** Werte: beliebige Zeichenkette +** Standardwert: `+""+` + +* [[option_relay.network.clients_purge_delay]] *relay.network.clients_purge_delay* +** Beschreibung: pass:none[Wartezeit bis nicht verbundene Clients gelöscht werden (in Minuten, 0 = lösche Clients unmittelbar, -1 = niemals löschen)] +** Typ: integer +** Werte: -1 .. 43200 +** Standardwert: `+0+` + +* [[option_relay.network.compression]] *relay.network.compression* +** Beschreibung: pass:none[Komprimierung von Nachrichten, die mittels "weechat" Protokoll an Clients gesendet werden: 0 = Komprimierung deaktivieren, 1 = geringe Komprimierung / schnell ... 100 = beste Komprimierung / langsam; dieser Wert ist eine Prozentangabe, welcher für zlib nach 1-9 und für zstd nach 1-19 umgewandelt wird; der Standardwert wird empfohlen, denn er bietet einen guten Kompromiss zwischen Kompression und Geschwindigkeit] +** Typ: integer +** Werte: 0 .. 100 +** Standardwert: `+20+` + +* [[option_relay.network.ipv6]] *relay.network.ipv6* +** Beschreibung: pass:none[lauscht standardmäßig am IPv6 Socket (zusätzlich zu IPv4, welches als Standardprotokoll genutzt wird); mittels des Protokollnamens kann das IPv4 und IPv6 Protokoll, einzeln oder gemeinsam, erzwungen werden (siehe /help relay)] +** Typ: boolesch +** Werte: on, off +** Standardwert: `+on+` + +* [[option_relay.network.max_clients]] *relay.network.max_clients* +** Beschreibung: pass:none[maximale Anzahl an Clients die mit einem Port verbunden sein dürfen (0 = keine Begrenzung)] +** Typ: integer +** Werte: 0 .. 2147483647 +** Standardwert: `+5+` + +* [[option_relay.network.nonce_size]] *relay.network.nonce_size* +** Beschreibung: pass:none[Größe der Nonce (in Bytes), die generiert wird, wenn ein Client eine Verbindung herstellt; Der Client muss diese Nonce verwenden, die mit der Client-Nonce und dem Kennwort verknüpft ist, wenn das Kennwort im Befehl "init" des Weechat-Protokolls gehasht wird] +** Typ: integer +** Werte: 8 .. 128 +** Standardwert: `+16+` + +* [[option_relay.network.password]] *relay.network.password* +** Beschreibung: pass:none[Passwort wird von Clients benötigt um Zugriff auf dieses Relay zu erhalten (kein Eintrag bedeutet, dass kein Passwort benötigt wird, siehe Option relay.network.allow_empty_password) (Hinweis: Inhalt wird evaluiert, siehe /help eval)] +** Typ: Zeichenkette +** Werte: beliebige Zeichenkette +** Standardwert: `+""+` + +* [[option_relay.network.password_hash_algo]] *relay.network.password_hash_algo* +** Beschreibung: pass:none[durch Kommata getrennte Liste der Hash-Algorithmen, die für die Kennwortauthentifizierung im Weechat-Protokoll verwendet werden, unter diesen Werten: "plain" (Kennwort im Klartext, nicht gehasht), "sha256", "sha512", "pbkdf2 + sha256", "pbkdf2 + sha512" ), "*" bedeutet alle Algorithmen, ein Name, der mit "!" beginnt ist ein negativer Wert, um die Verwendung eines Algorithmus zu vermeiden. Ein Platzhalter "*" im Namen ist zulässig (Beispiele: "*", "pbkdf2 *", "*,! plain")] +** Typ: Zeichenkette +** Werte: beliebige Zeichenkette +** Standardwert: `+"*"+` + +* [[option_relay.network.password_hash_iterations]] *relay.network.password_hash_iterations* +** Beschreibung: pass:none[Anzahl der Iterationen, die im Weechat-Protokoll an den Client gesendet werden, wenn ein Hash-Passwort mit dem Algorithmus PBKDF2 zur Authentifizierung verwendet wird; Mehr Iterationen sind aus Sicherheitsgründen besser, aber langsamer zu berechnen. Diese Zahl sollte nicht zu hoch sein, wenn Ihre CPU langsam ist] +** Typ: integer +** Werte: 1 .. 1000000 +** Standardwert: `+100000+` + +* [[option_relay.network.ssl_cert_key]] *relay.network.ssl_cert_key* +** Beschreibung: pass:none[Datei mit SSL-Zertifikat und privatem Schlüssel (zum Bedienen von Clients mit SSL) (Pfad ist evaluiert, siehe Funktion string_eval_path_home in der Plugin-API-Referenz)] +** Typ: Zeichenkette +** Werte: beliebige Zeichenkette +** Standardwert: `+"${weechat_config_dir}/ssl/relay.pem"+` + +* [[option_relay.network.ssl_priorities]] *relay.network.ssl_priorities* +** Beschreibung: pass:none[Zeichenkette mit Prioritäten für gnutls (für die korrekte Syntax siehe gnutls Dokumentation unter Funktion gnutls_priority_init. Gebräuchliche Zeichenketten sind: "PERFORMANCE", "NORMAL", "SECURE128", "SECURE256", "EXPORT", "NONE")] +** Typ: Zeichenkette +** Werte: beliebige Zeichenkette +** Standardwert: `+"NORMAL:-VERS-SSL3.0"+` + +* [[option_relay.network.totp_secret]] *relay.network.totp_secret* +** Beschreibung: pass:none[geheime Zeichenkette für die Erstellung des Time-based One-Time Passwort (TOTP), base32 enkodiert (ausschließlich Buchstaben und Zahlen zwischen 2 und 7); dient im WeeChat-Protokoll zur Zwei-Faktor-Authentifizierung, ergänzend zum eigentlichen Passwort (eine nicht gesetzte Option bedeutet, das TOTP nicht benötigt wird) (Hinweis: Inhalt wird evaluiert, siehe /help eval)] +** Typ: Zeichenkette +** Werte: beliebige Zeichenkette +** Standardwert: `+""+` + +* [[option_relay.network.totp_window]] *relay.network.totp_window* +** Beschreibung: pass:none[Anzahl der Time-based One-Time Passwörter die vor und nach dem aktuellen Passwort akzeptiert werden: 0 = nur das aktuelle Passwort wird akzeptiert, 1 = akzeptiert ein Passwort vorher, das aktuelle und ein Passwort danach, 2 = akzeptiert zwei Passwörter vorher, das aktuelle und zwei Passwörter danach, ...; umso höher die genutzte Zahl umso unsicherer das Verfahren (0 oder 1 sind empfohlene Werte)] +** Typ: integer +** Werte: 0 .. 256 +** Standardwert: `+0+` + +* [[option_relay.network.websocket_allowed_origins]] *relay.network.websocket_allowed_origins* +** Beschreibung: pass:none[Erweiterter regulärer POSIX Ausdruck für Origins in WebSockets (Groß- und Kleinschreibung wird ignoriert. Um Groß- und Kleinschreibung zu unterscheiden kann "(?-i)" vorangestellt werden), Beispiel: ^https?://(www\.)?example\.(com|org)"] +** Typ: Zeichenkette +** Werte: beliebige Zeichenkette +** Standardwert: `+""+` + +* [[option_relay.weechat.commands]] *relay.weechat.commands* +** Beschreibung: pass:none[durch Kommata getrennte Liste von Befehlen die erlaubt bzw. verboten sind, wenn Daten (Text oder Befehl) vom Client empfangen werden; "*" bedeutet alle Befehle sind erlaubt, beginnt ein Befehl hingegen mit "!" wird die Auswahl umgekehrt und der Befehl wird nicht ausgeführt, ein Platzhalter "*" ist bei den Befehlen erlaubt; diese Option sollte verwendet werden, falls man befürchtet, dass der relay client kompromittiert werden kann (darüber können Befehle ausgeführt werden); Beispiel: "*,!exec,!quit" es sind alle Befehle erlaubt, außer /exec und /quit] +** Typ: Zeichenkette +** Werte: beliebige Zeichenkette +** Standardwert: `+""+` +// end::relay_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] +** Typ: boolesch +** Werte: on, off +** Standardwert: `+off+` + +* [[option_ruby.look.eval_keep_context]] *ruby.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::ruby_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] +** 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_script.color.status_held]] *script.color.status_held* +** Beschreibung: pass:none[Farbe in der der Status "halten" ("H") 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+` + +* [[option_script.color.status_installed]] *script.color.status_installed* +** Beschreibung: pass:none[Farbe in der der Status "installiert" ("i") 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: `+lightcyan+` + +* [[option_script.color.status_obsolete]] *script.color.status_obsolete* +** Beschreibung: pass:none[Farbe in der der Status "obsolete" ("N") 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: `+lightmagenta+` + +* [[option_script.color.status_popular]] *script.color.status_popular* +** Beschreibung: pass:none[Farbe in der der Status "empfohlen" ("*") 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: `+yellow+` + +* [[option_script.color.status_running]] *script.color.status_running* +** Beschreibung: pass:none[Farbe in der der Status "laufend" ("r") 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: `+lightgreen+` + +* [[option_script.color.status_unknown]] *script.color.status_unknown* +** Beschreibung: pass:none[Farbe in der der Status "unbekannt" ("?") 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: `+lightred+` + +* [[option_script.color.text]] *script.color.text* +** Beschreibung: pass:none[Textfarbe im Skript-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_script.color.text_bg]] *script.color.text_bg* +** Beschreibung: pass:none[Hintergrundfarbe im Skript-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_script.color.text_bg_selected]] *script.color.text_bg_selected* +** Beschreibung: pass:none[Hintergrundfarbe] +** 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_script.color.text_date]] *script.color.text_date* +** Beschreibung: pass:none[Textfarbe für das Datum im Skript-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_script.color.text_date_selected]] *script.color.text_date_selected* +** Beschreibung: pass:none[Textfarbe für das Datum, im Skript Buffer, wenn die 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: `+white+` + +* [[option_script.color.text_delimiters]] *script.color.text_delimiters* +** Beschreibung: pass:none[Textfarbe für das Trennzeichen im Skript-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_script.color.text_description]] *script.color.text_description* +** Beschreibung: pass:none[Textfarbe für die Beschreibung im Skript-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_script.color.text_description_selected]] *script.color.text_description_selected* +** Beschreibung: pass:none[Textfarbe für die Beschreibung des Skriptes, im Skript Buffer, wenn die 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: `+white+` + +* [[option_script.color.text_extension]] *script.color.text_extension* +** Beschreibung: pass:none[Textfarbe für die Erweiterung im Skript-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_script.color.text_extension_selected]] *script.color.text_extension_selected* +** Beschreibung: pass:none[Textfarbe für die Dateierweiterung, im Skript Buffer, wenn die 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: `+white+` + +* [[option_script.color.text_name]] *script.color.text_name* +** Beschreibung: pass:none[Textfarbe für den Namen des Skriptes im Skript-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_script.color.text_name_selected]] *script.color.text_name_selected* +** Beschreibung: pass:none[Textfarbe für den Namen des Skriptes, im Skript Buffer, wenn die 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: `+lightcyan+` + +* [[option_script.color.text_selected]] *script.color.text_selected* +** Beschreibung: pass:none[Textfarbe für den Auswahlbalken im Skript-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_script.color.text_tags]] *script.color.text_tags* +** Beschreibung: pass:none[Textfarbe für die Schlagwörter im Skript-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: `+brown+` + +* [[option_script.color.text_tags_selected]] *script.color.text_tags_selected* +** Beschreibung: pass:none[Textfarbe für die Schlagwörter, im Skript Buffer, wenn die 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: `+yellow+` + +* [[option_script.color.text_version]] *script.color.text_version* +** Beschreibung: pass:none[Textfarbe für die Version im Skript-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: `+magenta+` + +* [[option_script.color.text_version_loaded]] *script.color.text_version_loaded* +** Beschreibung: pass:none[Textfarbe für die geladene Version im Skript-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_script.color.text_version_loaded_selected]] *script.color.text_version_loaded_selected* +** Beschreibung: pass:none[Textfarbe für die Versionsanzeige des geladenen Skriptes, im Skript Buffer, wenn die 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: `+white+` + +* [[option_script.color.text_version_selected]] *script.color.text_version_selected* +** Beschreibung: pass:none[Textfarbe für die Version des Skriptes, im Skript Buffer, wenn die 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: `+lightmagenta+` + +* [[option_script.look.columns]] *script.look.columns* +** Beschreibung: pass:none[Format in welchem die Spalten im Skript-Buffer dargestellt werden sollen. Es können folgende Spaltenbezeichnungen genutzt werden: %a=Autor, %d=Beschreibung, %D=Skript hinzugefügt, %e=Dateierweiterung, %l=Programmiersprache, %L=Lizenz, %n=Skriptname, mit Dateierweiterung, %N=Skriptname, %r=Voraussetzungen, %s=Status, %t=Schlagwörter, %u=Datum der letzten Überarbeitung, %v=Version, %V=installierte Version, %w=min_WeeChat_Version, %W=max_WeeChat_Version)] +** Typ: Zeichenkette +** Werte: beliebige Zeichenkette +** Standardwert: `+"%s %n %V %v %u | %d | %t"+` + +* [[option_script.look.diff_color]] *script.look.diff_color* +** Beschreibung: pass:none[Unterschiede in den zwei Skripten werden farblich hervorgehoben] +** Typ: boolesch +** Werte: on, off +** Standardwert: `+on+` + +* [[option_script.look.diff_command]] *script.look.diff_command* +** Beschreibung: pass:none[Befehl der genutzt werden soll um die Unterschiede zwischen dem installierten Skript und dem Skript, welches im offiziellem Bereich der Homepage bereitgestellt wird, darzustellen ("auto" = automatische Erkennung des Diff-Befehls (git oder diff), leerer Wert = Diff ist deaktiviert, externer Befehl = Name des Befehls, zum Beispiel "diff")] +** Typ: Zeichenkette +** Werte: beliebige Zeichenkette +** Standardwert: `+"auto"+` + +* [[option_script.look.display_source]] *script.look.display_source* +** Beschreibung: pass:none[Zeigt den Quellcode des Skriptes, mit weiteren Informationen zu dem Skript, im Buffer an (Skript wird dazu temporär in eine Datei gesichert)] +** Typ: boolesch +** Werte: on, off +** Standardwert: `+on+` + +* [[option_script.look.quiet_actions]] *script.look.quiet_actions* +** Beschreibung: pass:none[diese Einstellung stellt einen stummen Modus für den Skripten-Buffer zu Verfügung: Es werden keine Nachrichten im Core-Buffer ausgegeben, wenn Skripten installiert/entfernt/gestartet/beendet werden (lediglich Fehler werden ausgegeben)] +** Typ: boolesch +** Werte: on, off +** Standardwert: `+on+` + +* [[option_script.look.sort]] *script.look.sort* +** Beschreibung: pass:none[Standardsortierung für Skripten im Skript Buffer: durch Kommata getrennte Liste von Bezeichnern: a=Autor, A=automatisch geladen, d=Datum wann das Skript hinzugefügt wurde, e=Dateierweiterung, i=installiert, l=Programmiersprache, n=Skriptname, o=obsolete, p=empfohlen, r=Skript wird ausgeführt, u=Datum der letzten Überarbeitung; mit Hilfe des Zeichens "-", vor dem entsprechenden Bezeichner, kann die Darstellung umgekehrt werden. Beispiel: "i,u": installierte Skripten werden zuerst dargestellt, sortiert nach dem Datum ihrer letzten Überarbeitung] +** Typ: Zeichenkette +** Werte: beliebige Zeichenkette +** Standardwert: `+"i,p,n"+` + +* [[option_script.look.translate_description]] *script.look.translate_description* +** Beschreibung: pass:none[für die Beschreibung der Skripten wird die Muttersprache verwendet (sollte keine Übersetzung in der eigenen Sprache verfügbar sein, wird auf die englische Beschreibung zurückgegriffen)] +** Typ: boolesch +** Werte: on, off +** Standardwert: `+on+` + +* [[option_script.look.use_keys]] *script.look.use_keys* +** Beschreibung: pass:none[Um Tastenkurzbefehle im Skript-Buffer direkt nutzen zu können (zum Beispiel: alt+i = installieren, alt+r = entfernen, ...), muss diese Einstellung aktiviert werden. Andernfalls können Aktionen nur über die Eingabezeile durchgeführt werden: i,r...] +** Typ: boolesch +** Werte: on, off +** Standardwert: `+on+` + +* [[option_script.scripts.autoload]] *script.scripts.autoload* +** Beschreibung: pass:none[autoload Skripten installiert (erstellt einen Link im "autoload" Verzeichnis zum Skript im übergeordneten Verzeichnis)] +** Typ: boolesch +** Werte: on, off +** Standardwert: `+on+` + +* [[option_script.scripts.cache_expire]] *script.scripts.cache_expire* +** Beschreibung: pass:none[Ablaufdatum des lokalen Caches, in Minuten (-1 = ohne Ablaufdatum, 0 = umgehend)] +** Typ: integer +** Werte: -1 .. 525600 +** Standardwert: `+1440+` + +* [[option_script.scripts.download_enabled]] *script.scripts.download_enabled* +** Beschreibung: pass:none[Aktivieren Sie den Download von Dateien aus dem Skript-Repository, wenn der Befehl /script verwendet wird (Liste der Skripten und Skripten selbst). Die Liste der Skripten wird von der in der Option script.scripts.url angegebenen URL heruntergeladen. WeeChat lädt manchmal die Liste der Skripten erneut herunter, wenn Sie den Befehl /script verwenden, auch wenn Sie kein Skript installieren] +** Typ: boolesch +** Werte: on, off +** Standardwert: `+off+` + +* [[option_script.scripts.download_timeout]] *script.scripts.download_timeout* +** Beschreibung: pass:none[Zeitüberschreitung (in Sekunden) beim herunterladen von Skripten und der Skriptliste] +** Typ: integer +** Werte: 1 .. 3600 +** Standardwert: `+30+` + +* [[option_script.scripts.hold]] *script.scripts.hold* +** Beschreibung: pass:none[Skripten welche "gehalten" werden sollen. Dies ist eine durch Kommata getrennte Liste von Skripten die weder aktualisiert noch entfernt werden können. Zum Beispiel: "go.py, urlserver.py"] +** Typ: Zeichenkette +** Werte: beliebige Zeichenkette +** Standardwert: `+""+` + +* [[option_script.scripts.path]] *script.scripts.path* +** Beschreibung: pass:none[lokales Cache-Verzeichnis für Skripten (Pfad ist evaluiert, siehe Funktion string_eval_path_home in der Plugin-API-Referenz)] +** Typ: Zeichenkette +** Werte: beliebige Zeichenkette +** Standardwert: `+"${weechat_cache_dir}/script"+` + +* [[option_script.scripts.url]] *script.scripts.url* +** Beschreibung: pass:none[URL für Datei mit der Auflistung aller Skripten] +** Typ: Zeichenkette +** Werte: beliebige Zeichenkette +** Standardwert: `+"https://weechat.org/files/plugins.xml.gz"+` +// end::script_options[] + // 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)] @@ -29,6 +2287,218 @@ ** 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: `+lightred+` + +* [[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_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: `+cyan+` + +* [[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: `+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::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: `+lightgreen+` + +* [[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_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: `+lightblue+` + +* [[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: `+lightcyan+` + +* [[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: `+lightmagenta+` + +* [[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_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: `+cyan+` + +* [[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: `+green+` + +* [[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: `+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::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] @@ -1381,544 +3851,6 @@ ** 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[] - -// 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::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: `+lightred+` - -* [[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: `+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[] - -// 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: `+lightgreen+` - -* [[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_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: `+lightblue+` - -* [[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: `+lightcyan+` - -* [[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: `+lightmagenta+` - -* [[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_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: `+cyan+` - -* [[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: `+green+` - -* [[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: `+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+` - -* [[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: `+lightred+` - -* [[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_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: `+cyan+` - -* [[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: `+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},"+` - -* [[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+` - -* [[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_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_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+` - -* [[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_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] -** Typ: integer -** Werte: 1 .. 3 -** 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)] -** 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+` - -* [[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::xfer_options[] * [[option_xfer.color.status_aborted]] *xfer.color.status_aborted* ** Beschreibung: pass:none[Textfarbe für Status: "abgebrochen"] @@ -2106,1935 +4038,3 @@ ** Werte: 5 .. 2147483647 ** Standardwert: `+300+` // end::xfer_options[] - -// tag::irc_options[] -* [[option_irc.color.input_nick]] *irc.color.input_nick* -** Beschreibung: pass:none[Farbe des eigenen Nicknamens in der 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: `+lightcyan+` - -* [[option_irc.color.item_channel_modes]] *irc.color.item_channel_modes* -** Beschreibung: pass:none[Farbe der Kanal-Modes (neben des Kanalnamens)] -** 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_irc.color.item_lag_counting]] *irc.color.item_lag_counting* -** Beschreibung: pass:none[Farbe in der die Anzeige für die Verzögerung (Lag) dargestellt werden soll, sobald auf Antwort gewartet wird ("pong" wurde vom Server nicht empfangen und die Verzögerungszeit wird erhöht)] -** 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_irc.color.item_lag_finished]] *irc.color.item_lag_finished* -** Beschreibung: pass:none[Farbe in der die Anzeige für die Verzögerung (Lag) dargestellt werden soll, sobald ein "pong" vom Server empfangen 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+` - -* [[option_irc.color.item_nick_modes]] *irc.color.item_nick_modes* -** Beschreibung: pass:none[Farbe in der der Nick-Modus in dem Bar-Item "input_prompt" angezeigt 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+` - -* [[option_irc.color.item_tls_version_deprecated]] *irc.color.item_tls_version_deprecated* -** Beschreibung: pass:none[Farbe die für eine unsicherere TLS-Version im Bar-Item "tls_version" genutzt 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: `+yellow+` - -* [[option_irc.color.item_tls_version_insecure]] *irc.color.item_tls_version_insecure* -** Beschreibung: pass:none[Farbe die für eine unsichere TLS-Versionen im Bar-Item "tls_version" genutzt wirdFarbe für unsichere TLS-Versionen im Balkenelement "tls_version"] -** 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_irc.color.item_tls_version_ok]] *irc.color.item_tls_version_ok* -** Beschreibung: pass:none[Farbe die für eine sicherere TLS-Version im Bar-Item "tls_version" genutzt 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: `+green+` - -* [[option_irc.color.message_account]] *irc.color.message_account* -** Beschreibung: pass:none[Textfarbe für "account" Nachrichten] -** 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_irc.color.message_chghost]] *irc.color.message_chghost* -** Beschreibung: pass:none[Textfarbe in der "chghost" Nachrichten dargestellt 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: `+brown+` - -* [[option_irc.color.message_join]] *irc.color.message_join* -** Beschreibung: pass:none[Textfarbe in der die Meldungen für das Betreten eines Kanals angezeigt 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: `+green+` - -* [[option_irc.color.message_kick]] *irc.color.message_kick* -** Beschreibung: pass:none[Textfarbe in der die Meldungen für kick/kill Nachrichten angezeigt 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: `+red+` - -* [[option_irc.color.message_quit]] *irc.color.message_quit* -** Beschreibung: pass:none[Textfarbe in der die Meldungen für das Verlassen/Beenden eines Kanals angezeigt 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: `+red+` - -* [[option_irc.color.message_setname]] *irc.color.message_setname* -** Beschreibung: pass:none[Textfarbe in der "setname" Nachrichten dargestellt 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: `+brown+` - -* [[option_irc.color.mirc_remap]] *irc.color.mirc_remap* -** Beschreibung: pass:none[ersetzt mirc Farben in Nachrichten mittels einer Hashtabelle: Schlüssel sind "fg,bg" als Ganzzahl zwischen -1 (nicht näher bezeichnet) und 15. Als Wert ist der Farbname oder die Farbnummer von WeeChat möglich (Format: "1,-1:Farbe1;2,7:Farbe2"), Beispiel: "1,-1:darkgray;1,2:white,blue" ersetzt schwarz durch "darkgray" und schwarz auf blau durch "white,blue"; Tabelle der Standard-IRC-Farben von WeeChat (in Klammern der Farbname, wie er von WeeChat genutzt wird): 0=weiß (white), 1=schwarz (black), 2=blau (blue), 3=grün (green), 4=hellrot (lightred), 5=rot (red), 6=violett (magenta), 7=braun (brown), 8=gelb (yellow), 9= hell-grün (lightgreen), 10=türkis (cyan), 11=hell-türkis (lightcyan), 12=hellblau (lightblue), 13=hell-violett (lightmagenta), 14=dunkel-grau (darkgray), 15=grau (gray)] -** Typ: Zeichenkette -** Werte: beliebige Zeichenkette -** Standardwert: `+"1,-1:darkgray"+` - -* [[option_irc.color.nick_prefixes]] *irc.color.nick_prefixes* -** Beschreibung: pass:none[Farben für Nick Präfix für das Modus-Symbol (o=op, h=halfop, v=voice, ..), Format: "o:color1;h:color2;v:color3" (wird ein Modus nicht gefunden probiert WeeChat einen der nächsten Modi aus, die der Server sendet ("PREFIX"); wird kein Modus in der Liste gefunden, wird eine Standardfarbe verwendet die dem Zeichen "*" zugeordnet wurde)] -** Typ: Zeichenkette -** Werte: beliebige Zeichenkette -** Standardwert: `+"y:lightred;q:lightred;a:lightcyan;o:lightgreen;h:lightmagenta;v:yellow;*:lightblue"+` - -* [[option_irc.color.notice]] *irc.color.notice* -** Beschreibung: pass:none[Farbe des "Notice"-Textes in Notizen] -** 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_irc.color.reason_kick]] *irc.color.reason_kick* -** Beschreibung: pass:none[Textfarbe in der die Begründung einer kick/kill Nachricht angezeigt 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+` - -* [[option_irc.color.reason_quit]] *irc.color.reason_quit* -** Beschreibung: pass:none[Textfarbe in der die Begründung einer part/quit Nachricht angezeigt 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+` - -* [[option_irc.color.topic_current]] *irc.color.topic_current* -** Beschreibung: pass:none[Farbe in dem das aktuelle Thema des Kanals dargestellt werden soll (wenn ein Kanal betreten oder der Befehl /topic genutzt 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: `+default+` - -* [[option_irc.color.topic_new]] *irc.color.topic_new* -** Beschreibung: pass:none[Farbe in dem das neue Thema des Kanals dargestellt werden soll, falls das Thema des Kanals geä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: `+white+` - -* [[option_irc.color.topic_old]] *irc.color.topic_old* -** Beschreibung: pass:none[Farbe in dem das alte Thema des Kanals dargestellt werden soll, falls das Thema des Kanals geä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_irc.look.buffer_open_before_autojoin]] *irc.look.buffer_open_before_autojoin* -** Beschreibung: pass:none[betritt man automatisch einen Kanal-Buffer (mittels autojoin Option) wird dieser direkt geöffnet, ohne auf die JOIN Nachricht des Servers zu warten; dies ist sinnvoll um die Kanäle immer an der selben Position bei einem Neustart zu öffnen] -** Typ: boolesch -** Werte: on, off -** Standardwert: `+on+` - -* [[option_irc.look.buffer_open_before_join]] *irc.look.buffer_open_before_join* -** Beschreibung: pass:none[betritt man mittels dem /join Befehl einen Kanal wird der Buffer direkt geöffnet, ohne auf die JOIN Nachricht des Servers zu warten] -** Typ: boolesch -** Werte: on, off -** Standardwert: `+off+` - -* [[option_irc.look.buffer_switch_autojoin]] *irc.look.buffer_switch_autojoin* -** Beschreibung: pass:none[wechselt automatisch zum Kanal-Buffer falls dieser automatisch betreten wurde (mittels der Serveroption "autojoin")] -** Typ: boolesch -** Werte: on, off -** Standardwert: `+on+` - -* [[option_irc.look.buffer_switch_join]] *irc.look.buffer_switch_join* -** Beschreibung: pass:none[wechselt automatisch zum Kanal-Buffer falls dieser manuell betreten wurde (mittels dem /join Befehl)] -** Typ: boolesch -** Werte: on, off -** Standardwert: `+on+` - -* [[option_irc.look.color_nicks_in_names]] *irc.look.color_nicks_in_names* -** Beschreibung: pass:none[nutzt in der Ausgabe von /names die jeweiligen Farbe des Nick (oder bei der Auflistung der Nicks wenn man einen Kanal betritt)] -** Typ: boolesch -** Werte: on, off -** Standardwert: `+off+` - -* [[option_irc.look.color_nicks_in_nicklist]] *irc.look.color_nicks_in_nicklist* -** Beschreibung: pass:none[nutzt die Farbe des Nick in der Nicklist] -** Typ: boolesch -** Werte: on, off -** Standardwert: `+off+` - -* [[option_irc.look.color_nicks_in_server_messages]] *irc.look.color_nicks_in_server_messages* -** Beschreibung: pass:none[nutzt die Farbe des Nick bei Nachrichten vom Server] -** Typ: boolesch -** Werte: on, off -** Standardwert: `+on+` - -* [[option_irc.look.color_pv_nick_like_channel]] *irc.look.color_pv_nick_like_channel* -** Beschreibung: pass:none[nutzt die selbe Farbe für die Darstellung des Nicks im Kanal wie auch im privaten Buffer] -** Typ: boolesch -** Werte: on, off -** Standardwert: `+on+` - -* [[option_irc.look.ctcp_time_format]] *irc.look.ctcp_time_format* -** Beschreibung: pass:none[Format für die Zeitanzeige die bei einer CTCP TIME Anfrage zurückgesendet 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 %z"+` - -* [[option_irc.look.display_account_message]] *irc.look.display_account_message* -** Beschreibung: pass:none[ACCOUNT Nachrichten anzeigen, die empfangen wurden, wenn die Funktion account-notify aktiviert ist] -** Typ: boolesch -** Werte: on, off -** Standardwert: `+on+` - -* [[option_irc.look.display_away]] *irc.look.display_away* -** Beschreibung: pass:none[zeigt eine Nachricht an, sobald der Abwesenheitsstatus ein- bzw. ausgeschaltet wird (off: zeigt/sendet keine Nachricht, local: eine Nachricht wird lokal angezeigt, channel: sendet eine Nachricht an die Kanäle)] -** Typ: integer -** Werte: off, local, channel -** Standardwert: `+local+` - -* [[option_irc.look.display_ctcp_blocked]] *irc.look.display_ctcp_blocked* -** Beschreibung: pass:none[CTCP Nachrichten werden angezeigt, obwohl sie unterdrückt werden] -** Typ: boolesch -** Werte: on, off -** Standardwert: `+on+` - -* [[option_irc.look.display_ctcp_reply]] *irc.look.display_ctcp_reply* -** Beschreibung: pass:none[CTCP Antworten, die durch WeeChat versendet wurden, werden angezeigt] -** Typ: boolesch -** Werte: on, off -** Standardwert: `+on+` - -* [[option_irc.look.display_ctcp_unknown]] *irc.look.display_ctcp_unknown* -** Beschreibung: pass:none[unbekannte CTCP Nachrichten werden angezeigt] -** Typ: boolesch -** Werte: on, off -** Standardwert: `+on+` - -* [[option_irc.look.display_extended_join]] *irc.look.display_extended_join* -** Beschreibung: pass:none[zusätzliche Informationen in den JOIN-Nachrichten anzeigen: Kontoname und richtiger Name (Funktion extended-join muss aktiviert sein)] -** Typ: boolesch -** Werte: on, off -** Standardwert: `+on+` - -* [[option_irc.look.display_host_join]] *irc.look.display_host_join* -** Beschreibung: pass:none[zeigt den Host innerhalb einer join Nachricht an] -** Typ: boolesch -** Werte: on, off -** Standardwert: `+on+` - -* [[option_irc.look.display_host_join_local]] *irc.look.display_host_join_local* -** Beschreibung: pass:none[zeigt den Host innerhalb einer join Nachrichten des lokalen Client an] -** Typ: boolesch -** Werte: on, off -** Standardwert: `+on+` - -* [[option_irc.look.display_host_quit]] *irc.look.display_host_quit* -** Beschreibung: pass:none[zeigt den Host innerhalb einer part/quit Nachricht an] -** Typ: boolesch -** Werte: on, off -** Standardwert: `+on+` - -* [[option_irc.look.display_join_message]] *irc.look.display_join_message* -** Beschreibung: pass:none[durch Kommata getrennte Liste von Nachrichten die beim Betreten eines Kanals angezeigt werden sollen: 324 = Channel-Modi, 329 = Erstellungsdatum des Kanals, 332 = Topic, 333 = Nick/Datum für Topic, 353 = genutzte Namen im Kanal, 366 = Anzahl der Nicks im Kanal] -** Typ: Zeichenkette -** Werte: beliebige Zeichenkette -** Standardwert: `+"329,332,333,366"+` - -* [[option_irc.look.display_old_topic]] *irc.look.display_old_topic* -** Beschreibung: pass:none[zeige das alte Thema an, falls das Thema des Kanals geändert wurde] -** Typ: boolesch -** Werte: on, off -** Standardwert: `+on+` - -* [[option_irc.look.display_pv_away_once]] *irc.look.display_pv_away_once* -** Beschreibung: pass:none[in einer privaten Unterhaltung nur einmal eine Abwesenheitsnachricht anzeigen] -** Typ: boolesch -** Werte: on, off -** Standardwert: `+on+` - -* [[option_irc.look.display_pv_back]] *irc.look.display_pv_back* -** Beschreibung: pass:none[es wird bei einer privaten Unterhaltung eine Mitteilung ausgegeben falls der User wieder zurück ist (falls der User sich beim Server abgemeldet hat)] -** Typ: boolesch -** Werte: on, off -** Standardwert: `+on+` - -* [[option_irc.look.display_pv_nick_change]] *irc.look.display_pv_nick_change* -** Beschreibung: pass:none[Nickänderung im privaten Buffer anzeigen] -** Typ: boolesch -** Werte: on, off -** Standardwert: `+on+` - -* [[option_irc.look.display_pv_warning_address]] *irc.look.display_pv_warning_address* -** Beschreibung: pass:none[zeigt eine Warnung in einem privaten Buffer an, sobald sich die Adresse eines Remote-Nick geändert hat; diese Option ist standardmäßig ausgeschaltet, da Server wie bitlbee eine solche Warnung unvermittelt auslösen (die Adresse des Remote-Nick ändert sich während eines Login mehrfach)] -** Typ: boolesch -** Werte: on, off -** Standardwert: `+off+` - -* [[option_irc.look.highlight_channel]] *irc.look.highlight_channel* -** Beschreibung: pass:none[durch Kommata getrennte Liste von Wörtern die im Kanal-Buffern als Highlight erscheinen sollen (zwischen Groß- und Kleinschreibung wird nicht unterschieden. Um zwischen Groß- und Kleinschreibung zu unterscheiden muss zu Beginn "(?-i)" genutzt werden; des Weiteren können folgende Variablen genutzt werden: $nick, $channel und $server). Wird ein Buffer geöffnet, dann werden die angegeben Wörter dem Buffer-Merkmal "highlight_words" hinzugefügt. Dies bedeutet, dass diese Einstellung keinen direkten Einfluss auf schon geöffnete Buffer hat. Eine leere Zeichenkette deaktiviert ein Highlight für den Nick. Beispiel: "$nick", "(?-i)$nick"] -** Typ: Zeichenkette -** Werte: beliebige Zeichenkette -** Standardwert: `+"$nick"+` - -* [[option_irc.look.highlight_pv]] *irc.look.highlight_pv* -** Beschreibung: pass:none[durch Kommata getrennte Liste von Wörtern die in einem privaten Buffer als Highlight erscheinen sollen (zwischen Groß- und Kleinschreibung wird nicht unterschieden. Um zwischen Groß- und Kleinschreibung zu unterscheiden muss zu Beginn "(?-i)" genutzt werden; des Weiteren können folgende Variablen genutzt werden: $nick, $channel und $server). Wird ein Buffer geöffnet, dann werden die angegeben Wörter dem Buffer-Merkmal "highlight_words" hinzugefügt. Dies bedeutet, dass diese Einstellung keinen direkten Einfluss auf schon geöffnete Buffer hat. Eine leere Zeichenkette deaktiviert ein Highlight für den Nick. Beispiel: "$nick", "(?-i)$nick"] -** Typ: Zeichenkette -** Werte: beliebige Zeichenkette -** Standardwert: `+"$nick"+` - -* [[option_irc.look.highlight_server]] *irc.look.highlight_server* -** Beschreibung: pass:none[durch Kommata getrennte Liste von Wörtern die in Server-Buffern als Highlight erscheinen sollen (zwischen Groß- und Kleinschreibung wird nicht unterschieden. Um zwischen Groß- und Kleinschreibung zu unterscheiden muss zu Beginn "(?-i)" genutzt werden; des Weiteren können folgende Variablen genutzt werden: $nick, $channel und $server). Wird ein Buffer geöffnet, dann werden die angegeben Wörter dem Buffer-Merkmal "highlight_words" hinzugefügt. Dies bedeutet, dass diese Einstellung keinen direkten Einfluss auf schon geöffnete Buffer hat. Eine leere Zeichenkette deaktiviert ein Highlight für den Nick. Beispiel: "$nick", "(?-i)$nick"] -** Typ: Zeichenkette -** Werte: beliebige Zeichenkette -** Standardwert: `+"$nick"+` - -* [[option_irc.look.highlight_tags_restrict]] *irc.look.highlight_tags_restrict* -** Beschreibung: pass:none[beschränkt Highlights für IRC Buffer auf bestimmte Tags (um Highlights durch User- aber nicht durch Servernachrichten zu erhalten); Tags müssen durch Kommata getrennt werden; um eine logische "und" Verknüpfung zu verwenden, können mehrere Tags durch "+" zusammengefügt werden; der Platzhalter "*" kann verwendet werden um mehr als ein Tag zu markieren; wird kein Wert angegeben, erzeugt jedes Tag ein Highlight] -** Typ: Zeichenkette -** Werte: beliebige Zeichenkette -** Standardwert: `+"irc_privmsg,irc_notice"+` - -* [[option_irc.look.item_channel_modes_hide_args]] *irc.look.item_channel_modes_hide_args* -** Beschreibung: pass:none[unterdrückt die Ausgabe von Argumenten die die Kanalmodi betreffen, sofern der entsprechende Modus für den Kanal gesetzt ist ("*" unterdrückt jedwede Ausgabe von Argumenten; wird kein Wert angegeben, dann werden alle Argumente angezeigt); Beispiele: "kf" unterdrückt die Argumente, falls "k" oder "f" für den Kanal gesetzt sind] -** Typ: Zeichenkette -** Werte: beliebige Zeichenkette -** Standardwert: `+"k"+` - -* [[option_irc.look.item_display_server]] *irc.look.item_display_server* -** Beschreibung: pass:none[Name der Bar-Item in dem der IRC Server angezeigt wird (für Status-Bar)] -** Typ: integer -** Werte: buffer_plugin, buffer_name -** Standardwert: `+buffer_plugin+` - -* [[option_irc.look.item_nick_modes]] *irc.look.item_nick_modes* -** Beschreibung: pass:none[der Nick-Modus wird in dem Bar-Item "input_prompt" angezeigt] -** Typ: boolesch -** Werte: on, off -** Standardwert: `+on+` - -* [[option_irc.look.item_nick_prefix]] *irc.look.item_nick_prefix* -** Beschreibung: pass:none[der Nick-Präfix wird im Bar-Item "input_prompt" angezeigt] -** Typ: boolesch -** Werte: on, off -** Standardwert: `+on+` - -* [[option_irc.look.join_auto_add_chantype]] *irc.look.join_auto_add_chantype* -** Beschreibung: pass:none[es wird dem Kanalnamen automatisch der Kanal-Typ vorangestellt, falls bei der Benutzung des /join Befehls der angegebene Kanalname keinen gültigen Typ besitzt; Beispiel: "/join weechat" wird als: "/join #weechat" versendet] -** Typ: boolesch -** Werte: on, off -** Standardwert: `+off+` - -* [[option_irc.look.msgbuffer_fallback]] *irc.look.msgbuffer_fallback* -** Beschreibung: pass:none[Standardbuffer der für Ausgaben genutzt werden soll, falls ein privater Buffer nicht gefunden wird] -** Typ: integer -** Werte: current, server -** Standardwert: `+current+` - -* [[option_irc.look.new_channel_position]] *irc.look.new_channel_position* -** Beschreibung: pass:none[ein neu geöffneter Kanal wird auf eine Position gezwungen (none = standardmäßige Position (sollte der letzte Buffer in der Liste sein), next = aktueller Buffer + 1, near_server = nach dem letztem Kanal/privaten Buffer des jeweiligen Servers)] -** Typ: integer -** Werte: none, next, near_server -** Standardwert: `+none+` - -* [[option_irc.look.new_pv_position]] *irc.look.new_pv_position* -** Beschreibung: pass:none[ein neuer privater Buffer wird auf eine Position gezwungen (none = standardmäßige Position (sollte der letzte Buffer in der Liste sein), next = aktueller Buffer + 1, near_server = nach dem letztem Kanal/privaten Buffer des jeweiligen Servers)] -** Typ: integer -** Werte: none, next, near_server -** Standardwert: `+none+` - -* [[option_irc.look.nick_completion_smart]] *irc.look.nick_completion_smart* -** Beschreibung: pass:none[intelligente Vervollständigung für Nicks (es wird zuerst mit den letzten Rednern vervollständigt): speakers = alle Redner (einschließlich Highlights), speakers_highlight = nur Redner die eine Highlight Nachricht geschrieben haben] -** Typ: integer -** Werte: off, speakers, speakers_highlights -** Standardwert: `+speakers+` - -* [[option_irc.look.nick_mode]] *irc.look.nick_mode* -** Beschreibung: pass:none[vor dem Nick wird der entsprechende Nickmodus (op, voice,...) angezeigt (none = Funktion ist deaktiviert, prefix = wird nur im Präfix angezeigt (Standardeinstellung), action = wird nur in action Nachrichten angezeigt, both = im Präfix und in action Nachrichten)] -** Typ: integer -** Werte: none, prefix, action, both -** Standardwert: `+prefix+` - -* [[option_irc.look.nick_mode_empty]] *irc.look.nick_mode_empty* -** Beschreibung: pass:none[es wird ein Leerzeichen anstelle eines Nickmodus verwendet, falls kein Nickmodus ((half)op/voice [@%+\]) vorhanden ist] -** Typ: boolesch -** Werte: on, off -** Standardwert: `+off+` - -* [[option_irc.look.nicks_hide_password]] *irc.look.nicks_hide_password* -** Beschreibung: pass:none[durch Kommata getrennte Liste von Nicks bei denen das Passwort in einer Nachricht unterdrückt werden soll. Zum Beispiel bei einer Nachricht die durch "/msg nickserv identify password" generiert wird. Beispiel: "nickserv,nickbot"] -** Typ: Zeichenkette -** Werte: beliebige Zeichenkette -** Standardwert: `+"nickserv"+` - -* [[option_irc.look.notice_as_pv]] *irc.look.notice_as_pv* -** Beschreibung: pass:none[zeigt Notizen als private Nachricht an (wird die "auto" Einstellung verwendet dann wird ein privater Buffer genutzt, falls vorhanden)] -** Typ: integer -** Werte: auto, never, always -** Standardwert: `+auto+` - -* [[option_irc.look.notice_welcome_redirect]] *irc.look.notice_welcome_redirect* -** Beschreibung: pass:none[automatische Weiterleitung von Willkommen Nachrichten in den entsprechenden Kanal-Buffer. Solche Nachrichten haben als Empfänger den entsprechenden Nick. Der Kanalname wird aber der Nachricht vorangestellt. Eine solche ENTRYMSG Nachricht sieht auf dem Atheme IRC Server wie folgt aus: "[#channel\] Herzlich Willkommen in diesem Kanal ..."] -** Typ: boolesch -** Werte: on, off -** Standardwert: `+on+` - -* [[option_irc.look.notice_welcome_tags]] *irc.look.notice_welcome_tags* -** Beschreibung: pass:none[durch Kommata getrennte Liste von Schlagwörtern für Willkommen-Nachrichten die in einen Kanal umgeleitet werden. Zum Beispiel: "notify_private"] -** Typ: Zeichenkette -** Werte: beliebige Zeichenkette -** Standardwert: `+""+` - -* [[option_irc.look.notify_tags_ison]] *irc.look.notify_tags_ison* -** Beschreibung: pass:none[durch Kommata getrennte Liste von Schlagwörtern die in notify-Nachrichten genutzt werden sollen, falls ein Nick einen Server betritt oder verlässt (Rückgabewert des Befehls ison oder monitor), zum Beispiel: "notify_message", "notify_private" oder "notify_highlight"] -** Typ: Zeichenkette -** Werte: beliebige Zeichenkette -** Standardwert: `+"notify_message"+` - -* [[option_irc.look.notify_tags_whois]] *irc.look.notify_tags_whois* -** Beschreibung: pass:none[durch Kommata getrennte Liste von Schlagwörtern die in notify-Nachrichten genutzt werden sollen, falls sich der away-Status eines Nick ändert (Rückgabe durch Befehl whois), zum Beispiel: "notify_message", "notify_private" oder "notify_highlight"] -** Typ: Zeichenkette -** Werte: beliebige Zeichenkette -** Standardwert: `+"notify_message"+` - -* [[option_irc.look.part_closes_buffer]] *irc.look.part_closes_buffer* -** Beschreibung: pass:none[schließt den Buffer wenn "/part" im Kanal ausgeführt wird] -** Typ: boolesch -** Werte: on, off -** Standardwert: `+off+` - -* [[option_irc.look.pv_buffer]] *irc.look.pv_buffer* -** Beschreibung: pass:none[private Buffer zusammenfügen] -** Typ: integer -** Werte: independent, merge_by_server, merge_all -** Standardwert: `+independent+` - -* [[option_irc.look.pv_tags]] *irc.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_irc.look.raw_messages]] *irc.look.raw_messages* -** Beschreibung: pass:none[Anzahl der IRC-RAW-Nachrichten die im Speicher gehalten werden sollen falls der RAW-Daten-Buffer geschlossen ist (die Nachrichten werden umgehend angezeigt sobald der RAW-Daten-Buffer geöffnet wird)] -** Typ: integer -** Werte: 0 .. 65535 -** Standardwert: `+256+` - -* [[option_irc.look.server_buffer]] *irc.look.server_buffer* -** Beschreibung: pass:none[fügt Serverbuffer zusammen; diese Option hat keine Auswirkung wenn ein Layout genutzt wird und mit dieser Option im Widerspruch steht (siehe /help layout)] -** Typ: integer -** Werte: merge_with_core, merge_without_core, independent -** Standardwert: `+merge_with_core+` - -* [[option_irc.look.smart_filter]] *irc.look.smart_filter* -** Beschreibung: pass:none[filtert join/part/quit/nick Nachrichten für einen Nick der einige Minuten im Kanal inaktiv gewesen ist (dazu muss ein Filter mit dem Schlagwort "irc_smart_filter" erstellt werden, siehe /help filter)] -** Typ: boolesch -** Werte: on, off -** Standardwert: `+on+` - -* [[option_irc.look.smart_filter_account]] *irc.look.smart_filter_account* -** Beschreibung: pass:none[aktiviert einen intelligenten Filter für "account" Nachrichten] -** Typ: boolesch -** Werte: on, off -** Standardwert: `+on+` - -* [[option_irc.look.smart_filter_chghost]] *irc.look.smart_filter_chghost* -** Beschreibung: pass:none[aktiviert einen intelligenten Filter für "chghost" Nachrichten] -** Typ: boolesch -** Werte: on, off -** Standardwert: `+on+` - -* [[option_irc.look.smart_filter_delay]] *irc.look.smart_filter_delay* -** Beschreibung: pass:none[Verzögerung, in Minuten, für eine Filterung von join/part/quit Mitteilungen. Falls ein Nick in der angegebenen Zeit keine Nachricht schreibt, wird seinejoin/part/quit Mitteilung gefiltert] -** Typ: integer -** Werte: 1 .. 10080 -** Standardwert: `+5+` - -* [[option_irc.look.smart_filter_join]] *irc.look.smart_filter_join* -** Beschreibung: pass:none[aktiviert einen intelligenten Filter für "join" Nachrichten] -** Typ: boolesch -** Werte: on, off -** Standardwert: `+on+` - -* [[option_irc.look.smart_filter_join_unmask]] *irc.look.smart_filter_join_unmask* -** Beschreibung: pass:none[Verzögerung (in Minuten) um Join Mitteilungen rückwirkend anzuzeigen, falls diese mittels "irc_smart_filter" unterdrückt wurden. Sollte ein Nick während der vorgegeben Zeit etwas im Kanal schreiben, dann wird seine Join Mitteilung angezeigt. Dies bezieht sich auf Nachrichten, eine Notice, Änderungen am Topic oder falls der Nick gewechselt wird (0 = deaktiviert: join-Mitteilungen bleiben verborgen)] -** Typ: integer -** Werte: 0 .. 10080 -** Standardwert: `+30+` - -* [[option_irc.look.smart_filter_mode]] *irc.look.smart_filter_mode* -** Beschreibung: pass:none[aktiviert einen intelligenten Filter für "mode" Nachrichten: "*" filtert alle Modi-Nachrichten, "+" um alle Modi im Server-Präfix zu filtern (zum Beispiel "ovh"), "xyz" um die Modi x/y/z zu filtern, "-xyz" um alle Modi, außer x/y/z, zu filtern; Beispiele: "ovh": filtert die Modi o/v/h, "-bkl": filtert alle Modi, ausgenommen b/k/l] -** Typ: Zeichenkette -** Werte: beliebige Zeichenkette -** Standardwert: `+"+"+` - -* [[option_irc.look.smart_filter_nick]] *irc.look.smart_filter_nick* -** Beschreibung: pass:none[aktiviert einen intelligenten Filter für "nick" Nachrichten (Änderungen des Nick)] -** Typ: boolesch -** Werte: on, off -** Standardwert: `+on+` - -* [[option_irc.look.smart_filter_quit]] *irc.look.smart_filter_quit* -** Beschreibung: pass:none[aktiviert einen intelligenten Filter für "part" und "quit" Nachrichten] -** Typ: boolesch -** Werte: on, off -** Standardwert: `+on+` - -* [[option_irc.look.smart_filter_setname]] *irc.look.smart_filter_setname* -** Beschreibung: pass:none[aktiviert einen intelligenten Filter für "setname" Nachrichten] -** Typ: boolesch -** Werte: on, off -** Standardwert: `+on+` - -* [[option_irc.look.temporary_servers]] *irc.look.temporary_servers* -** Beschreibung: pass:none[aktiviert die Erstellung von temporären Servern mit dem Befehl /connect] -** Typ: boolesch -** Werte: on, off -** Standardwert: `+off+` - -* [[option_irc.look.topic_strip_colors]] *irc.look.topic_strip_colors* -** Beschreibung: pass:none[Farben werden im Kanalthema entfernt (wird nur genutzt wenn der Buffer-Titel angezeigt wird)] -** Typ: boolesch -** Werte: on, off -** Standardwert: `+off+` - -* [[option_irc.look.typing_status_nicks]] *irc.look.typing_status_nicks* -** Beschreibung: pass:none[Nicks in der Bar-Item "typing" anzeigen, die in dem Kanal tippen (Option typing.look.enabled_nicks muss aktiviert sein und die Fähigkeit "message-tags" muss auf dem Server aktiviert sein)] -** Typ: boolesch -** Werte: on, off -** Standardwert: `+off+` - -* [[option_irc.look.typing_status_self]] *irc.look.typing_status_self* -** Beschreibung: pass:none[sendet den eigenen Tippstatus an Kanäle, damit andere Benutzer sehen, wenn Sie eine Nachricht schreiben (Option typing.look.enabled_self muss aktiviert sein und die Fähigkeit "message-tags" muss auf dem Server aktiviert sein)] -** Typ: boolesch -** Werte: on, off -** Standardwert: `+off+` - -* [[option_irc.network.autoreconnect_delay_growing]] *irc.network.autoreconnect_delay_growing* -** Beschreibung: pass:none[Multiplikator für die Verzögerung bei der automatischen Wiederverbindung zum Server (1 = immer die selbe Verzögerung nutzen, 2 = Verzögerung*2 für jeden weiteren Versuch, usw.)] -** Typ: integer -** Werte: 1 .. 100 -** Standardwert: `+2+` - -* [[option_irc.network.autoreconnect_delay_max]] *irc.network.autoreconnect_delay_max* -** Beschreibung: pass:none[maximale Verzögerung bei der automatischen Wiederverbindung zum Server (in Sekunden, 0 = keine Begrenzung)] -** Typ: integer -** Werte: 0 .. 604800 -** Standardwert: `+600+` - -* [[option_irc.network.ban_mask_default]] *irc.network.ban_mask_default* -** Beschreibung: pass:none[Vorgabewert für Befehle /ban, /unban und /kickban; Variablen $nick, $user, $ident und $host werden durch den jeweiligen Wert ersetzt (extrahiert aus "nick!user@host"); $ident ist identisch mit $user, sofern $user nicht mit "~" beginnt. Andernfalls wird daraus "*"; diese Vorgabemaske wird nur angewendet, sofern WeeChat den Host des Nicks ermitteln kann] -** Typ: Zeichenkette -** Werte: beliebige Zeichenkette -** Standardwert: `+"*!$ident@$host"+` - -* [[option_irc.network.colors_receive]] *irc.network.colors_receive* -** Beschreibung: pass:none[wenn deaktiviert, werden Farben-Codes von eingehenden Nachrichten ignoriert] -** Typ: boolesch -** Werte: on, off -** Standardwert: `+on+` - -* [[option_irc.network.colors_send]] *irc.network.colors_send* -** Beschreibung: pass:none[erlaubt Benutzern, spezielle Farbcodes zu versenden (ctrl-c + Code und optional Farbe: b=fett, cxx=Farbe, cxx,yy=Schrift-/Hintergrundfarbe, i=kursiv, o=schaltet Farbe/Attribute aus, r=invertiert, u=unterstrichen)] -** Typ: boolesch -** Werte: on, off -** Standardwert: `+on+` - -* [[option_irc.network.lag_check]] *irc.network.lag_check* -** Beschreibung: pass:none[Intervall zwischen zwei Überprüfungen auf Verfügbarkeit des Servers (in Sekunden, 0 = keine Überprüfung)] -** Typ: integer -** Werte: 0 .. 604800 -** Standardwert: `+60+` - -* [[option_irc.network.lag_max]] *irc.network.lag_max* -** Beschreibung: pass:none[maximale Verzögerung (in Sekunden): sollte die maximale Verzögerung erreicht werden geht WeeChat davon aus, dass die Antwort (pong) des Servers nicht mehr empfangen wird. Die Verzögerung wird dann nicht weiter gezählt (0 = es wird ewig gewartet)] -** Typ: integer -** Werte: 0 .. 604800 -** Standardwert: `+1800+` - -* [[option_irc.network.lag_min_show]] *irc.network.lag_min_show* -** Beschreibung: pass:none[geringste Verzögerungszeit (Lag) die angezeigt werden soll (in Millisekunden)] -** Typ: integer -** Werte: 0 .. 86400000 -** Standardwert: `+500+` - -* [[option_irc.network.lag_reconnect]] *irc.network.lag_reconnect* -** Beschreibung: pass:none[erneut mit Server verbinden, falls die maximal Verzögerung (Lag) erreicht wurde (Zeit in Sekunden, 0 = keine automatische Neuverbindung, zum Server); dieser Wert muss geringer oder gleich dem Wert in irc.network.lag_max sein] -** Typ: integer -** Werte: 0 .. 604800 -** Standardwert: `+300+` - -* [[option_irc.network.lag_refresh_interval]] *irc.network.lag_refresh_interval* -** Beschreibung: pass:none[Intervall zwischen zwei Aktualisierungen für die Anzeige der Verzögerung (Lag-Item), wenn die Verzögerungszeit sich erhöht (in Sekunden)] -** Typ: integer -** Werte: 1 .. 3600 -** Standardwert: `+1+` - -* [[option_irc.network.notify_check_ison]] *irc.network.notify_check_ison* -** Beschreibung: pass:none[Intervall zwischen zwei notify Überprüfungen mit dem IRC Befehl "ison" (in Minuten)] -** Typ: integer -** Werte: 1 .. 10080 -** Standardwert: `+1+` - -* [[option_irc.network.notify_check_whois]] *irc.network.notify_check_whois* -** Beschreibung: pass:none[Intervall zwischen zwei notify Überprüfungen mit dem IRC Befehl "whois" (in Minuten)] -** Typ: integer -** Werte: 1 .. 10080 -** Standardwert: `+5+` - -* [[option_irc.network.sasl_fail_unavailable]] *irc.network.sasl_fail_unavailable* -** Beschreibung: pass:none[erzeugt einen Fehler bei der SASL Authentifizierung, falls SASL angefragt aber vom Server nicht zur Verfügung gestellt wird; falls diese Option aktiviert ist hat sie nur dann Einfluss sofern bei der Option "sasl_fail" die Einstellung "reconnect" oder "disconnect" genutzt wird] -** Typ: boolesch -** Werte: on, off -** Standardwert: `+on+` - -* [[option_irc.network.send_unknown_commands]] *irc.network.send_unknown_commands* -** Beschreibung: pass:none[sendet unbekannte Befehle an den Server] -** Typ: boolesch -** Werte: on, off -** Standardwert: `+off+` - -* [[option_irc.network.whois_double_nick]] *irc.network.whois_double_nick* -** Beschreibung: pass:none[dupliziert den Nick, für den /whois Befehl (falls nur ein Nick angegeben wird), um die Idle-Zeit zu erhalten. Zum Beispiel: "/whois nick" wird als "whois nick nick" verschickt] -** Typ: boolesch -** Werte: on, off -** Standardwert: `+off+` - -* [[option_irc.server_default.addresses]] *irc.server_default.addresses* -** Beschreibung: pass:none[Liste von Hostname/Port oder IP/Port für Server (durch Komma getrennt) (Hinweis: Inhalt wird evaluiert, siehe /help eval; Serveroptionen sind mittels ${irc_server.xxx} evaluiert und ${server} wird durch den eigentlichen Servernamen ersetzt)] -** Typ: Zeichenkette -** Werte: beliebige Zeichenkette -** Standardwert: `+""+` - -* [[option_irc.server_default.anti_flood_prio_high]] *irc.server_default.anti_flood_prio_high* -** Beschreibung: pass:none[Anti-Flood für dringliche Inhalte: Zeit in Sekunden zwischen zwei Benutzernachrichten oder Befehlen die zum IRC Server versendet wurden (0 = Anti-Flood deaktivieren)] -** Typ: integer -** Werte: 0 .. 60 -** Standardwert: `+2+` - -* [[option_irc.server_default.anti_flood_prio_low]] *irc.server_default.anti_flood_prio_low* -** Beschreibung: pass:none[Anti-Flood für weniger dringliche Inhalte: Zeit in Sekunden zwischen zwei Benutzernachrichten die zum IRC Server versendet wurden. Beispiel: automatische CTCP Antworten (0 = Anti-Flood deaktivieren)] -** Typ: integer -** Werte: 0 .. 60 -** Standardwert: `+2+` - -* [[option_irc.server_default.autoconnect]] *irc.server_default.autoconnect* -** Beschreibung: pass:none[Beim Programmstart von WeeChat automatisch mit dem Server verbinden] -** Typ: boolesch -** Werte: on, off -** Standardwert: `+off+` - -* [[option_irc.server_default.autojoin]] *irc.server_default.autojoin* -** Beschreibung: pass:none[durch Kommata getrennte Liste von Kanälen, die beim Verbinden mit dem Server automatisch betreten werden (nachdem die Einstellungen command + delay ausgeführt wurden). Kanäle, die einen Schlüssel benötigen, müssen in der Auflistung als erstes aufgeführt werden. Die Schlüssel, zu den jeweiligen Kanälen, werden nach den Kanälen aufgeführt (eine Trennung von Kanälen und Schlüssel erfolgt mittels eines Leerzeichens. Schlüssel werden hintereinander auch durch Kommata voneinander getrennt) (Beispiel: "#channel1,#channel2,#channnel3 key1,key2", #channel1 und #channel2 sind durch jeweils einen Schlüssel, key1 und key2, geschützt) (Hinweis: Inhalt wird evaluiert, siehe /help eval; Serveroptionen sind mittels ${irc_server.xxx} evaluiert und ${server} wird durch den eigentlichen Servernamen ersetzt)] -** Typ: Zeichenkette -** Werte: beliebige Zeichenkette -** Standardwert: `+""+` - -* [[option_irc.server_default.autojoin_dynamic]] *irc.server_default.autojoin_dynamic* -** Beschreibung: pass:none[Setze automatisch die "autojoin"-Option entsprechend den Kanälen, die du manuell beitrittst bzw. verlässt, mit den Befehlen /join und /part] -** Typ: boolesch -** Werte: on, off -** Standardwert: `+off+` - -* [[option_irc.server_default.autoreconnect]] *irc.server_default.autoreconnect* -** Beschreibung: pass:none[Nach einer Trennung vom Server die Verbindung automatisch wiederherstellen] -** Typ: boolesch -** Werte: on, off -** Standardwert: `+on+` - -* [[option_irc.server_default.autoreconnect_delay]] *irc.server_default.autoreconnect_delay* -** Beschreibung: pass:none[Zeit (in Sekunden) die gewartet werden soll bevor ein neuer Verbindungsaufbau durchgeführt werden soll] -** Typ: integer -** Werte: 1 .. 65535 -** Standardwert: `+10+` - -* [[option_irc.server_default.autorejoin]] *irc.server_default.autorejoin* -** Beschreibung: pass:none[Kanäle automatisch betreten, falls man rausgeworfen wurde. Es kann eine lokale Buffer Variable für einen Kanal erstellt werden, diese lokale Variable wird vorrangig behandelt (Name der lokalen Variable: "autorejoin", Wert: "on" oder "off")] -** Typ: boolesch -** Werte: on, off -** Standardwert: `+off+` - -* [[option_irc.server_default.autorejoin_delay]] *irc.server_default.autorejoin_delay* -** Beschreibung: pass:none[Wartezeit, in Sekunden, die verstreichen soll bevor man den Kanal automatisch erneut betritt (nachdem man rausgeworfen wurde)] -** Typ: integer -** Werte: 0 .. 86400 -** Standardwert: `+30+` - -* [[option_irc.server_default.away_check]] *irc.server_default.away_check* -** Beschreibung: pass:none[überprüft die Abwesenheit (/away) der Nutzer, in dem angegebenen Intervall (in Minuten, 0 = nicht überprüfen)] -** Typ: integer -** Werte: 0 .. 10080 -** Standardwert: `+0+` - -* [[option_irc.server_default.away_check_max_nicks]] *irc.server_default.away_check_max_nicks* -** Beschreibung: pass:none[Die Abwesenheit von Nutzern in Kanälen wird nicht überprüft wenn die Anzahl der Nutzer höher ist, als der angegebene Wert (0 = unbegrenzte Anzahl an Nutzern im Kanal)] -** Typ: integer -** Werte: 0 .. 1000000 -** Standardwert: `+25+` - -* [[option_irc.server_default.capabilities]] *irc.server_default.capabilities* -** Beschreibung: pass:none[durch Kommata getrennte Liste von erweiterten Client-Fähigkeiten ("client capabilities"), welche vom Server angeboten und genutzt werden sollen (siehe /help cap um eine Liste von Fähigkeiten zu erhalten die von WeeChat unterstützt werden); "*" aktiviert standardmäßig alle Funktionen (die sowohl vom Server als auch von WeeChat unterstützt werden); Platzhalter "*" ist erlaubt; eine Fähigkeit, die mit "!" beginnt, wird ignoriert (Beispiel: "*,!account-*,!extended-join")] -** Typ: Zeichenkette -** Werte: beliebige Zeichenkette -** Standardwert: `+"*"+` - -* [[option_irc.server_default.charset_message]] *irc.server_default.charset_message* -** Beschreibung: pass:none[Teil der IRC Nachricht (empfangen oder gesendet) die zum Zielzeichensatz dekodiert/kodiert werden soll; message = die komplette IRC Nachricht (Standard), channel = beginnend mit dem Kanalnamen (sofern dieser gefunden wird, ansonsten Fallback auf text), text = beginnend mit dem Nachrichtentext (dieser Wert sollte ausprobiert werden, falls es Probleme bei der Kodierung des Kanalnamens geben sollte)] -** Typ: integer -** Werte: message, channel, text -** Standardwert: `+message+` - -* [[option_irc.server_default.command]] *irc.server_default.command* -** Beschreibung: pass:none[Befehl(e) welche nach einem Verbindungsaufbau zum Server und vor dem automatischem Betreten von Kanälen ausgeführt werden sollen (mehrere Befehle können durch ";" getrennt werden, will man ein Semikolon nutzen, schreibt man "\;", die Platzhalter $nick,$channel und $server werden durch den entsprechenden Wert ersetzt) (Hinweis: Inhalt wird evaluiert, siehe /help eval; Serveroptionen sind mittels ${irc_server.xxx} evaluiert und ${server} wird durch den eigentlichen Servernamen ersetzt)] -** Typ: Zeichenkette -** Werte: beliebige Zeichenkette -** Standardwert: `+""+` - -* [[option_irc.server_default.command_delay]] *irc.server_default.command_delay* -** Beschreibung: pass:none[Wartezeit (in Sekunden) nach Ausführung des Befehls und bevor Kanäle automatisch betreten werden (Beispiel: es wird eine gewisse Zeit gewartet, um eine Authentifizierung zu ermöglichen)] -** Typ: integer -** Werte: 0 .. 3600 -** Standardwert: `+0+` - -* [[option_irc.server_default.connection_timeout]] *irc.server_default.connection_timeout* -** Beschreibung: pass:none[Wartezeit (in Sekunden) zwischen einer TCP Verbindung mit dem Server und des Empfanges der "message 001" Nachricht. Falls die Wartezeit verstreichen sollte bevor die "message 001" Nachricht empfangen wurde dann wird WeeChat die Verbindung zum Server trennen] -** Typ: integer -** Werte: 1 .. 3600 -** Standardwert: `+60+` - -* [[option_irc.server_default.default_chantypes]] *irc.server_default.default_chantypes* -** Beschreibung: pass:none[Kanal-Typ-Präfix, die verwendet werden sollen, wenn der Server diese nicht in Nachricht 005 sendet (Standard ist "#&")] -** Typ: Zeichenkette -** Werte: beliebige Zeichenkette -** Standardwert: `+"#&"+` - -* [[option_irc.server_default.ipv6]] *irc.server_default.ipv6* -** Beschreibung: pass:none[bei der Kommunikation mit dem Server wird das IPv6 Protokoll genutzt (sollte IPv6 nicht verfügbar sein dann wird automatisch auf IPv4 umgeschaltet); wird die Funktion deaktiviert, dann wird ausschließlich IPv4 genutzt] -** Typ: boolesch -** Werte: on, off -** Standardwert: `+on+` - -* [[option_irc.server_default.local_hostname]] *irc.server_default.local_hostname* -** Beschreibung: pass:none[benutzerdefinierter lokaler Hostname bzw. IP-Adresse für den entsprechenden Server (optional). Falls kein Eintrag vorhanden sein sollte wird der lokale Hostname verwendet] -** Typ: Zeichenkette -** Werte: beliebige Zeichenkette -** Standardwert: `+""+` - -* [[option_irc.server_default.msg_kick]] *irc.server_default.msg_kick* -** Beschreibung: pass:none[Standardmitteilung einer kick-Nachricht, für die Befehle "/kick" und "/kickban" (Hinweis: Inhalt wird evaluiert, siehe /help eval; besondere Variablen ${nick} (eigener Nick), ${target} (betroffener Nick), ${channel} und ${server}, werden durch den entsprechenden Wert ersetzt)] -** Typ: Zeichenkette -** Werte: beliebige Zeichenkette -** Standardwert: `+""+` - -* [[option_irc.server_default.msg_part]] *irc.server_default.msg_part* -** Beschreibung: pass:none[Standardmitteilung einer part-Nachricht (/part) (Hinweis: Inhalt wird evaluiert, siehe /help eval; Variablen die genutzt werden können: ${nick}, ${channel} und ${server}; "%v" wird durch die genutzte WeeChat-Version ersetzt, sofern keine Variable vom Typ ${...} verwendet wird)] -** Typ: Zeichenkette -** Werte: beliebige Zeichenkette -** Standardwert: `+"WeeChat ${info:version}"+` - -* [[option_irc.server_default.msg_quit]] *irc.server_default.msg_quit* -** Beschreibung: pass:none[Standardmitteilung einer quit-Nachricht (Trennung vom Server) (Hinweis: Inhalt wird evaluiert, siehe /help eval; Variablen die genutzt werden können: ${nick}, ${channel} und ${server}; "%v" wird durch die genutzte WeeChat-Version ersetzt, sofern keine Variable vom Typ ${...} verwendet wird)] -** Typ: Zeichenkette -** Werte: beliebige Zeichenkette -** Standardwert: `+"WeeChat ${info:version}"+` - -* [[option_irc.server_default.nicks]] *irc.server_default.nicks* -** Beschreibung: pass:none[Nicknamen, die auf dem IRC-Server benutzt werden sollen (durch Kommatagetrennt) (Hinweis: Inhalt wird evaluiert, siehe /help eval; Serveroptionen sind mittels ${irc_server.xxx} evaluiert und ${server} wird durch den eigentlichen Servernamen ersetzt)] -** Typ: Zeichenkette -** Werte: beliebige Zeichenkette -** Standardwert: `+""+` - -* [[option_irc.server_default.nicks_alternate]] *irc.server_default.nicks_alternate* -** Beschreibung: pass:none[nutzt einen alternativen Nick, sofern alle voreingestellten Nicks am Server schon genutzt werden. Dazu wird das Zeichen "_" an den Nick angehangen, sofern der Nick nicht mehr als neun Zeichen besitzt. Andernfalls werden die beiden letzten Zeichen durch eine Zahl zwischen 1 und 99 ersetzt, bis ein freier Nick auf dem Server gefunden wird] -** Typ: boolesch -** Werte: on, off -** Standardwert: `+on+` - -* [[option_irc.server_default.notify]] *irc.server_default.notify* -** Beschreibung: pass:none[Liste mit Benachrichtigung für Server (diese Einstellung sollte nicht direkt verändert werden. Dazu sollte der Befehl /notify genutzt werden)] -** Typ: Zeichenkette -** Werte: beliebige Zeichenkette -** Standardwert: `+""+` - -* [[option_irc.server_default.password]] *irc.server_default.password* -** Beschreibung: pass:none[Passwort welches für den Server genutzt werden soll (Hinweis: Inhalt wird evaluiert, siehe /help eval; Serveroptionen sind mittels ${irc_server.xxx} evaluiert und ${server} wird durch den eigentlichen Servernamen ersetzt)] -** Typ: Zeichenkette -** Werte: beliebige Zeichenkette -** Standardwert: `+""+` - -* [[option_irc.server_default.proxy]] *irc.server_default.proxy* -** Beschreibung: pass:none[Name des Proxy für diesen Server (optional, Proxy muss mit dem Befehl /proxy angelegt werden)] -** Typ: Zeichenkette -** Werte: beliebige Zeichenkette -** Standardwert: `+""+` - -* [[option_irc.server_default.realname]] *irc.server_default.realname* -** Beschreibung: pass:none[Realname welcher für den Server genutzt werden soll (Hinweis: Inhalt wird evaluiert, siehe /help eval; Serveroptionen sind mittels ${irc_server.xxx} evaluiert und ${server} wird durch den eigentlichen Servernamen ersetzt)] -** Typ: Zeichenkette -** Werte: beliebige Zeichenkette -** Standardwert: `+""+` - -* [[option_irc.server_default.sasl_fail]] *irc.server_default.sasl_fail* -** Beschreibung: pass:none[auszuführende Aktion falls die SASL Authentifizierung fehlschlägt: "continue" ignoriert das Problem welches bei der Authentifizierung aufgetreten ist, "reconnect" versucht erneut eine Verbindung herzustellen, "disconnect" trennt die Verbindung zum Server (siehe Option irc.network.sasl_fail_unavailable)] -** Typ: integer -** Werte: continue, reconnect, disconnect -** Standardwert: `+reconnect+` - -* [[option_irc.server_default.sasl_key]] *irc.server_default.sasl_key* -** Beschreibung: pass:none[Datei mit privatem ECC-Schlüssel für den Mechanismus "ecdsa-nist256p-challenge" (Pfad ist evaluiert, siehe Funktion string_eval_path_home in der Plugin-API-Referenz)] -** Typ: Zeichenkette -** Werte: beliebige Zeichenkette -** Standardwert: `+""+` - -* [[option_irc.server_default.sasl_mechanism]] *irc.server_default.sasl_mechanism* -** Beschreibung: pass:none[Verfahren welches bei einer SASL Authentifizierung angewandt werden soll: "plain" Passwort wird im Klartext gesendet, "scram-sha-1" für SCRAM-Authentifizierung mit SHA-1-Digest-Algorithmus, "scram-sha-256" für SCRAM-Authenrifizierung mit SHA-256 Digest-Algorithmus, "scram-sha-512" für SCRAM-Authentifizierung mit SHA-512 Digest-Algorithmus, "ecdsa-nist256p-challenge" für öffentlich/private Schlüsselmethode, "external" ein SSL Zertifikat welches auf Client Seite vorliegt wird verwendet] -** Typ: integer -** Werte: plain, scram-sha-1, scram-sha-256, scram-sha-512, ecdsa-nist256p-challenge, external -** Standardwert: `+plain+` - -* [[option_irc.server_default.sasl_password]] *irc.server_default.sasl_password* -** Beschreibung: pass:none[Passwort für SASL Authentifikation; diese Option findet keine Anwendung falls der Mechanismus "ecdsa-nist256p-challenge" und "external" verwendet wird (Hinweis: Inhalt wird evaluiert, siehe /help eval; Serveroptionen sind mittels ${irc_server.xxx} evaluiert und ${server} wird durch den eigentlichen Servernamen ersetzt)] -** Typ: Zeichenkette -** Werte: beliebige Zeichenkette -** Standardwert: `+""+` - -* [[option_irc.server_default.sasl_timeout]] *irc.server_default.sasl_timeout* -** Beschreibung: pass:none[Zeitüberschreitung bis zum Abbruch der SASL Authentifizierung (in Sekunden)] -** Typ: integer -** Werte: 1 .. 3600 -** Standardwert: `+15+` - -* [[option_irc.server_default.sasl_username]] *irc.server_default.sasl_username* -** Beschreibung: pass:none[Username für SASL Authentifikation; diese Option wird nicht für den Mechanismus "external" verwendet (Hinweis: Inhalt wird evaluiert, siehe /help eval; Serveroptionen sind mittels ${irc_server.xxx} evaluiert und ${server} wird durch den eigentlichen Servernamen ersetzt)] -** Typ: Zeichenkette -** Werte: beliebige Zeichenkette -** Standardwert: `+""+` - -* [[option_irc.server_default.split_msg_max_length]] *irc.server_default.split_msg_max_length* -** Beschreibung: pass:none[ausgehende IRC Nachrichten werden bei der angegebene Anzahl an Zeichen getrennt; der Standardwert beträgt 512, dabei handelt es sich um einen empfohlenen Wert; ein Wert von 0 deaktiviert eine Trennung von Nachrichten (dies wird nicht empfohlen, außer Du weißt was Du tust); erlaubte Werte sind 0 oder jeder Wert zwischen 128 und 4096; diese Option sollte nur bei nicht-Standard IRC Servern verändert werden, zum Beispiel ein bitlbee Gateway] -** Typ: integer -** Werte: 0 .. 4096 -** Standardwert: `+512+` - -* [[option_irc.server_default.ssl]] *irc.server_default.ssl* -** Beschreibung: pass:none[Server über SSL ansprechen] -** Typ: boolesch -** Werte: on, off -** Standardwert: `+off+` - -* [[option_irc.server_default.ssl_cert]] *irc.server_default.ssl_cert* -** Beschreibung: pass:none[SSL-Zertifikatdatei zur automatischen Identifizierung Ihres Nick (Pfad ist evaluiert, siehe Funktion string_eval_path_home in der Plugin-API-Referenz)] -** Typ: Zeichenkette -** Werte: beliebige Zeichenkette -** Standardwert: `+""+` - -* [[option_irc.server_default.ssl_dhkey_size]] *irc.server_default.ssl_dhkey_size* -** Beschreibung: pass:none[Größe des Schlüssels der während des Diffie-Hellman-Schlüsselaustausches genutzt wurde] -** Typ: integer -** Werte: 0 .. 2147483647 -** Standardwert: `+2048+` - -* [[option_irc.server_default.ssl_fingerprint]] *irc.server_default.ssl_fingerprint* -** Beschreibung: pass:none[Fingerprint des Zertifikates welches als vertrauenswürdig eingestuft und für diesen Server akzeptiert wird; es sind nur hexadezimale Zeichen erlaubt (0-9, a-f): bei SHA-512 ist das Zertifikat 128 Zeichen lang, bei SHA-256 sind es 64 Zeichen, bei SHA-1 sind es 40 Zeichen (nicht empfohlen, da unsicher); mehrere Fingerprints können durch Kommata voneinander getrennt werden; wird diese Option genutzt, findet KEINE weitere Überprüfung der Zertifikate statt (Option "ssl_verify") (Hinweis: Inhalt wird evaluiert, siehe /help eval; Serveroptionen sind mittels ${irc_server.xxx} evaluiert und ${server} wird durch den eigentlichen Servernamen ersetzt)] -** Typ: Zeichenkette -** Werte: beliebige Zeichenkette -** Standardwert: `+""+` - -* [[option_irc.server_default.ssl_password]] *irc.server_default.ssl_password* -** Beschreibung: pass:none[Passwort für SSL Zertifikat des privaten Schlüssels, nur unter gnutls Version >= 3.1.0 (Hinweis: Inhalt wird evaluiert, siehe /help eval; Serveroptionen sind mittels ${irc_server.xxx} evaluiert und ${server} wird durch den eigentlichen Servernamen ersetzt)] -** Typ: Zeichenkette -** Werte: beliebige Zeichenkette -** Standardwert: `+""+` - -* [[option_irc.server_default.ssl_priorities]] *irc.server_default.ssl_priorities* -** Beschreibung: pass:none[Zeichenkette mit Prioritäten für gnutls (für die korrekte Syntax siehe gnutls Dokumentation unter Funktion gnutls_priority_init. Gebräuchliche Zeichenketten sind: "PERFORMANCE", "NORMAL", "SECURE128", "SECURE256", "EXPORT", "NONE")] -** Typ: Zeichenkette -** Werte: beliebige Zeichenkette -** Standardwert: `+"NORMAL:-VERS-SSL3.0"+` - -* [[option_irc.server_default.ssl_verify]] *irc.server_default.ssl_verify* -** Beschreibung: pass:none[überprüft ob die SSL-Verbindung vertrauenswürdig ist] -** Typ: boolesch -** Werte: on, off -** Standardwert: `+on+` - -* [[option_irc.server_default.usermode]] *irc.server_default.usermode* -** Beschreibung: pass:none[Usermode(s) der direkt nach der Verbindung zum Server gesetzt werden soll. Dies geschieht bevor Befehle für den Server ausgeführt und bevor Kanäle automatisch betreten werden; Beispiele: "+R" (um den Modus "R" zu setzen), "+R-i" (setzt den Modus "R" und entfernt den Modus "i"); siehe /help mode um den Befehlssatz angezeigt zu bekommen (Hinweis: Inhalt wird evaluiert, siehe /help eval; Serveroptionen sind mittels ${irc_server.xxx} evaluiert und ${server} wird durch den eigentlichen Servernamen ersetzt)] -** Typ: Zeichenkette -** Werte: beliebige Zeichenkette -** Standardwert: `+""+` - -* [[option_irc.server_default.username]] *irc.server_default.username* -** Beschreibung: pass:none[Username welcher für den Server genutzt werden soll (Hinweis: Inhalt wird evaluiert, siehe /help eval; Serveroptionen sind mittels ${irc_server.xxx} evaluiert und ${server} wird durch den eigentlichen Servernamen ersetzt)] -** Typ: Zeichenkette -** Werte: beliebige Zeichenkette -** Standardwert: `+""+` -// end::irc_options[] - -// tag::relay_options[] -* [[option_relay.color.client]] *relay.color.client* -** Beschreibung: pass:none[Textfarbe für Client-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: `+cyan+` - -* [[option_relay.color.status_active]] *relay.color.status_active* -** Beschreibung: pass:none[Textfarbe für Status: "Verbindung hergestellt"] -** 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_relay.color.status_auth_failed]] *relay.color.status_auth_failed* -** Beschreibung: pass:none[Textfarbe für Status: "Authentifizierung gescheitert"] -** 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_relay.color.status_connecting]] *relay.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: `+white+` - -* [[option_relay.color.status_disconnected]] *relay.color.status_disconnected* -** Beschreibung: pass:none[Textfarbe für Status: "Verbindung getrennt"] -** 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_relay.color.status_waiting_auth]] *relay.color.status_waiting_auth* -** Beschreibung: pass:none[Textfarbe für Status: "warte auf Authentifizierung"] -** 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_relay.color.text]] *relay.color.text* -** Beschreibung: pass:none[Textfarbe in Relay-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_relay.color.text_bg]] *relay.color.text_bg* -** Beschreibung: pass:none[Hintergrundfarbe in Relay-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_relay.color.text_selected]] *relay.color.text_selected* -** Beschreibung: pass:none[Textfarbe für selektierte Zeile in Relay-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_relay.irc.backlog_max_minutes]] *relay.irc.backlog_max_minutes* -** Beschreibung: pass:none[Zeitangabe, in Minuten, wie lange die Zeilen im Verlaufsspeicher für jeden IRC Kanal gehalten werden sollen (0 = unbegrenzt, Beispiele: 1440 = einen Tag, 10080 = eine Woche, 43200 = einen Monat, 525600 = ein Jahr)] -** Typ: integer -** Werte: 0 .. 2147483647 -** Standardwert: `+0+` - -* [[option_relay.irc.backlog_max_number]] *relay.irc.backlog_max_number* -** Beschreibung: pass:none[maximale Anzahl an Zeilen im Verlaufsspeicher. Dies gilt für jeden IRC Kanal (0: keine Zeilenbegrenzung)] -** Typ: integer -** Werte: 0 .. 2147483647 -** Standardwert: `+1024+` - -* [[option_relay.irc.backlog_since_last_disconnect]] *relay.irc.backlog_since_last_disconnect* -** Beschreibung: pass:none[Verlaufsspeicher anzeigen, beginnend mit dem Client der zuletzt beendet wurde] -** Typ: boolesch -** Werte: on, off -** Standardwert: `+on+` - -* [[option_relay.irc.backlog_since_last_message]] *relay.irc.backlog_since_last_message* -** Beschreibung: pass:none[Verlaufsspeicher anzeigen, beginnend mit Ihrer zuletzt geschriebenen Nachricht] -** Typ: boolesch -** Werte: on, off -** Standardwert: `+off+` - -* [[option_relay.irc.backlog_tags]] *relay.irc.backlog_tags* -** Beschreibung: pass:none[durch Kommata getrennte Liste von Nachrichten-Tags welche im Verlaufsspeicher von IRC Kanälen angezeigt werden (unterstützte Tags: "irc_join", "irc_part", "irc_quit", "irc_nick", "irc_privmsg"), "*" = alle unterstützten Tags] -** Typ: Zeichenkette -** Werte: beliebige Zeichenkette -** Standardwert: `+"irc_privmsg"+` - -* [[option_relay.irc.backlog_time_format]] *relay.irc.backlog_time_format* -** Beschreibung: pass:none[Format für die Zeitanzeige im Verlaufsspeicher (siehe man strftime für gültige Formate) (findet keine Anwendung wenn die Serverfunktion, "server-time", durch den Client aktiviert wurde, da die Zeitanzeige als irc-Tag gesendet wird); keine Zeichenkette = deaktiviert die Zeitanzeige im Verlaufsspeicher] -** Typ: Zeichenkette -** Werte: beliebige Zeichenkette -** Standardwert: `+"[%H:%M] "+` - -* [[option_relay.look.auto_open_buffer]] *relay.look.auto_open_buffer* -** Beschreibung: pass:none[öffnet automatisch einen Relay-Buffer, falls eine Verbindung zu einem neuen Client hergestellt wird] -** Typ: boolesch -** Werte: on, off -** Standardwert: `+on+` - -* [[option_relay.look.raw_messages]] *relay.look.raw_messages* -** Beschreibung: pass:none[Anzahl der IRC-RAW-Nachrichten die im Speicher gehalten werden sollen falls der RAW-Daten-Buffer geschlossen ist (die Nachrichten werden umgehend angezeigt sobald der RAW-Daten-Buffer geöffnet wird)] -** Typ: integer -** Werte: 0 .. 65535 -** Standardwert: `+256+` - -* [[option_relay.network.allow_empty_password]] *relay.network.allow_empty_password* -** Beschreibung: pass:none[erlaubt das kein Passwort für Relay genutzt wird (sollte ausschließlich für Testzwecke oder auf einem lokalen System genutzt werden)] -** Typ: boolesch -** Werte: on, off -** Standardwert: `+off+` - -* [[option_relay.network.allowed_ips]] *relay.network.allowed_ips* -** Beschreibung: pass:none[Erweiterter regulärer POSIX Ausdruck für IPs die von relay akzeptiert werden (Groß- und Kleinschreibung wird ignoriert. Um zwischen Groß- und Kleinschreibung zu unterscheiden muss die Zeichenkette mit "(?-i)" eingeleitet werden), Beispiele: "^(123\.45\.67\.89|192\.160\..*)$"] -** Typ: Zeichenkette -** Werte: beliebige Zeichenkette -** Standardwert: `+""+` - -* [[option_relay.network.auth_timeout]] *relay.network.auth_timeout* -** Beschreibung: pass:none[Zeitüberschreitung (in Sekunden) für die Clientauthentifizierung: Die Verbindung wird geschlossen, falls der Client nach dieser Verzögerung immer noch nicht authentifiziert ist und der Clientstatus auf "Authentifizierung fehlgeschlagen" gesetzt ist (0 = ewig warten)] -** Typ: integer -** Werte: 0 .. 2147483647 -** Standardwert: `+60+` - -* [[option_relay.network.bind_address]] *relay.network.bind_address* -** Beschreibung: pass:none[Adresse für Bind (falls nicht gesetzt ist eine Verbindung zu allen Interfaces möglich. Wird die Adresse "127.0.0.1" genutzt kann nur eine Verbindung mit dem lokalen Rechner hergestellt werden)] -** Typ: Zeichenkette -** Werte: beliebige Zeichenkette -** Standardwert: `+""+` - -* [[option_relay.network.clients_purge_delay]] *relay.network.clients_purge_delay* -** Beschreibung: pass:none[Wartezeit bis nicht verbundene Clients gelöscht werden (in Minuten, 0 = lösche Clients unmittelbar, -1 = niemals löschen)] -** Typ: integer -** Werte: -1 .. 43200 -** Standardwert: `+0+` - -* [[option_relay.network.compression]] *relay.network.compression* -** Beschreibung: pass:none[Komprimierung von Nachrichten, die mittels "weechat" Protokoll an Clients gesendet werden: 0 = Komprimierung deaktivieren, 1 = geringe Komprimierung / schnell ... 100 = beste Komprimierung / langsam; dieser Wert ist eine Prozentangabe, welcher für zlib nach 1-9 und für zstd nach 1-19 umgewandelt wird; der Standardwert wird empfohlen, denn er bietet einen guten Kompromiss zwischen Kompression und Geschwindigkeit] -** Typ: integer -** Werte: 0 .. 100 -** Standardwert: `+20+` - -* [[option_relay.network.ipv6]] *relay.network.ipv6* -** Beschreibung: pass:none[lauscht standardmäßig am IPv6 Socket (zusätzlich zu IPv4, welches als Standardprotokoll genutzt wird); mittels des Protokollnamens kann das IPv4 und IPv6 Protokoll, einzeln oder gemeinsam, erzwungen werden (siehe /help relay)] -** Typ: boolesch -** Werte: on, off -** Standardwert: `+on+` - -* [[option_relay.network.max_clients]] *relay.network.max_clients* -** Beschreibung: pass:none[maximale Anzahl an Clients die mit einem Port verbunden sein dürfen (0 = keine Begrenzung)] -** Typ: integer -** Werte: 0 .. 2147483647 -** Standardwert: `+5+` - -* [[option_relay.network.nonce_size]] *relay.network.nonce_size* -** Beschreibung: pass:none[Größe der Nonce (in Bytes), die generiert wird, wenn ein Client eine Verbindung herstellt; Der Client muss diese Nonce verwenden, die mit der Client-Nonce und dem Kennwort verknüpft ist, wenn das Kennwort im Befehl "init" des Weechat-Protokolls gehasht wird] -** Typ: integer -** Werte: 8 .. 128 -** Standardwert: `+16+` - -* [[option_relay.network.password]] *relay.network.password* -** Beschreibung: pass:none[Passwort wird von Clients benötigt um Zugriff auf dieses Relay zu erhalten (kein Eintrag bedeutet, dass kein Passwort benötigt wird, siehe Option relay.network.allow_empty_password) (Hinweis: Inhalt wird evaluiert, siehe /help eval)] -** Typ: Zeichenkette -** Werte: beliebige Zeichenkette -** Standardwert: `+""+` - -* [[option_relay.network.password_hash_algo]] *relay.network.password_hash_algo* -** Beschreibung: pass:none[durch Kommata getrennte Liste der Hash-Algorithmen, die für die Kennwortauthentifizierung im Weechat-Protokoll verwendet werden, unter diesen Werten: "plain" (Kennwort im Klartext, nicht gehasht), "sha256", "sha512", "pbkdf2 + sha256", "pbkdf2 + sha512" ), "*" bedeutet alle Algorithmen, ein Name, der mit "!" beginnt ist ein negativer Wert, um die Verwendung eines Algorithmus zu vermeiden. Ein Platzhalter "*" im Namen ist zulässig (Beispiele: "*", "pbkdf2 *", "*,! plain")] -** Typ: Zeichenkette -** Werte: beliebige Zeichenkette -** Standardwert: `+"*"+` - -* [[option_relay.network.password_hash_iterations]] *relay.network.password_hash_iterations* -** Beschreibung: pass:none[Anzahl der Iterationen, die im Weechat-Protokoll an den Client gesendet werden, wenn ein Hash-Passwort mit dem Algorithmus PBKDF2 zur Authentifizierung verwendet wird; Mehr Iterationen sind aus Sicherheitsgründen besser, aber langsamer zu berechnen. Diese Zahl sollte nicht zu hoch sein, wenn Ihre CPU langsam ist] -** Typ: integer -** Werte: 1 .. 1000000 -** Standardwert: `+100000+` - -* [[option_relay.network.ssl_cert_key]] *relay.network.ssl_cert_key* -** Beschreibung: pass:none[Datei mit SSL-Zertifikat und privatem Schlüssel (zum Bedienen von Clients mit SSL) (Pfad ist evaluiert, siehe Funktion string_eval_path_home in der Plugin-API-Referenz)] -** Typ: Zeichenkette -** Werte: beliebige Zeichenkette -** Standardwert: `+"${weechat_config_dir}/ssl/relay.pem"+` - -* [[option_relay.network.ssl_priorities]] *relay.network.ssl_priorities* -** Beschreibung: pass:none[Zeichenkette mit Prioritäten für gnutls (für die korrekte Syntax siehe gnutls Dokumentation unter Funktion gnutls_priority_init. Gebräuchliche Zeichenketten sind: "PERFORMANCE", "NORMAL", "SECURE128", "SECURE256", "EXPORT", "NONE")] -** Typ: Zeichenkette -** Werte: beliebige Zeichenkette -** Standardwert: `+"NORMAL:-VERS-SSL3.0"+` - -* [[option_relay.network.totp_secret]] *relay.network.totp_secret* -** Beschreibung: pass:none[geheime Zeichenkette für die Erstellung des Time-based One-Time Passwort (TOTP), base32 enkodiert (ausschließlich Buchstaben und Zahlen zwischen 2 und 7); dient im WeeChat-Protokoll zur Zwei-Faktor-Authentifizierung, ergänzend zum eigentlichen Passwort (eine nicht gesetzte Option bedeutet, das TOTP nicht benötigt wird) (Hinweis: Inhalt wird evaluiert, siehe /help eval)] -** Typ: Zeichenkette -** Werte: beliebige Zeichenkette -** Standardwert: `+""+` - -* [[option_relay.network.totp_window]] *relay.network.totp_window* -** Beschreibung: pass:none[Anzahl der Time-based One-Time Passwörter die vor und nach dem aktuellen Passwort akzeptiert werden: 0 = nur das aktuelle Passwort wird akzeptiert, 1 = akzeptiert ein Passwort vorher, das aktuelle und ein Passwort danach, 2 = akzeptiert zwei Passwörter vorher, das aktuelle und zwei Passwörter danach, ...; umso höher die genutzte Zahl umso unsicherer das Verfahren (0 oder 1 sind empfohlene Werte)] -** Typ: integer -** Werte: 0 .. 256 -** Standardwert: `+0+` - -* [[option_relay.network.websocket_allowed_origins]] *relay.network.websocket_allowed_origins* -** Beschreibung: pass:none[Erweiterter regulärer POSIX Ausdruck für Origins in WebSockets (Groß- und Kleinschreibung wird ignoriert. Um Groß- und Kleinschreibung zu unterscheiden kann "(?-i)" vorangestellt werden), Beispiel: ^https?://(www\.)?example\.(com|org)"] -** Typ: Zeichenkette -** Werte: beliebige Zeichenkette -** Standardwert: `+""+` - -* [[option_relay.weechat.commands]] *relay.weechat.commands* -** Beschreibung: pass:none[durch Kommata getrennte Liste von Befehlen die erlaubt bzw. verboten sind, wenn Daten (Text oder Befehl) vom Client empfangen werden; "*" bedeutet alle Befehle sind erlaubt, beginnt ein Befehl hingegen mit "!" wird die Auswahl umgekehrt und der Befehl wird nicht ausgeführt, ein Platzhalter "*" ist bei den Befehlen erlaubt; diese Option sollte verwendet werden, falls man befürchtet, dass der relay client kompromittiert werden kann (darüber können Befehle ausgeführt werden); Beispiel: "*,!exec,!quit" es sind alle Befehle erlaubt, außer /exec und /quit] -** Typ: Zeichenkette -** Werte: beliebige Zeichenkette -** 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] -** Typ: boolesch -** Werte: on, off -** Standardwert: `+off+` - -* [[option_ruby.look.eval_keep_context]] *ruby.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::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] -** 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_script.color.status_held]] *script.color.status_held* -** Beschreibung: pass:none[Farbe in der der Status "halten" ("H") 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+` - -* [[option_script.color.status_installed]] *script.color.status_installed* -** Beschreibung: pass:none[Farbe in der der Status "installiert" ("i") 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: `+lightcyan+` - -* [[option_script.color.status_obsolete]] *script.color.status_obsolete* -** Beschreibung: pass:none[Farbe in der der Status "obsolete" ("N") 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: `+lightmagenta+` - -* [[option_script.color.status_popular]] *script.color.status_popular* -** Beschreibung: pass:none[Farbe in der der Status "empfohlen" ("*") 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: `+yellow+` - -* [[option_script.color.status_running]] *script.color.status_running* -** Beschreibung: pass:none[Farbe in der der Status "laufend" ("r") 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: `+lightgreen+` - -* [[option_script.color.status_unknown]] *script.color.status_unknown* -** Beschreibung: pass:none[Farbe in der der Status "unbekannt" ("?") 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: `+lightred+` - -* [[option_script.color.text]] *script.color.text* -** Beschreibung: pass:none[Textfarbe im Skript-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_script.color.text_bg]] *script.color.text_bg* -** Beschreibung: pass:none[Hintergrundfarbe im Skript-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_script.color.text_bg_selected]] *script.color.text_bg_selected* -** Beschreibung: pass:none[Hintergrundfarbe] -** 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_script.color.text_date]] *script.color.text_date* -** Beschreibung: pass:none[Textfarbe für das Datum im Skript-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_script.color.text_date_selected]] *script.color.text_date_selected* -** Beschreibung: pass:none[Textfarbe für das Datum, im Skript Buffer, wenn die 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: `+white+` - -* [[option_script.color.text_delimiters]] *script.color.text_delimiters* -** Beschreibung: pass:none[Textfarbe für das Trennzeichen im Skript-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_script.color.text_description]] *script.color.text_description* -** Beschreibung: pass:none[Textfarbe für die Beschreibung im Skript-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_script.color.text_description_selected]] *script.color.text_description_selected* -** Beschreibung: pass:none[Textfarbe für die Beschreibung des Skriptes, im Skript Buffer, wenn die 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: `+white+` - -* [[option_script.color.text_extension]] *script.color.text_extension* -** Beschreibung: pass:none[Textfarbe für die Erweiterung im Skript-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_script.color.text_extension_selected]] *script.color.text_extension_selected* -** Beschreibung: pass:none[Textfarbe für die Dateierweiterung, im Skript Buffer, wenn die 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: `+white+` - -* [[option_script.color.text_name]] *script.color.text_name* -** Beschreibung: pass:none[Textfarbe für den Namen des Skriptes im Skript-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_script.color.text_name_selected]] *script.color.text_name_selected* -** Beschreibung: pass:none[Textfarbe für den Namen des Skriptes, im Skript Buffer, wenn die 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: `+lightcyan+` - -* [[option_script.color.text_selected]] *script.color.text_selected* -** Beschreibung: pass:none[Textfarbe für den Auswahlbalken im Skript-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_script.color.text_tags]] *script.color.text_tags* -** Beschreibung: pass:none[Textfarbe für die Schlagwörter im Skript-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: `+brown+` - -* [[option_script.color.text_tags_selected]] *script.color.text_tags_selected* -** Beschreibung: pass:none[Textfarbe für die Schlagwörter, im Skript Buffer, wenn die 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: `+yellow+` - -* [[option_script.color.text_version]] *script.color.text_version* -** Beschreibung: pass:none[Textfarbe für die Version im Skript-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: `+magenta+` - -* [[option_script.color.text_version_loaded]] *script.color.text_version_loaded* -** Beschreibung: pass:none[Textfarbe für die geladene Version im Skript-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_script.color.text_version_loaded_selected]] *script.color.text_version_loaded_selected* -** Beschreibung: pass:none[Textfarbe für die Versionsanzeige des geladenen Skriptes, im Skript Buffer, wenn die 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: `+white+` - -* [[option_script.color.text_version_selected]] *script.color.text_version_selected* -** Beschreibung: pass:none[Textfarbe für die Version des Skriptes, im Skript Buffer, wenn die 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: `+lightmagenta+` - -* [[option_script.look.columns]] *script.look.columns* -** Beschreibung: pass:none[Format in welchem die Spalten im Skript-Buffer dargestellt werden sollen. Es können folgende Spaltenbezeichnungen genutzt werden: %a=Autor, %d=Beschreibung, %D=Skript hinzugefügt, %e=Dateierweiterung, %l=Programmiersprache, %L=Lizenz, %n=Skriptname, mit Dateierweiterung, %N=Skriptname, %r=Voraussetzungen, %s=Status, %t=Schlagwörter, %u=Datum der letzten Überarbeitung, %v=Version, %V=installierte Version, %w=min_WeeChat_Version, %W=max_WeeChat_Version)] -** Typ: Zeichenkette -** Werte: beliebige Zeichenkette -** Standardwert: `+"%s %n %V %v %u | %d | %t"+` - -* [[option_script.look.diff_color]] *script.look.diff_color* -** Beschreibung: pass:none[Unterschiede in den zwei Skripten werden farblich hervorgehoben] -** Typ: boolesch -** Werte: on, off -** Standardwert: `+on+` - -* [[option_script.look.diff_command]] *script.look.diff_command* -** Beschreibung: pass:none[Befehl der genutzt werden soll um die Unterschiede zwischen dem installierten Skript und dem Skript, welches im offiziellem Bereich der Homepage bereitgestellt wird, darzustellen ("auto" = automatische Erkennung des Diff-Befehls (git oder diff), leerer Wert = Diff ist deaktiviert, externer Befehl = Name des Befehls, zum Beispiel "diff")] -** Typ: Zeichenkette -** Werte: beliebige Zeichenkette -** Standardwert: `+"auto"+` - -* [[option_script.look.display_source]] *script.look.display_source* -** Beschreibung: pass:none[Zeigt den Quellcode des Skriptes, mit weiteren Informationen zu dem Skript, im Buffer an (Skript wird dazu temporär in eine Datei gesichert)] -** Typ: boolesch -** Werte: on, off -** Standardwert: `+on+` - -* [[option_script.look.quiet_actions]] *script.look.quiet_actions* -** Beschreibung: pass:none[diese Einstellung stellt einen stummen Modus für den Skripten-Buffer zu Verfügung: Es werden keine Nachrichten im Core-Buffer ausgegeben, wenn Skripten installiert/entfernt/gestartet/beendet werden (lediglich Fehler werden ausgegeben)] -** Typ: boolesch -** Werte: on, off -** Standardwert: `+on+` - -* [[option_script.look.sort]] *script.look.sort* -** Beschreibung: pass:none[Standardsortierung für Skripten im Skript Buffer: durch Kommata getrennte Liste von Bezeichnern: a=Autor, A=automatisch geladen, d=Datum wann das Skript hinzugefügt wurde, e=Dateierweiterung, i=installiert, l=Programmiersprache, n=Skriptname, o=obsolete, p=empfohlen, r=Skript wird ausgeführt, u=Datum der letzten Überarbeitung; mit Hilfe des Zeichens "-", vor dem entsprechenden Bezeichner, kann die Darstellung umgekehrt werden. Beispiel: "i,u": installierte Skripten werden zuerst dargestellt, sortiert nach dem Datum ihrer letzten Überarbeitung] -** Typ: Zeichenkette -** Werte: beliebige Zeichenkette -** Standardwert: `+"i,p,n"+` - -* [[option_script.look.translate_description]] *script.look.translate_description* -** Beschreibung: pass:none[für die Beschreibung der Skripten wird die Muttersprache verwendet (sollte keine Übersetzung in der eigenen Sprache verfügbar sein, wird auf die englische Beschreibung zurückgegriffen)] -** Typ: boolesch -** Werte: on, off -** Standardwert: `+on+` - -* [[option_script.look.use_keys]] *script.look.use_keys* -** Beschreibung: pass:none[Um Tastenkurzbefehle im Skript-Buffer direkt nutzen zu können (zum Beispiel: alt+i = installieren, alt+r = entfernen, ...), muss diese Einstellung aktiviert werden. Andernfalls können Aktionen nur über die Eingabezeile durchgeführt werden: i,r...] -** Typ: boolesch -** Werte: on, off -** Standardwert: `+on+` - -* [[option_script.scripts.autoload]] *script.scripts.autoload* -** Beschreibung: pass:none[autoload Skripten installiert (erstellt einen Link im "autoload" Verzeichnis zum Skript im übergeordneten Verzeichnis)] -** Typ: boolesch -** Werte: on, off -** Standardwert: `+on+` - -* [[option_script.scripts.cache_expire]] *script.scripts.cache_expire* -** Beschreibung: pass:none[Ablaufdatum des lokalen Caches, in Minuten (-1 = ohne Ablaufdatum, 0 = umgehend)] -** Typ: integer -** Werte: -1 .. 525600 -** Standardwert: `+1440+` - -* [[option_script.scripts.download_enabled]] *script.scripts.download_enabled* -** Beschreibung: pass:none[Aktivieren Sie den Download von Dateien aus dem Skript-Repository, wenn der Befehl /script verwendet wird (Liste der Skripten und Skripten selbst). Die Liste der Skripten wird von der in der Option script.scripts.url angegebenen URL heruntergeladen. WeeChat lädt manchmal die Liste der Skripten erneut herunter, wenn Sie den Befehl /script verwenden, auch wenn Sie kein Skript installieren] -** Typ: boolesch -** Werte: on, off -** Standardwert: `+off+` - -* [[option_script.scripts.download_timeout]] *script.scripts.download_timeout* -** Beschreibung: pass:none[Zeitüberschreitung (in Sekunden) beim herunterladen von Skripten und der Skriptliste] -** Typ: integer -** Werte: 1 .. 3600 -** Standardwert: `+30+` - -* [[option_script.scripts.hold]] *script.scripts.hold* -** Beschreibung: pass:none[Skripten welche "gehalten" werden sollen. Dies ist eine durch Kommata getrennte Liste von Skripten die weder aktualisiert noch entfernt werden können. Zum Beispiel: "go.py, urlserver.py"] -** Typ: Zeichenkette -** Werte: beliebige Zeichenkette -** Standardwert: `+""+` - -* [[option_script.scripts.path]] *script.scripts.path* -** Beschreibung: pass:none[lokales Cache-Verzeichnis für Skripten (Pfad ist evaluiert, siehe Funktion string_eval_path_home in der Plugin-API-Referenz)] -** Typ: Zeichenkette -** Werte: beliebige Zeichenkette -** Standardwert: `+"${weechat_cache_dir}/script"+` - -* [[option_script.scripts.url]] *script.scripts.url* -** Beschreibung: pass:none[URL für Datei mit der Auflistung aller Skripten] -** Typ: Zeichenkette -** Werte: beliebige Zeichenkette -** 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+` - -* [[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_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: `+default+` - -* [[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_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_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: `+brown+` - -* [[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: `+yellow+` - -* [[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: `+white+` - -* [[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: `+white+` - -* [[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: `+default+` - -* [[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: `+white+` - -* [[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: `+darkgray+` - -* [[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_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: `+cyan+` - -* [[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: `+lightcyan+` - -* [[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: `+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)] -** 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)] -** 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+` - -* [[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: `+red+` - -* [[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: `+brown+` - -* [[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_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: `+default+` - -* [[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: `+white+` - -* [[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: `+default+` - -* [[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: `+white+` - -* [[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: `+default+` - -* [[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: `+brown+` - -* [[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: `+yellow+` - -* [[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: `+white+` - -* [[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: `+default+` - -* [[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: `+brown+` - -* [[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: `+yellow+` - -* [[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: `+white+` - -* [[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: `+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] -** 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_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: `+cyan+` - -* [[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: `+lightcyan+` - -* [[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: `+darkgray+` - -* [[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: `+default+` - -* [[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_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: `+default+` - -* [[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_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: `+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] -** 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] -** 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.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_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: `+white+` - -* [[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: `+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] -** 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_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_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: `+lightgreen+` - -* [[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: `+white+` - -* [[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: `+green+` - -* [[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: `+lightgreen+` - -* [[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: `+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] -** 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.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: `+cyan+` - -* [[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: `+brown+` - -* [[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: `+yellow+` - -* [[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: `+lightcyan+` - -* [[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: `+magenta+` - -* [[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: `+lightmagenta+` - -* [[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: `+"# ${description2}"+` - -* [[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: `+"/set ${name} ${quoted_value}"+` - -* [[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: `+"/unset ${name}"+` - -* [[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: `+""+` - -* [[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: `+"${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* -** 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: `+"*"+` - -* [[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: `+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] -** Typ: Zeichenkette -** Werte: beliebige Zeichenkette -** Standardwert: `+"${count} >= 1"+` - -* [[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_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 .. 2 -** Standardwert: `+1+` - -* [[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: `+"*"+` - -* [[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 .. 100 -** 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.*)] -** 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_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: `+" "+` - -* [[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_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_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: `+off+` -// end::fset_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 [[;...]] addcompletion [[;...]] del [...] + rename 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,6 +3,2264 @@ // DO NOT EDIT BY HAND! // +// 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},"+` + +* [[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+` + +* [[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_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_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+` + +* [[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_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] +** type: integer +** values: 1 .. 3 +** default value: `+1+` +// end::buflist_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[] + +// 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: `+lightred+` + +* [[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: `+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[] + +// 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)] +** type: string +** values: any string +** default value: `+"${weechat_runtime_dir}/weechat_fifo_${info:pid}"+` +// end::fifo_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+` + +* [[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_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: `+default+` + +* [[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_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_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: `+brown+` + +* [[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: `+yellow+` + +* [[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: `+white+` + +* [[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: `+white+` + +* [[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: `+default+` + +* [[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: `+white+` + +* [[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: `+darkgray+` + +* [[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_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: `+cyan+` + +* [[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: `+lightcyan+` + +* [[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: `+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)] +** 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)] +** 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+` + +* [[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: `+red+` + +* [[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: `+brown+` + +* [[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_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: `+default+` + +* [[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: `+white+` + +* [[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: `+default+` + +* [[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: `+white+` + +* [[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: `+default+` + +* [[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: `+brown+` + +* [[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: `+yellow+` + +* [[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: `+white+` + +* [[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: `+default+` + +* [[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: `+brown+` + +* [[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: `+yellow+` + +* [[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: `+white+` + +* [[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: `+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] +** 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_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: `+cyan+` + +* [[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: `+lightcyan+` + +* [[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: `+darkgray+` + +* [[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: `+default+` + +* [[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_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: `+default+` + +* [[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_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: `+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] +** 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] +** 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.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_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: `+white+` + +* [[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: `+cyan+` + +* [[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: `+lightcyan+` + +* [[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_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: `+lightgreen+` + +* [[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: `+white+` + +* [[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: `+green+` + +* [[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: `+lightgreen+` + +* [[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: `+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] +** 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.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: `+cyan+` + +* [[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: `+brown+` + +* [[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: `+yellow+` + +* [[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: `+lightcyan+` + +* [[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: `+magenta+` + +* [[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: `+lightmagenta+` + +* [[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: `+"# ${description2}"+` + +* [[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: `+"/set ${name} ${quoted_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)] +** type: string +** values: any string +** default value: `+"/unset ${name}"+` + +* [[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: `+""+` + +* [[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: `+"${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* +** 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: `+"*"+` + +* [[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: `+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] +** type: string +** values: any string +** default value: `+"${count} >= 1"+` + +* [[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_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 .. 2 +** default value: `+1+` + +* [[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: `+"*"+` + +* [[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 .. 100 +** default value: `+10+` + +* [[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_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_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: `+" "+` + +* [[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_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_fset.look.use_mute]] *fset.look.use_mute* +** description: pass:none[use /mute command to set options] +** type: boolean +** values: on, off +** default value: `+off+` +// end::fset_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::irc_options[] +* [[option_irc.color.input_nick]] *irc.color.input_nick* +** description: pass:none[color for nick in 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: `+lightcyan+` + +* [[option_irc.color.item_channel_modes]] *irc.color.item_channel_modes* +** description: pass:none[color for channel modes, near channel 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+` + +* [[option_irc.color.item_lag_counting]] *irc.color.item_lag_counting* +** description: pass:none[color for lag indicator, when counting (pong not received from server, lag is increasing)] +** 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_irc.color.item_lag_finished]] *irc.color.item_lag_finished* +** description: pass:none[color for lag indicator, when pong has been received from server] +** 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_irc.color.item_nick_modes]] *irc.color.item_nick_modes* +** description: pass:none[color for nick modes in bar item "input_prompt"] +** 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_irc.color.item_tls_version_deprecated]] *irc.color.item_tls_version_deprecated* +** description: pass:none[color for deprecated TLS versions in bar item "tls_version"] +** 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_irc.color.item_tls_version_insecure]] *irc.color.item_tls_version_insecure* +** description: pass:none[color for insecure TLS versions in bar item "tls_version"] +** 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_irc.color.item_tls_version_ok]] *irc.color.item_tls_version_ok* +** description: pass:none[color for higher supported TLS version in bar item "tls_version"] +** 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_irc.color.message_account]] *irc.color.message_account* +** description: pass:none[color for text in account messages] +** 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_irc.color.message_chghost]] *irc.color.message_chghost* +** description: pass:none[color for text in "chghost" messages] +** 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_irc.color.message_join]] *irc.color.message_join* +** description: pass:none[color for text in join messages] +** 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_irc.color.message_kick]] *irc.color.message_kick* +** description: pass:none[color for text in kick/kill messages] +** 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_irc.color.message_quit]] *irc.color.message_quit* +** description: pass:none[color for text in part/quit messages] +** 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_irc.color.message_setname]] *irc.color.message_setname* +** description: pass:none[color for text in "setname" messages] +** 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_irc.color.mirc_remap]] *irc.color.mirc_remap* +** description: pass:none[remap mirc colors in messages using a hashtable: keys are "fg,bg" as integers between -1 (not specified) and 15, values are WeeChat color names or numbers (format is: "1,-1:color1;2,7:color2"), example: "1,-1:darkgray;1,2:white,blue" to remap black to "darkgray" and black on blue to "white,blue"; default WeeChat colors for IRC codes: 0=white, 1=black, 2=blue, 3=green, 4=lightred, 5=red, 6=magenta, 7=brown, 8=yellow, 9=lightgreen, 10=cyan, 11=lightcyan, 12=lightblue, 13=lightmagenta, 14=darkgray, 15=gray] +** type: string +** values: any string +** default value: `+"1,-1:darkgray"+` + +* [[option_irc.color.nick_prefixes]] *irc.color.nick_prefixes* +** description: pass:none[color for nick prefixes using mode char (o=op, h=halfop, v=voice, ..), format is: "o:color1;h:color2;v:color3" (if a mode is not found, WeeChat will try with next modes received from server ("PREFIX"); a special mode "*" can be used as default color if no mode has been found in list)] +** type: string +** values: any string +** default value: `+"y:lightred;q:lightred;a:lightcyan;o:lightgreen;h:lightmagenta;v:yellow;*:lightblue"+` + +* [[option_irc.color.notice]] *irc.color.notice* +** description: pass:none[color for text "Notice" in notices] +** 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_irc.color.reason_kick]] *irc.color.reason_kick* +** description: pass:none[color for reason in kick/kill messages] +** 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_irc.color.reason_quit]] *irc.color.reason_quit* +** description: pass:none[color for reason in part/quit messages] +** 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_irc.color.topic_current]] *irc.color.topic_current* +** description: pass:none[color for current channel topic (when joining a channel or using /topic)] +** 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_irc.color.topic_new]] *irc.color.topic_new* +** description: pass:none[color for new channel topic (when topic 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: `+white+` + +* [[option_irc.color.topic_old]] *irc.color.topic_old* +** description: pass:none[color for old channel topic (when topic 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+` + +* [[option_irc.look.buffer_open_before_autojoin]] *irc.look.buffer_open_before_autojoin* +** description: pass:none[open channel buffer before the JOIN is received from server when it is auto joined (with server option "autojoin"); this is useful to open channels with always the same buffer numbers on startup] +** type: boolean +** values: on, off +** default value: `+on+` + +* [[option_irc.look.buffer_open_before_join]] *irc.look.buffer_open_before_join* +** description: pass:none[open channel buffer before the JOIN is received from server when it is manually joined (with /join command)] +** type: boolean +** values: on, off +** default value: `+off+` + +* [[option_irc.look.buffer_switch_autojoin]] *irc.look.buffer_switch_autojoin* +** description: pass:none[auto switch to channel buffer when it is auto joined (with server option "autojoin")] +** type: boolean +** values: on, off +** default value: `+on+` + +* [[option_irc.look.buffer_switch_join]] *irc.look.buffer_switch_join* +** description: pass:none[auto switch to channel buffer when it is manually joined (with /join command)] +** type: boolean +** values: on, off +** default value: `+on+` + +* [[option_irc.look.color_nicks_in_names]] *irc.look.color_nicks_in_names* +** description: pass:none[use nick color in output of /names (or list of nicks displayed when joining a channel)] +** type: boolean +** values: on, off +** default value: `+off+` + +* [[option_irc.look.color_nicks_in_nicklist]] *irc.look.color_nicks_in_nicklist* +** description: pass:none[use nick color in nicklist] +** type: boolean +** values: on, off +** default value: `+off+` + +* [[option_irc.look.color_nicks_in_server_messages]] *irc.look.color_nicks_in_server_messages* +** description: pass:none[use nick color in messages from server] +** type: boolean +** values: on, off +** default value: `+on+` + +* [[option_irc.look.color_pv_nick_like_channel]] *irc.look.color_pv_nick_like_channel* +** description: pass:none[use same nick color for channel and private] +** type: boolean +** values: on, off +** default value: `+on+` + +* [[option_irc.look.ctcp_time_format]] *irc.look.ctcp_time_format* +** description: pass:none[time format used in answer to message CTCP TIME (see man strftime for date/time specifiers)] +** type: string +** values: any string +** default value: `+"%a, %d %b %Y %T %z"+` + +* [[option_irc.look.display_account_message]] *irc.look.display_account_message* +** description: pass:none[display ACCOUNT messages received when capability account-notify is enabled] +** type: boolean +** values: on, off +** default value: `+on+` + +* [[option_irc.look.display_away]] *irc.look.display_away* +** description: pass:none[display message when (un)marking as away (off: do not display/send anything, local: display locally, channel: send action to channels)] +** type: integer +** values: off, local, channel +** default value: `+local+` + +* [[option_irc.look.display_ctcp_blocked]] *irc.look.display_ctcp_blocked* +** description: pass:none[display CTCP message even if it is blocked] +** type: boolean +** values: on, off +** default value: `+on+` + +* [[option_irc.look.display_ctcp_reply]] *irc.look.display_ctcp_reply* +** description: pass:none[display CTCP reply sent by WeeChat] +** type: boolean +** values: on, off +** default value: `+on+` + +* [[option_irc.look.display_ctcp_unknown]] *irc.look.display_ctcp_unknown* +** description: pass:none[display CTCP message even if it is unknown CTCP] +** type: boolean +** values: on, off +** default value: `+on+` + +* [[option_irc.look.display_extended_join]] *irc.look.display_extended_join* +** description: pass:none[display extra information in the JOIN messages: account name and real name (capability extended-join must be enabled)] +** type: boolean +** values: on, off +** default value: `+on+` + +* [[option_irc.look.display_host_join]] *irc.look.display_host_join* +** description: pass:none[display host in join messages] +** type: boolean +** values: on, off +** default value: `+on+` + +* [[option_irc.look.display_host_join_local]] *irc.look.display_host_join_local* +** description: pass:none[display host in join messages from local client] +** type: boolean +** values: on, off +** default value: `+on+` + +* [[option_irc.look.display_host_quit]] *irc.look.display_host_quit* +** description: pass:none[display host in part/quit messages] +** type: boolean +** values: on, off +** default value: `+on+` + +* [[option_irc.look.display_join_message]] *irc.look.display_join_message* +** description: pass:none[comma-separated list of messages to display after joining a channel: 324 = channel modes, 329 = channel creation date, 332 = topic, 333 = nick/date for topic, 353 = names on channel, 366 = names count] +** type: string +** values: any string +** default value: `+"329,332,333,366"+` + +* [[option_irc.look.display_old_topic]] *irc.look.display_old_topic* +** description: pass:none[display old topic when channel topic is changed] +** type: boolean +** values: on, off +** default value: `+on+` + +* [[option_irc.look.display_pv_away_once]] *irc.look.display_pv_away_once* +** description: pass:none[display remote away message only once in private] +** type: boolean +** values: on, off +** default value: `+on+` + +* [[option_irc.look.display_pv_back]] *irc.look.display_pv_back* +** description: pass:none[display a message in private when user is back (after quit on server)] +** type: boolean +** values: on, off +** default value: `+on+` + +* [[option_irc.look.display_pv_nick_change]] *irc.look.display_pv_nick_change* +** description: pass:none[display nick change in private] +** type: boolean +** values: on, off +** default value: `+on+` + +* [[option_irc.look.display_pv_warning_address]] *irc.look.display_pv_warning_address* +** description: pass:none[display a warning in private buffer if the address of remote nick has changed; this option is disabled by default because servers like bitlbee are causing this warning to be displayed when it is not expected (the address of remote nick changes multiple times on login)] +** type: boolean +** values: on, off +** default value: `+off+` + +* [[option_irc.look.highlight_channel]] *irc.look.highlight_channel* +** description: pass:none[comma separated list of words to highlight in channel buffers (case insensitive, use "(?-i)" at beginning of words to make them case sensitive; special variables $nick, $channel and $server are replaced by their values), these words are added to buffer property "highlight_words" only when buffer is created (it does not affect current buffers), an empty string disables default highlight on nick, examples: "$nick", "(?-i)$nick"] +** type: string +** values: any string +** default value: `+"$nick"+` + +* [[option_irc.look.highlight_pv]] *irc.look.highlight_pv* +** description: pass:none[comma separated list of words to highlight in private buffers (case insensitive, use "(?-i)" at beginning of words to make them case sensitive; special variables $nick, $channel and $server are replaced by their values), these words are added to buffer property "highlight_words" only when buffer is created (it does not affect current buffers), an empty string disables default highlight on nick, examples: "$nick", "(?-i)$nick"] +** type: string +** values: any string +** default value: `+"$nick"+` + +* [[option_irc.look.highlight_server]] *irc.look.highlight_server* +** description: pass:none[comma separated list of words to highlight in server buffers (case insensitive, use "(?-i)" at beginning of words to make them case sensitive; special variables $nick, $channel and $server are replaced by their values), these words are added to buffer property "highlight_words" only when buffer is created (it does not affect current buffers), an empty string disables default highlight on nick, examples: "$nick", "(?-i)$nick"] +** type: string +** values: any string +** default value: `+"$nick"+` + +* [[option_irc.look.highlight_tags_restrict]] *irc.look.highlight_tags_restrict* +** description: pass:none[restrict highlights to these tags on irc buffers (to have highlight on user messages but not server messages); tags must be separated by a comma and "+" can be used to make a logical "and" between tags; wildcard "*" is allowed in tags; an empty value allows highlight on any tag] +** type: string +** values: any string +** default value: `+"irc_privmsg,irc_notice"+` + +* [[option_irc.look.item_channel_modes_hide_args]] *irc.look.item_channel_modes_hide_args* +** description: pass:none[hide channel modes arguments if at least one of these modes is in channel modes ("*" to always hide all arguments, empty value to never hide arguments); example: "kf" to hide arguments if "k" or "f" are in channel modes] +** type: string +** values: any string +** default value: `+"k"+` + +* [[option_irc.look.item_display_server]] *irc.look.item_display_server* +** description: pass:none[name of bar item where IRC server is displayed (for status bar)] +** type: integer +** values: buffer_plugin, buffer_name +** default value: `+buffer_plugin+` + +* [[option_irc.look.item_nick_modes]] *irc.look.item_nick_modes* +** description: pass:none[display nick modes in bar item "input_prompt"] +** type: boolean +** values: on, off +** default value: `+on+` + +* [[option_irc.look.item_nick_prefix]] *irc.look.item_nick_prefix* +** description: pass:none[display nick prefix in bar item "input_prompt"] +** type: boolean +** values: on, off +** default value: `+on+` + +* [[option_irc.look.join_auto_add_chantype]] *irc.look.join_auto_add_chantype* +** description: pass:none[automatically add channel type in front of channel name on command /join if the channel name does not start with a valid channel type for the server; for example: "/join weechat" will in fact send: "/join #weechat"] +** type: boolean +** values: on, off +** default value: `+off+` + +* [[option_irc.look.msgbuffer_fallback]] *irc.look.msgbuffer_fallback* +** description: pass:none[default target buffer for msgbuffer options when target is private and that private buffer is not found] +** type: integer +** values: current, server +** default value: `+current+` + +* [[option_irc.look.new_channel_position]] *irc.look.new_channel_position* +** description: pass:none[force position of new channel in list of buffers (none = default position (should be last buffer), next = current buffer + 1, near_server = after last channel/pv of server)] +** type: integer +** values: none, next, near_server +** default value: `+none+` + +* [[option_irc.look.new_pv_position]] *irc.look.new_pv_position* +** description: pass:none[force position of new private in list of buffers (none = default position (should be last buffer), next = current buffer + 1, near_server = after last channel/pv of server)] +** type: integer +** values: none, next, near_server +** default value: `+none+` + +* [[option_irc.look.nick_completion_smart]] *irc.look.nick_completion_smart* +** description: pass:none[smart completion for nicks (completes first with last speakers): speakers = all speakers (including highlights), speakers_highlights = only speakers with highlight] +** type: integer +** values: off, speakers, speakers_highlights +** default value: `+speakers+` + +* [[option_irc.look.nick_mode]] *irc.look.nick_mode* +** description: pass:none[display nick mode (op, voice, ...) before nick (none = never, prefix = in prefix only (default), action = in action messages only, both = prefix + action messages)] +** type: integer +** values: none, prefix, action, both +** default value: `+prefix+` + +* [[option_irc.look.nick_mode_empty]] *irc.look.nick_mode_empty* +** description: pass:none[display a space if nick mode is enabled but nick has no mode (not op, voice, ...)] +** type: boolean +** values: on, off +** default value: `+off+` + +* [[option_irc.look.nicks_hide_password]] *irc.look.nicks_hide_password* +** description: pass:none[comma separated list of nicks for which passwords will be hidden when a message is sent, for example to hide password in message displayed by "/msg nickserv identify password", example: "nickserv,nickbot"] +** type: string +** values: any string +** default value: `+"nickserv"+` + +* [[option_irc.look.notice_as_pv]] *irc.look.notice_as_pv* +** description: pass:none[display notices as private messages (if auto, use private buffer if found)] +** type: integer +** values: auto, never, always +** default value: `+auto+` + +* [[option_irc.look.notice_welcome_redirect]] *irc.look.notice_welcome_redirect* +** description: pass:none[automatically redirect channel welcome notices to the channel buffer; such notices have the nick as target but a channel name in beginning of notice message, for example the ENTRYMSG notices sent by Atheme IRC Services which look like: "[#channel\] Welcome to this channel..."] +** type: boolean +** values: on, off +** default value: `+on+` + +* [[option_irc.look.notice_welcome_tags]] *irc.look.notice_welcome_tags* +** description: pass:none[comma separated list of tags used in a welcome notices redirected to a channel, for example: "notify_private"] +** type: string +** values: any string +** default value: `+""+` + +* [[option_irc.look.notify_tags_ison]] *irc.look.notify_tags_ison* +** description: pass:none[comma separated list of tags used in messages displayed by notify when a nick joins or quits server (result of command ison or monitor), for example: "notify_message", "notify_private" or "notify_highlight"] +** type: string +** values: any string +** default value: `+"notify_message"+` + +* [[option_irc.look.notify_tags_whois]] *irc.look.notify_tags_whois* +** description: pass:none[comma separated list of tags used in messages displayed by notify when a nick away status changes (result of command whois), for example: "notify_message", "notify_private" or "notify_highlight"] +** type: string +** values: any string +** default value: `+"notify_message"+` + +* [[option_irc.look.part_closes_buffer]] *irc.look.part_closes_buffer* +** description: pass:none[close buffer when /part is issued on a channel] +** type: boolean +** values: on, off +** default value: `+off+` + +* [[option_irc.look.pv_buffer]] *irc.look.pv_buffer* +** description: pass:none[merge private buffers] +** type: integer +** values: independent, merge_by_server, merge_all +** default value: `+independent+` + +* [[option_irc.look.pv_tags]] *irc.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_irc.look.raw_messages]] *irc.look.raw_messages* +** description: pass:none[number of raw messages to save in memory when raw data buffer is closed (messages will be displayed when opening raw data buffer)] +** type: integer +** values: 0 .. 65535 +** default value: `+256+` + +* [[option_irc.look.server_buffer]] *irc.look.server_buffer* +** description: pass:none[merge server buffers; this option has no effect if a layout is saved and is conflicting with this value (see /help layout)] +** type: integer +** values: merge_with_core, merge_without_core, independent +** default value: `+merge_with_core+` + +* [[option_irc.look.smart_filter]] *irc.look.smart_filter* +** description: pass:none[filter join/part/quit/nick messages for a nick if not speaking for some minutes on channel (you must create a filter on tag "irc_smart_filter", see /help filter)] +** type: boolean +** values: on, off +** default value: `+on+` + +* [[option_irc.look.smart_filter_account]] *irc.look.smart_filter_account* +** description: pass:none[enable smart filter for "account" messages] +** type: boolean +** values: on, off +** default value: `+on+` + +* [[option_irc.look.smart_filter_chghost]] *irc.look.smart_filter_chghost* +** description: pass:none[enable smart filter for "chghost" messages] +** type: boolean +** values: on, off +** default value: `+on+` + +* [[option_irc.look.smart_filter_delay]] *irc.look.smart_filter_delay* +** description: pass:none[delay for filtering join/part/quit messages (in minutes): if the nick did not speak during the last N minutes, the join/part/quit is filtered] +** type: integer +** values: 1 .. 10080 +** default value: `+5+` + +* [[option_irc.look.smart_filter_join]] *irc.look.smart_filter_join* +** description: pass:none[enable smart filter for "join" messages] +** type: boolean +** values: on, off +** default value: `+on+` + +* [[option_irc.look.smart_filter_join_unmask]] *irc.look.smart_filter_join_unmask* +** description: pass:none[delay for unmasking a join message that was filtered with tag "irc_smart_filter" (in minutes): if a nick has joined max N minutes ago and then says something on channel (message, notice or update on topic), the join is unmasked, as well as nick changes after this join (0 = disable: never unmask a join)] +** type: integer +** values: 0 .. 10080 +** default value: `+30+` + +* [[option_irc.look.smart_filter_mode]] *irc.look.smart_filter_mode* +** description: pass:none[enable smart filter for "mode" messages: "*" to filter all modes, "+" to filter all modes in server prefixes (for example "ovh"), "xyz" to filter only modes x/y/z, "-xyz" to filter all modes but not x/y/z; examples: "ovh": filter modes o/v/h, "-bkl": filter all modes but not b/k/l] +** type: string +** values: any string +** default value: `+"+"+` + +* [[option_irc.look.smart_filter_nick]] *irc.look.smart_filter_nick* +** description: pass:none[enable smart filter for "nick" messages (nick changes)] +** type: boolean +** values: on, off +** default value: `+on+` + +* [[option_irc.look.smart_filter_quit]] *irc.look.smart_filter_quit* +** description: pass:none[enable smart filter for "part" and "quit" messages] +** type: boolean +** values: on, off +** default value: `+on+` + +* [[option_irc.look.smart_filter_setname]] *irc.look.smart_filter_setname* +** description: pass:none[enable smart filter for "setname" messages] +** type: boolean +** values: on, off +** default value: `+on+` + +* [[option_irc.look.temporary_servers]] *irc.look.temporary_servers* +** description: pass:none[enable automatic addition of temporary servers with command /connect] +** type: boolean +** values: on, off +** default value: `+off+` + +* [[option_irc.look.topic_strip_colors]] *irc.look.topic_strip_colors* +** description: pass:none[strip colors in topic (used only when displaying buffer title)] +** type: boolean +** values: on, off +** default value: `+off+` + +* [[option_irc.look.typing_status_nicks]] *irc.look.typing_status_nicks* +** description: pass:none[display nicks typing on the channel in bar item "typing" (option typing.look.enabled_nicks must be enabled and capability "message-tags" must be enabled on the server)] +** type: boolean +** values: on, off +** default value: `+off+` + +* [[option_irc.look.typing_status_self]] *irc.look.typing_status_self* +** description: pass:none[send self typing status to channels so that other users see when you are typing a message (option typing.look.enabled_self must be enabled and capability "message-tags" must be enabled on the server)] +** type: boolean +** values: on, off +** default value: `+off+` + +* [[option_irc.network.autoreconnect_delay_growing]] *irc.network.autoreconnect_delay_growing* +** description: pass:none[growing factor for autoreconnect delay to server (1 = always same delay, 2 = delay*2 for each retry, etc.)] +** type: integer +** values: 1 .. 100 +** default value: `+2+` + +* [[option_irc.network.autoreconnect_delay_max]] *irc.network.autoreconnect_delay_max* +** description: pass:none[maximum autoreconnect delay to server (in seconds, 0 = no maximum)] +** type: integer +** values: 0 .. 604800 +** default value: `+600+` + +* [[option_irc.network.ban_mask_default]] *irc.network.ban_mask_default* +** description: pass:none[default ban mask for commands /ban, /unban and /kickban; variables $nick, $user, $ident and $host are replaced by their values (extracted from "nick!user@host"); $ident is the same as $user if $user does not start with "~", otherwise it is set to "*"; this default mask is used only if WeeChat knows the host for the nick] +** type: string +** values: any string +** default value: `+"*!$ident@$host"+` + +* [[option_irc.network.colors_receive]] *irc.network.colors_receive* +** description: pass:none[when off, colors codes are ignored in incoming messages] +** type: boolean +** values: on, off +** default value: `+on+` + +* [[option_irc.network.colors_send]] *irc.network.colors_send* +** description: pass:none[allow user to send colors with special codes (ctrl-c + a code and optional color: b=bold, cxx=color, cxx,yy=color+background, i=italic, o=disable color/attributes, r=reverse, u=underline)] +** type: boolean +** values: on, off +** default value: `+on+` + +* [[option_irc.network.lag_check]] *irc.network.lag_check* +** description: pass:none[interval between two checks for lag (in seconds, 0 = never check)] +** type: integer +** values: 0 .. 604800 +** default value: `+60+` + +* [[option_irc.network.lag_max]] *irc.network.lag_max* +** description: pass:none[maximum lag (in seconds): if this lag is reached, WeeChat will consider that the answer from server (pong) will never be received and will give up counting the lag (0 = never give up)] +** type: integer +** values: 0 .. 604800 +** default value: `+1800+` + +* [[option_irc.network.lag_min_show]] *irc.network.lag_min_show* +** description: pass:none[minimum lag to show (in milliseconds)] +** type: integer +** values: 0 .. 86400000 +** default value: `+500+` + +* [[option_irc.network.lag_reconnect]] *irc.network.lag_reconnect* +** description: pass:none[reconnect to server if lag is greater than or equal to this value (in seconds, 0 = never reconnect); this value must be less than or equal to irc.network.lag_max] +** type: integer +** values: 0 .. 604800 +** default value: `+300+` + +* [[option_irc.network.lag_refresh_interval]] *irc.network.lag_refresh_interval* +** description: pass:none[interval between two refreshes of lag item, when lag is increasing (in seconds)] +** type: integer +** values: 1 .. 3600 +** default value: `+1+` + +* [[option_irc.network.notify_check_ison]] *irc.network.notify_check_ison* +** description: pass:none[interval between two checks for notify with IRC command "ison" (in minutes)] +** type: integer +** values: 1 .. 10080 +** default value: `+1+` + +* [[option_irc.network.notify_check_whois]] *irc.network.notify_check_whois* +** description: pass:none[interval between two checks for notify with IRC command "whois" (in minutes)] +** type: integer +** values: 1 .. 10080 +** default value: `+5+` + +* [[option_irc.network.sasl_fail_unavailable]] *irc.network.sasl_fail_unavailable* +** description: pass:none[cause SASL authentication failure when SASL is requested but unavailable on the server; when this option is enabled, it has effect only if option "sasl_fail" is set to "reconnect" or "disconnect" in the server] +** type: boolean +** values: on, off +** default value: `+on+` + +* [[option_irc.network.send_unknown_commands]] *irc.network.send_unknown_commands* +** description: pass:none[send unknown commands to server] +** type: boolean +** values: on, off +** default value: `+off+` + +* [[option_irc.network.whois_double_nick]] *irc.network.whois_double_nick* +** description: pass:none[double the nick in /whois command (if only one nick is given), to get idle time in answer; for example: "/whois nick" will send "whois nick nick"] +** type: boolean +** values: on, off +** default value: `+off+` + +* [[option_irc.server_default.addresses]] *irc.server_default.addresses* +** description: pass:none[list of hostname/port or IP/port for server (separated by comma) (note: content is evaluated, see /help eval; server options are evaluated with ${irc_server.xxx} and ${server} is replaced by the server name)] +** type: string +** values: any string +** default value: `+""+` + +* [[option_irc.server_default.anti_flood_prio_high]] *irc.server_default.anti_flood_prio_high* +** description: pass:none[anti-flood for high priority queue: number of seconds between two user messages or commands sent to IRC server (0 = no anti-flood)] +** type: integer +** values: 0 .. 60 +** default value: `+2+` + +* [[option_irc.server_default.anti_flood_prio_low]] *irc.server_default.anti_flood_prio_low* +** description: pass:none[anti-flood for low priority queue: number of seconds between two messages sent to IRC server (messages like automatic CTCP replies) (0 = no anti-flood)] +** type: integer +** values: 0 .. 60 +** default value: `+2+` + +* [[option_irc.server_default.autoconnect]] *irc.server_default.autoconnect* +** description: pass:none[automatically connect to server when WeeChat is starting] +** type: boolean +** values: on, off +** default value: `+off+` + +* [[option_irc.server_default.autojoin]] *irc.server_default.autojoin* +** description: pass:none[comma separated list of channels to join after connection to server (and after executing command + delay if they are set); the channels that require a key must be at beginning of the list, and all the keys must be given after the channels (separated by a space) (example: "#channel1,#channel2,#channel3 key1,key2" where #channel1 and #channel2 are protected by key1 and key2) (note: content is evaluated, see /help eval; server options are evaluated with ${irc_server.xxx} and ${server} is replaced by the server name)] +** type: string +** values: any string +** default value: `+""+` + +* [[option_irc.server_default.autojoin_dynamic]] *irc.server_default.autojoin_dynamic* +** description: pass:none[set automatically the "autojoin" option according to the channels you manually join and part with commands /join and /part] +** type: boolean +** values: on, off +** default value: `+off+` + +* [[option_irc.server_default.autoreconnect]] *irc.server_default.autoreconnect* +** description: pass:none[automatically reconnect to server when disconnected] +** type: boolean +** values: on, off +** default value: `+on+` + +* [[option_irc.server_default.autoreconnect_delay]] *irc.server_default.autoreconnect_delay* +** description: pass:none[delay (in seconds) before trying again to reconnect to server] +** type: integer +** values: 1 .. 65535 +** default value: `+10+` + +* [[option_irc.server_default.autorejoin]] *irc.server_default.autorejoin* +** description: pass:none[automatically rejoin channels after kick; you can define a buffer local variable on a channel to override this value (name of variable: "autorejoin", value: "on" or "off")] +** type: boolean +** values: on, off +** default value: `+off+` + +* [[option_irc.server_default.autorejoin_delay]] *irc.server_default.autorejoin_delay* +** description: pass:none[delay (in seconds) before autorejoin (after kick)] +** type: integer +** values: 0 .. 86400 +** default value: `+30+` + +* [[option_irc.server_default.away_check]] *irc.server_default.away_check* +** description: pass:none[interval between two checks for away (in minutes, 0 = never check)] +** type: integer +** values: 0 .. 10080 +** default value: `+0+` + +* [[option_irc.server_default.away_check_max_nicks]] *irc.server_default.away_check_max_nicks* +** description: pass:none[do not check away nicks on channels with high number of nicks (0 = unlimited)] +** type: integer +** values: 0 .. 1000000 +** default value: `+25+` + +* [[option_irc.server_default.capabilities]] *irc.server_default.capabilities* +** description: pass:none[comma-separated list of client capabilities to enable for server if they are available (see /help cap for a list of capabilities supported by WeeChat); "*" enables all capabilities by default (supported by both server and WeeChat); wildcard "*" is allowed; a capability beginning with "!" is excluded (example: "*,!account-*,!extended-join")] +** type: string +** values: any string +** default value: `+"*"+` + +* [[option_irc.server_default.charset_message]] *irc.server_default.charset_message* +** description: pass:none[part of the IRC message (received or sent) which is decoded/encoded to the target charset; message = the whole IRC message (default), channel = starting from the channel name only (if found, with fallback on text), text = starting from the text only (you should try this value if you have issues with the channel name encoding)] +** type: integer +** values: message, channel, text +** default value: `+message+` + +* [[option_irc.server_default.command]] *irc.server_default.command* +** description: pass:none[command(s) to run after connection to server and before auto-join of channels (many commands can be separated by ";", use "\;" for a semicolon, special variables $nick, $channel and $server are replaced by their values) (note: commands are evaluated, see /help eval; server options are evaluated with ${irc_server.xxx} and ${server} is replaced by the server name)] +** type: string +** values: any string +** default value: `+""+` + +* [[option_irc.server_default.command_delay]] *irc.server_default.command_delay* +** description: pass:none[delay (in seconds) after execution of command and before auto-join of channels (example: give some time for authentication before joining channels)] +** type: integer +** values: 0 .. 3600 +** default value: `+0+` + +* [[option_irc.server_default.connection_timeout]] *irc.server_default.connection_timeout* +** description: pass:none[timeout (in seconds) between TCP connection to server and message 001 received, if this timeout is reached before 001 message is received, WeeChat will disconnect from server] +** type: integer +** values: 1 .. 3600 +** default value: `+60+` + +* [[option_irc.server_default.default_chantypes]] *irc.server_default.default_chantypes* +** description: pass:none[channel type prefixes to use if the server does not send them in message 005 (default is "#&")] +** type: string +** values: any string +** default value: `+"#&"+` + +* [[option_irc.server_default.ipv6]] *irc.server_default.ipv6* +** description: pass:none[use IPv6 protocol for server communication (try IPv6 then fallback to IPv4); if disabled, only IPv4 is used] +** type: boolean +** values: on, off +** default value: `+on+` + +* [[option_irc.server_default.local_hostname]] *irc.server_default.local_hostname* +** description: pass:none[custom local hostname/IP for server (optional, if empty local hostname is used)] +** type: string +** values: any string +** default value: `+""+` + +* [[option_irc.server_default.msg_kick]] *irc.server_default.msg_kick* +** description: pass:none[default kick message used by commands "/kick" and "/kickban" (note: content is evaluated, see /help eval; special variables ${nick} (self nick), ${target} (target nick), ${channel} and ${server} are replaced by their values)] +** type: string +** values: any string +** default value: `+""+` + +* [[option_irc.server_default.msg_part]] *irc.server_default.msg_part* +** description: pass:none[default part message (leaving channel) (note: content is evaluated, see /help eval; special variables ${nick}, ${channel} and ${server} are replaced by their values; "%v" is replaced by WeeChat version if there is no ${...} in string)] +** type: string +** values: any string +** default value: `+"WeeChat ${info:version}"+` + +* [[option_irc.server_default.msg_quit]] *irc.server_default.msg_quit* +** description: pass:none[default quit message (disconnecting from server) (note: content is evaluated, see /help eval; special variables ${nick}, ${channel} and ${server} are replaced by their values; "%v" is replaced by WeeChat version if there is no ${...} in string)] +** type: string +** values: any string +** default value: `+"WeeChat ${info:version}"+` + +* [[option_irc.server_default.nicks]] *irc.server_default.nicks* +** description: pass:none[nicknames to use on server (separated by comma) (note: content is evaluated, see /help eval; server options are evaluated with ${irc_server.xxx} and ${server} is replaced by the server name)] +** type: string +** values: any string +** default value: `+""+` + +* [[option_irc.server_default.nicks_alternate]] *irc.server_default.nicks_alternate* +** description: pass:none[get an alternate nick when all the declared nicks are already used on server: add some "_" until the nick has a length of 9, and then replace last char (or the two last chars) by a number from 1 to 99, until we find a nick not used on server] +** type: boolean +** values: on, off +** default value: `+on+` + +* [[option_irc.server_default.notify]] *irc.server_default.notify* +** description: pass:none[notify list for server (you should not change this option but use /notify command instead)] +** type: string +** values: any string +** default value: `+""+` + +* [[option_irc.server_default.password]] *irc.server_default.password* +** description: pass:none[password for server (note: content is evaluated, see /help eval; server options are evaluated with ${irc_server.xxx} and ${server} is replaced by the server name)] +** type: string +** values: any string +** default value: `+""+` + +* [[option_irc.server_default.proxy]] *irc.server_default.proxy* +** description: pass:none[name of proxy used for this server (optional, proxy must be defined with command /proxy)] +** type: string +** values: any string +** default value: `+""+` + +* [[option_irc.server_default.realname]] *irc.server_default.realname* +** description: pass:none[real name to use on server (note: content is evaluated, see /help eval; server options are evaluated with ${irc_server.xxx} and ${server} is replaced by the server name)] +** type: string +** values: any string +** default value: `+""+` + +* [[option_irc.server_default.sasl_fail]] *irc.server_default.sasl_fail* +** description: pass:none[action to perform if SASL authentication fails: "continue" to ignore the authentication problem, "reconnect" to schedule a reconnection to the server, "disconnect" to disconnect from server (see also option irc.network.sasl_fail_unavailable)] +** type: integer +** values: continue, reconnect, disconnect +** default value: `+reconnect+` + +* [[option_irc.server_default.sasl_key]] *irc.server_default.sasl_key* +** description: pass:none[file with ECC private key for mechanism "ecdsa-nist256p-challenge" (path is evaluated, see function string_eval_path_home in plugin API reference)] +** type: string +** values: any string +** default value: `+""+` + +* [[option_irc.server_default.sasl_mechanism]] *irc.server_default.sasl_mechanism* +** description: pass:none[mechanism for SASL authentication: "plain" for plain text password, "scram-sha-1" for SCRAM authentication with SHA-1 digest algorithm, "scram-sha-256" for SCRAM authentication with SHA-256 digest algorithm, "scram-sha-512" for SCRAM authentication with SHA-512 digest algorithm, "ecdsa-nist256p-challenge" for key-based challenge authentication, "external" for authentication using client side SSL certificate] +** type: integer +** values: plain, scram-sha-1, scram-sha-256, scram-sha-512, ecdsa-nist256p-challenge, external +** default value: `+plain+` + +* [[option_irc.server_default.sasl_password]] *irc.server_default.sasl_password* +** description: pass:none[password for SASL authentication; this option is not used for mechanisms "ecdsa-nist256p-challenge" and "external" (note: content is evaluated, see /help eval; server options are evaluated with ${irc_server.xxx} and ${server} is replaced by the server name)] +** type: string +** values: any string +** default value: `+""+` + +* [[option_irc.server_default.sasl_timeout]] *irc.server_default.sasl_timeout* +** description: pass:none[timeout (in seconds) before giving up SASL authentication] +** type: integer +** values: 1 .. 3600 +** default value: `+15+` + +* [[option_irc.server_default.sasl_username]] *irc.server_default.sasl_username* +** description: pass:none[username for SASL authentication; this option is not used for mechanism "external" (note: content is evaluated, see /help eval; server options are evaluated with ${irc_server.xxx} and ${server} is replaced by the server name)] +** type: string +** values: any string +** default value: `+""+` + +* [[option_irc.server_default.split_msg_max_length]] *irc.server_default.split_msg_max_length* +** description: pass:none[split outgoing IRC messages to fit in this number of chars; the default value is 512, this is a safe and recommended value; value 0 disables the split (not recommended, unless you know what you do); allowed values are 0 or any integer between 128 and 4096; this option should be changed only on non-standard IRC servers, for example gateways like bitlbee] +** type: integer +** values: 0 .. 4096 +** default value: `+512+` + +* [[option_irc.server_default.ssl]] *irc.server_default.ssl* +** description: pass:none[use SSL for server communication] +** type: boolean +** values: on, off +** default value: `+off+` + +* [[option_irc.server_default.ssl_cert]] *irc.server_default.ssl_cert* +** description: pass:none[SSL certificate file used to automatically identify your nick (path is evaluated, see function string_eval_path_home in plugin API reference)] +** type: string +** values: any string +** default value: `+""+` + +* [[option_irc.server_default.ssl_dhkey_size]] *irc.server_default.ssl_dhkey_size* +** description: pass:none[size of the key used during the Diffie-Hellman Key Exchange] +** type: integer +** values: 0 .. 2147483647 +** default value: `+2048+` + +* [[option_irc.server_default.ssl_fingerprint]] *irc.server_default.ssl_fingerprint* +** description: pass:none[fingerprint of certificate which is trusted and accepted for the server; only hexadecimal digits are allowed (0-9, a-f): 128 chars for SHA-512, 64 chars for SHA-256, 40 chars for SHA-1 (insecure, not recommended); many fingerprints can be separated by commas; if this option is set, the other checks on certificates are NOT performed (option "ssl_verify") (note: content is evaluated, see /help eval; server options are evaluated with ${irc_server.xxx} and ${server} is replaced by the server name)] +** type: string +** values: any string +** default value: `+""+` + +* [[option_irc.server_default.ssl_password]] *irc.server_default.ssl_password* +** description: pass:none[password for SSL certificate's private key; only used with gnutls version >= 3.1.0 (note: content is evaluated, see /help eval; server options are evaluated with ${irc_server.xxx} and ${server} is replaced by the server name)] +** type: string +** values: any string +** default value: `+""+` + +* [[option_irc.server_default.ssl_priorities]] *irc.server_default.ssl_priorities* +** description: pass:none[string with priorities for gnutls (for syntax, see documentation of function gnutls_priority_init in gnutls manual, common strings are: "PERFORMANCE", "NORMAL", "SECURE128", "SECURE256", "EXPORT", "NONE")] +** type: string +** values: any string +** default value: `+"NORMAL:-VERS-SSL3.0"+` + +* [[option_irc.server_default.ssl_verify]] *irc.server_default.ssl_verify* +** description: pass:none[check that the SSL connection is fully trusted] +** type: boolean +** values: on, off +** default value: `+on+` + +* [[option_irc.server_default.usermode]] *irc.server_default.usermode* +** description: pass:none[user mode(s) to set after connection to server and before executing command and the auto-join of channels; examples: "+R" (to set mode "R"), "+R-i" (to set mode "R" and remove "i"); see /help mode for the complete mode syntax (note: content is evaluated, see /help eval; server options are evaluated with ${irc_server.xxx} and ${server} is replaced by the server name)] +** type: string +** values: any string +** default value: `+""+` + +* [[option_irc.server_default.username]] *irc.server_default.username* +** description: pass:none[user name to use on server (note: content is evaluated, see /help eval; server options are evaluated with ${irc_server.xxx} and ${server} is replaced by the server name)] +** type: string +** values: any string +** 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] +** 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_relay.color.status_active]] *relay.color.status_active* +** description: pass:none[text color for "connected" 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: `+green+` + +* [[option_relay.color.status_auth_failed]] *relay.color.status_auth_failed* +** description: pass:none[text color for "authentication 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: `+lightmagenta+` + +* [[option_relay.color.status_connecting]] *relay.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: `+white+` + +* [[option_relay.color.status_disconnected]] *relay.color.status_disconnected* +** description: pass:none[text color for "disconnected" 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_relay.color.status_waiting_auth]] *relay.color.status_waiting_auth* +** description: pass:none[text color for "waiting authentication" 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_relay.color.text]] *relay.color.text* +** description: pass:none[text color in relay 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_relay.color.text_bg]] *relay.color.text_bg* +** description: pass:none[background color in relay 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_relay.color.text_selected]] *relay.color.text_selected* +** description: pass:none[text color of selected line in relay 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_relay.irc.backlog_max_minutes]] *relay.irc.backlog_max_minutes* +** description: pass:none[maximum number of minutes in backlog per IRC channel (0 = unlimited, examples: 1440 = one day, 10080 = one week, 43200 = one month, 525600 = one year)] +** type: integer +** values: 0 .. 2147483647 +** default value: `+0+` + +* [[option_relay.irc.backlog_max_number]] *relay.irc.backlog_max_number* +** description: pass:none[maximum number of lines in backlog per IRC channel (0 = unlimited)] +** type: integer +** values: 0 .. 2147483647 +** default value: `+1024+` + +* [[option_relay.irc.backlog_since_last_disconnect]] *relay.irc.backlog_since_last_disconnect* +** description: pass:none[display backlog starting from last client disconnect] +** type: boolean +** values: on, off +** default value: `+on+` + +* [[option_relay.irc.backlog_since_last_message]] *relay.irc.backlog_since_last_message* +** description: pass:none[display backlog starting from your last message] +** type: boolean +** values: on, off +** default value: `+off+` + +* [[option_relay.irc.backlog_tags]] *relay.irc.backlog_tags* +** description: pass:none[comma-separated list of messages tags which are displayed in backlog per IRC channel (supported tags: "irc_join", "irc_part", "irc_quit", "irc_nick", "irc_privmsg"), "*" = all supported tags] +** type: string +** values: any string +** default value: `+"irc_privmsg"+` + +* [[option_relay.irc.backlog_time_format]] *relay.irc.backlog_time_format* +** description: pass:none[format for time in backlog messages (see man strftime for format) (not used if server capability "server-time" was enabled by client, because time is sent as irc tag); empty string = disable time in backlog messages] +** type: string +** values: any string +** default value: `+"[%H:%M] "+` + +* [[option_relay.look.auto_open_buffer]] *relay.look.auto_open_buffer* +** description: pass:none[auto open relay buffer when a new client is connecting] +** type: boolean +** values: on, off +** default value: `+on+` + +* [[option_relay.look.raw_messages]] *relay.look.raw_messages* +** description: pass:none[number of raw messages to save in memory when raw data buffer is closed (messages will be displayed when opening raw data buffer)] +** type: integer +** values: 0 .. 65535 +** default value: `+256+` + +* [[option_relay.network.allow_empty_password]] *relay.network.allow_empty_password* +** description: pass:none[allow empty password in relay (it should be enabled only for tests or local network)] +** type: boolean +** values: on, off +** default value: `+off+` + +* [[option_relay.network.allowed_ips]] *relay.network.allowed_ips* +** description: pass:none[POSIX extended regular expression with IPs allowed to use relay (case insensitive, use "(?-i)" at beginning to make it case sensitive), example: "^(123\.45\.67\.89|192\.160\..*)$"] +** type: string +** values: any string +** default value: `+""+` + +* [[option_relay.network.auth_timeout]] *relay.network.auth_timeout* +** description: pass:none[timeout (in seconds) for client authentication: connection is closed if the client is still not authenticated after this delay and the client status is set to "authentication failed" (0 = wait forever)] +** type: integer +** values: 0 .. 2147483647 +** default value: `+60+` + +* [[option_relay.network.bind_address]] *relay.network.bind_address* +** description: pass:none[address for bind (if empty, connection is possible on all interfaces, use "127.0.0.1" to allow connections from local machine only)] +** type: string +** values: any string +** default value: `+""+` + +* [[option_relay.network.clients_purge_delay]] *relay.network.clients_purge_delay* +** description: pass:none[delay for purging disconnected clients (in minutes, 0 = purge clients immediately, -1 = never purge)] +** type: integer +** values: -1 .. 43200 +** default value: `+0+` + +* [[option_relay.network.compression]] *relay.network.compression* +** description: pass:none[compression of messages sent to clients with "weechat" protocol: 0 = disable compression, 1 = low compression / fast ... 100 = best compression / slow; the value is a percentage converted to 1-9 for zlib and 1-19 for zstd; the default value is recommended, it offers a good compromise between compression and speed] +** type: integer +** values: 0 .. 100 +** default value: `+20+` + +* [[option_relay.network.ipv6]] *relay.network.ipv6* +** description: pass:none[listen on IPv6 socket by default (in addition to IPv4 which is default); protocols IPv4 and IPv6 can be forced (individually or together) in the protocol name (see /help relay)] +** type: boolean +** values: on, off +** default value: `+on+` + +* [[option_relay.network.max_clients]] *relay.network.max_clients* +** description: pass:none[maximum number of clients connecting to a port (0 = no limit)] +** type: integer +** values: 0 .. 2147483647 +** default value: `+5+` + +* [[option_relay.network.nonce_size]] *relay.network.nonce_size* +** description: pass:none[size of nonce (in bytes), generated when a client connects; the client must use this nonce, concatenated to the client nonce and the password when hashing the password in the "init" command of the weechat protocol] +** type: integer +** values: 8 .. 128 +** default value: `+16+` + +* [[option_relay.network.password]] *relay.network.password* +** description: pass:none[password required by clients to access this relay (empty value means no password required, see option relay.network.allow_empty_password) (note: content is evaluated, see /help eval)] +** type: string +** values: any string +** default value: `+""+` + +* [[option_relay.network.password_hash_algo]] *relay.network.password_hash_algo* +** description: pass:none[comma separated list of hash algorithms used for password authentication in weechat protocol, among these values: "plain" (password in plain text, not hashed), "sha256", "sha512", "pbkdf2+sha256", "pbkdf2+sha512"), "*" means all algorithms, a name beginning with "!" is a negative value to prevent an algorithm from being used, wildcard "*" is allowed in names (examples: "*", "pbkdf2*", "*,!plain")] +** type: string +** values: any string +** default value: `+"*"+` + +* [[option_relay.network.password_hash_iterations]] *relay.network.password_hash_iterations* +** description: pass:none[number of iterations asked to the client in weechat protocol when a hashed password with algorithm PBKDF2 is used for authentication; more iterations is better in term of security but is slower to compute; this number should not be too high if your CPU is slow] +** type: integer +** values: 1 .. 1000000 +** default value: `+100000+` + +* [[option_relay.network.ssl_cert_key]] *relay.network.ssl_cert_key* +** description: pass:none[file with SSL certificate and private key (for serving clients with SSL) (path is evaluated, see function string_eval_path_home in plugin API reference)] +** type: string +** values: any string +** default value: `+"${weechat_config_dir}/ssl/relay.pem"+` + +* [[option_relay.network.ssl_priorities]] *relay.network.ssl_priorities* +** description: pass:none[string with priorities for gnutls (for syntax, see documentation of function gnutls_priority_init in gnutls manual, common strings are: "PERFORMANCE", "NORMAL", "SECURE128", "SECURE256", "EXPORT", "NONE")] +** type: string +** values: any string +** default value: `+"NORMAL:-VERS-SSL3.0"+` + +* [[option_relay.network.totp_secret]] *relay.network.totp_secret* +** description: pass:none[secret for the generation of the Time-based One-Time Password (TOTP), encoded in base32 (only letters and digits from 2 to 7); it is used as second factor in weechat protocol, in addition to the password, which must not be empty (empty value means no TOTP is required) (note: content is evaluated, see /help eval)] +** type: string +** values: any string +** default value: `+""+` + +* [[option_relay.network.totp_window]] *relay.network.totp_window* +** description: pass:none[number of Time-based One-Time Passwords to accept before and after the current one: 0 = accept only the current password, 1 = accept one password before, the current, and one after, 2 = accept two passwords before, the current, and two after, ...; a high number reduces the security level (0 or 1 are recommended values)] +** type: integer +** values: 0 .. 256 +** default value: `+0+` + +* [[option_relay.network.websocket_allowed_origins]] *relay.network.websocket_allowed_origins* +** description: pass:none[POSIX extended regular expression with origins allowed in websockets (case insensitive, use "(?-i)" at beginning to make it case sensitive), example: "^https?://(www\.)?example\.(com|org)"] +** type: string +** values: any string +** default value: `+""+` + +* [[option_relay.weechat.commands]] *relay.weechat.commands* +** description: pass:none[comma-separated list of commands allowed/denied when input data (text or command) is received from a client; "*" means any command, a name beginning with "!" is a negative value to prevent a command from being executed, wildcard "*" is allowed in names; this option should be set if the relay client is not safe (someone could use it to run commands); for example "*,!exec,!quit" allows any command except /exec and /quit] +** type: string +** values: any string +** default value: `+""+` +// end::relay_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] +** type: boolean +** values: on, off +** default value: `+off+` + +* [[option_ruby.look.eval_keep_context]] *ruby.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::ruby_options[] + +// tag::script_options[] +* [[option_script.color.status_autoloaded]] *script.color.status_autoloaded* +** description: pass:none[color for status "autoloaded" ("a")] +** 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_script.color.status_held]] *script.color.status_held* +** description: pass:none[color for status "held" ("H")] +** 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_script.color.status_installed]] *script.color.status_installed* +** description: pass:none[color for status "installed" ("i")] +** 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_script.color.status_obsolete]] *script.color.status_obsolete* +** description: pass:none[color for status "obsolete" ("N")] +** 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_script.color.status_popular]] *script.color.status_popular* +** description: pass:none[color for status "popular" ("*")] +** 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_script.color.status_running]] *script.color.status_running* +** description: pass:none[color for status "running" ("r")] +** 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_script.color.status_unknown]] *script.color.status_unknown* +** description: pass:none[color for status "unknown" ("?")] +** 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_script.color.text]] *script.color.text* +** description: pass:none[text color in script 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_script.color.text_bg]] *script.color.text_bg* +** description: pass:none[background color in script 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_script.color.text_bg_selected]] *script.color.text_bg_selected* +** description: pass:none[background color for selected line in script 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: `+red+` + +* [[option_script.color.text_date]] *script.color.text_date* +** description: pass:none[text color of dates in script 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_script.color.text_date_selected]] *script.color.text_date_selected* +** description: pass:none[text color of dates for selected line in script 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_script.color.text_delimiters]] *script.color.text_delimiters* +** description: pass:none[text color of delimiters in script 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_script.color.text_description]] *script.color.text_description* +** description: pass:none[text color of description in script 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_script.color.text_description_selected]] *script.color.text_description_selected* +** description: pass:none[text color of description for selected line in script 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_script.color.text_extension]] *script.color.text_extension* +** description: pass:none[text color of extension in script 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_script.color.text_extension_selected]] *script.color.text_extension_selected* +** description: pass:none[text color of extension for selected line in script 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_script.color.text_name]] *script.color.text_name* +** description: pass:none[text color of script name in script 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_script.color.text_name_selected]] *script.color.text_name_selected* +** description: pass:none[text color of script name for selected line in script 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+` + +* [[option_script.color.text_selected]] *script.color.text_selected* +** description: pass:none[text color for selected line in script 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_script.color.text_tags]] *script.color.text_tags* +** description: pass:none[text color of tags in script 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: `+brown+` + +* [[option_script.color.text_tags_selected]] *script.color.text_tags_selected* +** description: pass:none[text color of tags for selected line in script 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_script.color.text_version]] *script.color.text_version* +** description: pass:none[text color of version in script 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: `+magenta+` + +* [[option_script.color.text_version_loaded]] *script.color.text_version_loaded* +** description: pass:none[text color of version loaded in script 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_script.color.text_version_loaded_selected]] *script.color.text_version_loaded_selected* +** description: pass:none[text color of version loaded for selected line in script 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_script.color.text_version_selected]] *script.color.text_version_selected* +** description: pass:none[text color of version for selected line in script 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: `+lightmagenta+` + +* [[option_script.look.columns]] *script.look.columns* +** description: pass:none[format of columns displayed in script buffer: following column identifiers are replaced by their values: %a=author, %d=description, %D=date added, %e=extension, %l=language, %L=license, %n=name with extension, %N=name, %r=requirements, %s=status, %t=tags, %u=date updated, %v=version, %V=version loaded, %w=min_weechat, %W=max_weechat)] +** type: string +** values: any string +** default value: `+"%s %n %V %v %u | %d | %t"+` + +* [[option_script.look.diff_color]] *script.look.diff_color* +** description: pass:none[colorize output of diff] +** type: boolean +** values: on, off +** default value: `+on+` + +* [[option_script.look.diff_command]] *script.look.diff_command* +** description: pass:none[command used to show differences between script installed and the new version in repository ("auto" = auto detect diff command (git or diff), empty value = disable diff, other string = name of command, for example "diff")] +** type: string +** values: any string +** default value: `+"auto"+` + +* [[option_script.look.display_source]] *script.look.display_source* +** description: pass:none[display source code of script on buffer with detail on a script (script is downloaded in a temporary file when detail on script is displayed)] +** type: boolean +** values: on, off +** default value: `+on+` + +* [[option_script.look.quiet_actions]] *script.look.quiet_actions* +** description: pass:none[quiet actions on script buffer: do not display messages on core buffer when scripts are installed/removed/loaded/unloaded (only errors are displayed)] +** type: boolean +** values: on, off +** default value: `+on+` + +* [[option_script.look.sort]] *script.look.sort* +** description: pass:none[default sort keys for scripts: comma-separated list of identifiers: a=author, A=autoloaded, d=date added, e=extension, i=installed, l=language, n=name, o=obsolete, p=popularity, r=running, u=date updated; char "-" can be used before identifier to reverse order; example: "i,u": installed scripts first, sorted by update date] +** type: string +** values: any string +** default value: `+"i,p,n"+` + +* [[option_script.look.translate_description]] *script.look.translate_description* +** description: pass:none[translate description of scripts (if translation is available in your language, otherwise English version is used)] +** type: boolean +** values: on, off +** default value: `+on+` + +* [[option_script.look.use_keys]] *script.look.use_keys* +** description: pass:none[use keys alt+X in script buffer to do actions on scripts (alt+i = install, alt+r = remove, ...); if disabled, only the input is allowed: i, r, ...] +** type: boolean +** values: on, off +** default value: `+on+` + +* [[option_script.scripts.autoload]] *script.scripts.autoload* +** description: pass:none[autoload scripts installed (make a link in "autoload" directory to script in parent directory)] +** type: boolean +** values: on, off +** default value: `+on+` + +* [[option_script.scripts.cache_expire]] *script.scripts.cache_expire* +** description: pass:none[local cache expiration time, in minutes (-1 = never expires, 0 = always expire)] +** type: integer +** values: -1 .. 525600 +** default value: `+1440+` + +* [[option_script.scripts.download_enabled]] *script.scripts.download_enabled* +** description: pass:none[enable download of files from the scripts repository when the /script command is used (list of scripts and scripts themselves); the list of scripts is downloaded from the URL specified in the option script.scripts.url; WeeChat will sometimes download again the list of scripts when you use the /script command, even if you don't install a script] +** type: boolean +** values: on, off +** default value: `+off+` + +* [[option_script.scripts.download_timeout]] *script.scripts.download_timeout* +** description: pass:none[timeout (in seconds) for download of scripts and list of scripts] +** type: integer +** values: 1 .. 3600 +** default value: `+30+` + +* [[option_script.scripts.hold]] *script.scripts.hold* +** description: pass:none[scripts to "hold": comma-separated list of scripts which will never been upgraded and can not be removed, for example: "go.py,urlserver.py"] +** type: string +** values: any string +** default value: `+""+` + +* [[option_script.scripts.path]] *script.scripts.path* +** description: pass:none[local cache directory for scripts (path is evaluated, see function string_eval_path_home in plugin API reference)] +** type: string +** values: any string +** default value: `+"${weechat_cache_dir}/script"+` + +* [[option_script.scripts.url]] *script.scripts.url* +** description: pass:none[URL for file with list of scripts] +** type: string +** values: any string +** default value: `+"https://weechat.org/files/plugins.xml.gz"+` +// end::script_options[] + // 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)] @@ -29,6 +2287,218 @@ ** 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: `+lightred+` + +* [[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_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: `+cyan+` + +* [[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: `+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::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: `+lightgreen+` + +* [[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_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: `+lightblue+` + +* [[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: `+lightcyan+` + +* [[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: `+lightmagenta+` + +* [[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_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: `+cyan+` + +* [[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: `+green+` + +* [[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: `+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::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] @@ -1381,544 +3851,6 @@ ** 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[] - -// 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::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: `+lightred+` - -* [[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: `+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[] - -// 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: `+lightgreen+` - -* [[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_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: `+lightblue+` - -* [[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: `+lightcyan+` - -* [[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: `+lightmagenta+` - -* [[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_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: `+cyan+` - -* [[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: `+green+` - -* [[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: `+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+` - -* [[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: `+lightred+` - -* [[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_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: `+cyan+` - -* [[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: `+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},"+` - -* [[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+` - -* [[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_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_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+` - -* [[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_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] -** type: integer -** values: 1 .. 3 -** 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)] -** 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+` - -* [[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::xfer_options[] * [[option_xfer.color.status_aborted]] *xfer.color.status_aborted* ** description: pass:none[text color for "aborted" status] @@ -2106,1935 +4038,3 @@ ** values: 5 .. 2147483647 ** default value: `+300+` // end::xfer_options[] - -// tag::irc_options[] -* [[option_irc.color.input_nick]] *irc.color.input_nick* -** description: pass:none[color for nick in 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: `+lightcyan+` - -* [[option_irc.color.item_channel_modes]] *irc.color.item_channel_modes* -** description: pass:none[color for channel modes, near channel 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+` - -* [[option_irc.color.item_lag_counting]] *irc.color.item_lag_counting* -** description: pass:none[color for lag indicator, when counting (pong not received from server, lag is increasing)] -** 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_irc.color.item_lag_finished]] *irc.color.item_lag_finished* -** description: pass:none[color for lag indicator, when pong has been received from server] -** 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_irc.color.item_nick_modes]] *irc.color.item_nick_modes* -** description: pass:none[color for nick modes in bar item "input_prompt"] -** 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_irc.color.item_tls_version_deprecated]] *irc.color.item_tls_version_deprecated* -** description: pass:none[color for deprecated TLS versions in bar item "tls_version"] -** 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_irc.color.item_tls_version_insecure]] *irc.color.item_tls_version_insecure* -** description: pass:none[color for insecure TLS versions in bar item "tls_version"] -** 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_irc.color.item_tls_version_ok]] *irc.color.item_tls_version_ok* -** description: pass:none[color for higher supported TLS version in bar item "tls_version"] -** 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_irc.color.message_account]] *irc.color.message_account* -** description: pass:none[color for text in account messages] -** 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_irc.color.message_chghost]] *irc.color.message_chghost* -** description: pass:none[color for text in "chghost" messages] -** 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_irc.color.message_join]] *irc.color.message_join* -** description: pass:none[color for text in join messages] -** 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_irc.color.message_kick]] *irc.color.message_kick* -** description: pass:none[color for text in kick/kill messages] -** 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_irc.color.message_quit]] *irc.color.message_quit* -** description: pass:none[color for text in part/quit messages] -** 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_irc.color.message_setname]] *irc.color.message_setname* -** description: pass:none[color for text in "setname" messages] -** 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_irc.color.mirc_remap]] *irc.color.mirc_remap* -** description: pass:none[remap mirc colors in messages using a hashtable: keys are "fg,bg" as integers between -1 (not specified) and 15, values are WeeChat color names or numbers (format is: "1,-1:color1;2,7:color2"), example: "1,-1:darkgray;1,2:white,blue" to remap black to "darkgray" and black on blue to "white,blue"; default WeeChat colors for IRC codes: 0=white, 1=black, 2=blue, 3=green, 4=lightred, 5=red, 6=magenta, 7=brown, 8=yellow, 9=lightgreen, 10=cyan, 11=lightcyan, 12=lightblue, 13=lightmagenta, 14=darkgray, 15=gray] -** type: string -** values: any string -** default value: `+"1,-1:darkgray"+` - -* [[option_irc.color.nick_prefixes]] *irc.color.nick_prefixes* -** description: pass:none[color for nick prefixes using mode char (o=op, h=halfop, v=voice, ..), format is: "o:color1;h:color2;v:color3" (if a mode is not found, WeeChat will try with next modes received from server ("PREFIX"); a special mode "*" can be used as default color if no mode has been found in list)] -** type: string -** values: any string -** default value: `+"y:lightred;q:lightred;a:lightcyan;o:lightgreen;h:lightmagenta;v:yellow;*:lightblue"+` - -* [[option_irc.color.notice]] *irc.color.notice* -** description: pass:none[color for text "Notice" in notices] -** 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_irc.color.reason_kick]] *irc.color.reason_kick* -** description: pass:none[color for reason in kick/kill messages] -** 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_irc.color.reason_quit]] *irc.color.reason_quit* -** description: pass:none[color for reason in part/quit messages] -** 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_irc.color.topic_current]] *irc.color.topic_current* -** description: pass:none[color for current channel topic (when joining a channel or using /topic)] -** 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_irc.color.topic_new]] *irc.color.topic_new* -** description: pass:none[color for new channel topic (when topic 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: `+white+` - -* [[option_irc.color.topic_old]] *irc.color.topic_old* -** description: pass:none[color for old channel topic (when topic 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+` - -* [[option_irc.look.buffer_open_before_autojoin]] *irc.look.buffer_open_before_autojoin* -** description: pass:none[open channel buffer before the JOIN is received from server when it is auto joined (with server option "autojoin"); this is useful to open channels with always the same buffer numbers on startup] -** type: boolean -** values: on, off -** default value: `+on+` - -* [[option_irc.look.buffer_open_before_join]] *irc.look.buffer_open_before_join* -** description: pass:none[open channel buffer before the JOIN is received from server when it is manually joined (with /join command)] -** type: boolean -** values: on, off -** default value: `+off+` - -* [[option_irc.look.buffer_switch_autojoin]] *irc.look.buffer_switch_autojoin* -** description: pass:none[auto switch to channel buffer when it is auto joined (with server option "autojoin")] -** type: boolean -** values: on, off -** default value: `+on+` - -* [[option_irc.look.buffer_switch_join]] *irc.look.buffer_switch_join* -** description: pass:none[auto switch to channel buffer when it is manually joined (with /join command)] -** type: boolean -** values: on, off -** default value: `+on+` - -* [[option_irc.look.color_nicks_in_names]] *irc.look.color_nicks_in_names* -** description: pass:none[use nick color in output of /names (or list of nicks displayed when joining a channel)] -** type: boolean -** values: on, off -** default value: `+off+` - -* [[option_irc.look.color_nicks_in_nicklist]] *irc.look.color_nicks_in_nicklist* -** description: pass:none[use nick color in nicklist] -** type: boolean -** values: on, off -** default value: `+off+` - -* [[option_irc.look.color_nicks_in_server_messages]] *irc.look.color_nicks_in_server_messages* -** description: pass:none[use nick color in messages from server] -** type: boolean -** values: on, off -** default value: `+on+` - -* [[option_irc.look.color_pv_nick_like_channel]] *irc.look.color_pv_nick_like_channel* -** description: pass:none[use same nick color for channel and private] -** type: boolean -** values: on, off -** default value: `+on+` - -* [[option_irc.look.ctcp_time_format]] *irc.look.ctcp_time_format* -** description: pass:none[time format used in answer to message CTCP TIME (see man strftime for date/time specifiers)] -** type: string -** values: any string -** default value: `+"%a, %d %b %Y %T %z"+` - -* [[option_irc.look.display_account_message]] *irc.look.display_account_message* -** description: pass:none[display ACCOUNT messages received when capability account-notify is enabled] -** type: boolean -** values: on, off -** default value: `+on+` - -* [[option_irc.look.display_away]] *irc.look.display_away* -** description: pass:none[display message when (un)marking as away (off: do not display/send anything, local: display locally, channel: send action to channels)] -** type: integer -** values: off, local, channel -** default value: `+local+` - -* [[option_irc.look.display_ctcp_blocked]] *irc.look.display_ctcp_blocked* -** description: pass:none[display CTCP message even if it is blocked] -** type: boolean -** values: on, off -** default value: `+on+` - -* [[option_irc.look.display_ctcp_reply]] *irc.look.display_ctcp_reply* -** description: pass:none[display CTCP reply sent by WeeChat] -** type: boolean -** values: on, off -** default value: `+on+` - -* [[option_irc.look.display_ctcp_unknown]] *irc.look.display_ctcp_unknown* -** description: pass:none[display CTCP message even if it is unknown CTCP] -** type: boolean -** values: on, off -** default value: `+on+` - -* [[option_irc.look.display_extended_join]] *irc.look.display_extended_join* -** description: pass:none[display extra information in the JOIN messages: account name and real name (capability extended-join must be enabled)] -** type: boolean -** values: on, off -** default value: `+on+` - -* [[option_irc.look.display_host_join]] *irc.look.display_host_join* -** description: pass:none[display host in join messages] -** type: boolean -** values: on, off -** default value: `+on+` - -* [[option_irc.look.display_host_join_local]] *irc.look.display_host_join_local* -** description: pass:none[display host in join messages from local client] -** type: boolean -** values: on, off -** default value: `+on+` - -* [[option_irc.look.display_host_quit]] *irc.look.display_host_quit* -** description: pass:none[display host in part/quit messages] -** type: boolean -** values: on, off -** default value: `+on+` - -* [[option_irc.look.display_join_message]] *irc.look.display_join_message* -** description: pass:none[comma-separated list of messages to display after joining a channel: 324 = channel modes, 329 = channel creation date, 332 = topic, 333 = nick/date for topic, 353 = names on channel, 366 = names count] -** type: string -** values: any string -** default value: `+"329,332,333,366"+` - -* [[option_irc.look.display_old_topic]] *irc.look.display_old_topic* -** description: pass:none[display old topic when channel topic is changed] -** type: boolean -** values: on, off -** default value: `+on+` - -* [[option_irc.look.display_pv_away_once]] *irc.look.display_pv_away_once* -** description: pass:none[display remote away message only once in private] -** type: boolean -** values: on, off -** default value: `+on+` - -* [[option_irc.look.display_pv_back]] *irc.look.display_pv_back* -** description: pass:none[display a message in private when user is back (after quit on server)] -** type: boolean -** values: on, off -** default value: `+on+` - -* [[option_irc.look.display_pv_nick_change]] *irc.look.display_pv_nick_change* -** description: pass:none[display nick change in private] -** type: boolean -** values: on, off -** default value: `+on+` - -* [[option_irc.look.display_pv_warning_address]] *irc.look.display_pv_warning_address* -** description: pass:none[display a warning in private buffer if the address of remote nick has changed; this option is disabled by default because servers like bitlbee are causing this warning to be displayed when it is not expected (the address of remote nick changes multiple times on login)] -** type: boolean -** values: on, off -** default value: `+off+` - -* [[option_irc.look.highlight_channel]] *irc.look.highlight_channel* -** description: pass:none[comma separated list of words to highlight in channel buffers (case insensitive, use "(?-i)" at beginning of words to make them case sensitive; special variables $nick, $channel and $server are replaced by their values), these words are added to buffer property "highlight_words" only when buffer is created (it does not affect current buffers), an empty string disables default highlight on nick, examples: "$nick", "(?-i)$nick"] -** type: string -** values: any string -** default value: `+"$nick"+` - -* [[option_irc.look.highlight_pv]] *irc.look.highlight_pv* -** description: pass:none[comma separated list of words to highlight in private buffers (case insensitive, use "(?-i)" at beginning of words to make them case sensitive; special variables $nick, $channel and $server are replaced by their values), these words are added to buffer property "highlight_words" only when buffer is created (it does not affect current buffers), an empty string disables default highlight on nick, examples: "$nick", "(?-i)$nick"] -** type: string -** values: any string -** default value: `+"$nick"+` - -* [[option_irc.look.highlight_server]] *irc.look.highlight_server* -** description: pass:none[comma separated list of words to highlight in server buffers (case insensitive, use "(?-i)" at beginning of words to make them case sensitive; special variables $nick, $channel and $server are replaced by their values), these words are added to buffer property "highlight_words" only when buffer is created (it does not affect current buffers), an empty string disables default highlight on nick, examples: "$nick", "(?-i)$nick"] -** type: string -** values: any string -** default value: `+"$nick"+` - -* [[option_irc.look.highlight_tags_restrict]] *irc.look.highlight_tags_restrict* -** description: pass:none[restrict highlights to these tags on irc buffers (to have highlight on user messages but not server messages); tags must be separated by a comma and "+" can be used to make a logical "and" between tags; wildcard "*" is allowed in tags; an empty value allows highlight on any tag] -** type: string -** values: any string -** default value: `+"irc_privmsg,irc_notice"+` - -* [[option_irc.look.item_channel_modes_hide_args]] *irc.look.item_channel_modes_hide_args* -** description: pass:none[hide channel modes arguments if at least one of these modes is in channel modes ("*" to always hide all arguments, empty value to never hide arguments); example: "kf" to hide arguments if "k" or "f" are in channel modes] -** type: string -** values: any string -** default value: `+"k"+` - -* [[option_irc.look.item_display_server]] *irc.look.item_display_server* -** description: pass:none[name of bar item where IRC server is displayed (for status bar)] -** type: integer -** values: buffer_plugin, buffer_name -** default value: `+buffer_plugin+` - -* [[option_irc.look.item_nick_modes]] *irc.look.item_nick_modes* -** description: pass:none[display nick modes in bar item "input_prompt"] -** type: boolean -** values: on, off -** default value: `+on+` - -* [[option_irc.look.item_nick_prefix]] *irc.look.item_nick_prefix* -** description: pass:none[display nick prefix in bar item "input_prompt"] -** type: boolean -** values: on, off -** default value: `+on+` - -* [[option_irc.look.join_auto_add_chantype]] *irc.look.join_auto_add_chantype* -** description: pass:none[automatically add channel type in front of channel name on command /join if the channel name does not start with a valid channel type for the server; for example: "/join weechat" will in fact send: "/join #weechat"] -** type: boolean -** values: on, off -** default value: `+off+` - -* [[option_irc.look.msgbuffer_fallback]] *irc.look.msgbuffer_fallback* -** description: pass:none[default target buffer for msgbuffer options when target is private and that private buffer is not found] -** type: integer -** values: current, server -** default value: `+current+` - -* [[option_irc.look.new_channel_position]] *irc.look.new_channel_position* -** description: pass:none[force position of new channel in list of buffers (none = default position (should be last buffer), next = current buffer + 1, near_server = after last channel/pv of server)] -** type: integer -** values: none, next, near_server -** default value: `+none+` - -* [[option_irc.look.new_pv_position]] *irc.look.new_pv_position* -** description: pass:none[force position of new private in list of buffers (none = default position (should be last buffer), next = current buffer + 1, near_server = after last channel/pv of server)] -** type: integer -** values: none, next, near_server -** default value: `+none+` - -* [[option_irc.look.nick_completion_smart]] *irc.look.nick_completion_smart* -** description: pass:none[smart completion for nicks (completes first with last speakers): speakers = all speakers (including highlights), speakers_highlights = only speakers with highlight] -** type: integer -** values: off, speakers, speakers_highlights -** default value: `+speakers+` - -* [[option_irc.look.nick_mode]] *irc.look.nick_mode* -** description: pass:none[display nick mode (op, voice, ...) before nick (none = never, prefix = in prefix only (default), action = in action messages only, both = prefix + action messages)] -** type: integer -** values: none, prefix, action, both -** default value: `+prefix+` - -* [[option_irc.look.nick_mode_empty]] *irc.look.nick_mode_empty* -** description: pass:none[display a space if nick mode is enabled but nick has no mode (not op, voice, ...)] -** type: boolean -** values: on, off -** default value: `+off+` - -* [[option_irc.look.nicks_hide_password]] *irc.look.nicks_hide_password* -** description: pass:none[comma separated list of nicks for which passwords will be hidden when a message is sent, for example to hide password in message displayed by "/msg nickserv identify password", example: "nickserv,nickbot"] -** type: string -** values: any string -** default value: `+"nickserv"+` - -* [[option_irc.look.notice_as_pv]] *irc.look.notice_as_pv* -** description: pass:none[display notices as private messages (if auto, use private buffer if found)] -** type: integer -** values: auto, never, always -** default value: `+auto+` - -* [[option_irc.look.notice_welcome_redirect]] *irc.look.notice_welcome_redirect* -** description: pass:none[automatically redirect channel welcome notices to the channel buffer; such notices have the nick as target but a channel name in beginning of notice message, for example the ENTRYMSG notices sent by Atheme IRC Services which look like: "[#channel\] Welcome to this channel..."] -** type: boolean -** values: on, off -** default value: `+on+` - -* [[option_irc.look.notice_welcome_tags]] *irc.look.notice_welcome_tags* -** description: pass:none[comma separated list of tags used in a welcome notices redirected to a channel, for example: "notify_private"] -** type: string -** values: any string -** default value: `+""+` - -* [[option_irc.look.notify_tags_ison]] *irc.look.notify_tags_ison* -** description: pass:none[comma separated list of tags used in messages displayed by notify when a nick joins or quits server (result of command ison or monitor), for example: "notify_message", "notify_private" or "notify_highlight"] -** type: string -** values: any string -** default value: `+"notify_message"+` - -* [[option_irc.look.notify_tags_whois]] *irc.look.notify_tags_whois* -** description: pass:none[comma separated list of tags used in messages displayed by notify when a nick away status changes (result of command whois), for example: "notify_message", "notify_private" or "notify_highlight"] -** type: string -** values: any string -** default value: `+"notify_message"+` - -* [[option_irc.look.part_closes_buffer]] *irc.look.part_closes_buffer* -** description: pass:none[close buffer when /part is issued on a channel] -** type: boolean -** values: on, off -** default value: `+off+` - -* [[option_irc.look.pv_buffer]] *irc.look.pv_buffer* -** description: pass:none[merge private buffers] -** type: integer -** values: independent, merge_by_server, merge_all -** default value: `+independent+` - -* [[option_irc.look.pv_tags]] *irc.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_irc.look.raw_messages]] *irc.look.raw_messages* -** description: pass:none[number of raw messages to save in memory when raw data buffer is closed (messages will be displayed when opening raw data buffer)] -** type: integer -** values: 0 .. 65535 -** default value: `+256+` - -* [[option_irc.look.server_buffer]] *irc.look.server_buffer* -** description: pass:none[merge server buffers; this option has no effect if a layout is saved and is conflicting with this value (see /help layout)] -** type: integer -** values: merge_with_core, merge_without_core, independent -** default value: `+merge_with_core+` - -* [[option_irc.look.smart_filter]] *irc.look.smart_filter* -** description: pass:none[filter join/part/quit/nick messages for a nick if not speaking for some minutes on channel (you must create a filter on tag "irc_smart_filter", see /help filter)] -** type: boolean -** values: on, off -** default value: `+on+` - -* [[option_irc.look.smart_filter_account]] *irc.look.smart_filter_account* -** description: pass:none[enable smart filter for "account" messages] -** type: boolean -** values: on, off -** default value: `+on+` - -* [[option_irc.look.smart_filter_chghost]] *irc.look.smart_filter_chghost* -** description: pass:none[enable smart filter for "chghost" messages] -** type: boolean -** values: on, off -** default value: `+on+` - -* [[option_irc.look.smart_filter_delay]] *irc.look.smart_filter_delay* -** description: pass:none[delay for filtering join/part/quit messages (in minutes): if the nick did not speak during the last N minutes, the join/part/quit is filtered] -** type: integer -** values: 1 .. 10080 -** default value: `+5+` - -* [[option_irc.look.smart_filter_join]] *irc.look.smart_filter_join* -** description: pass:none[enable smart filter for "join" messages] -** type: boolean -** values: on, off -** default value: `+on+` - -* [[option_irc.look.smart_filter_join_unmask]] *irc.look.smart_filter_join_unmask* -** description: pass:none[delay for unmasking a join message that was filtered with tag "irc_smart_filter" (in minutes): if a nick has joined max N minutes ago and then says something on channel (message, notice or update on topic), the join is unmasked, as well as nick changes after this join (0 = disable: never unmask a join)] -** type: integer -** values: 0 .. 10080 -** default value: `+30+` - -* [[option_irc.look.smart_filter_mode]] *irc.look.smart_filter_mode* -** description: pass:none[enable smart filter for "mode" messages: "*" to filter all modes, "+" to filter all modes in server prefixes (for example "ovh"), "xyz" to filter only modes x/y/z, "-xyz" to filter all modes but not x/y/z; examples: "ovh": filter modes o/v/h, "-bkl": filter all modes but not b/k/l] -** type: string -** values: any string -** default value: `+"+"+` - -* [[option_irc.look.smart_filter_nick]] *irc.look.smart_filter_nick* -** description: pass:none[enable smart filter for "nick" messages (nick changes)] -** type: boolean -** values: on, off -** default value: `+on+` - -* [[option_irc.look.smart_filter_quit]] *irc.look.smart_filter_quit* -** description: pass:none[enable smart filter for "part" and "quit" messages] -** type: boolean -** values: on, off -** default value: `+on+` - -* [[option_irc.look.smart_filter_setname]] *irc.look.smart_filter_setname* -** description: pass:none[enable smart filter for "setname" messages] -** type: boolean -** values: on, off -** default value: `+on+` - -* [[option_irc.look.temporary_servers]] *irc.look.temporary_servers* -** description: pass:none[enable automatic addition of temporary servers with command /connect] -** type: boolean -** values: on, off -** default value: `+off+` - -* [[option_irc.look.topic_strip_colors]] *irc.look.topic_strip_colors* -** description: pass:none[strip colors in topic (used only when displaying buffer title)] -** type: boolean -** values: on, off -** default value: `+off+` - -* [[option_irc.look.typing_status_nicks]] *irc.look.typing_status_nicks* -** description: pass:none[display nicks typing on the channel in bar item "typing" (option typing.look.enabled_nicks must be enabled and capability "message-tags" must be enabled on the server)] -** type: boolean -** values: on, off -** default value: `+off+` - -* [[option_irc.look.typing_status_self]] *irc.look.typing_status_self* -** description: pass:none[send self typing status to channels so that other users see when you are typing a message (option typing.look.enabled_self must be enabled and capability "message-tags" must be enabled on the server)] -** type: boolean -** values: on, off -** default value: `+off+` - -* [[option_irc.network.autoreconnect_delay_growing]] *irc.network.autoreconnect_delay_growing* -** description: pass:none[growing factor for autoreconnect delay to server (1 = always same delay, 2 = delay*2 for each retry, etc.)] -** type: integer -** values: 1 .. 100 -** default value: `+2+` - -* [[option_irc.network.autoreconnect_delay_max]] *irc.network.autoreconnect_delay_max* -** description: pass:none[maximum autoreconnect delay to server (in seconds, 0 = no maximum)] -** type: integer -** values: 0 .. 604800 -** default value: `+600+` - -* [[option_irc.network.ban_mask_default]] *irc.network.ban_mask_default* -** description: pass:none[default ban mask for commands /ban, /unban and /kickban; variables $nick, $user, $ident and $host are replaced by their values (extracted from "nick!user@host"); $ident is the same as $user if $user does not start with "~", otherwise it is set to "*"; this default mask is used only if WeeChat knows the host for the nick] -** type: string -** values: any string -** default value: `+"*!$ident@$host"+` - -* [[option_irc.network.colors_receive]] *irc.network.colors_receive* -** description: pass:none[when off, colors codes are ignored in incoming messages] -** type: boolean -** values: on, off -** default value: `+on+` - -* [[option_irc.network.colors_send]] *irc.network.colors_send* -** description: pass:none[allow user to send colors with special codes (ctrl-c + a code and optional color: b=bold, cxx=color, cxx,yy=color+background, i=italic, o=disable color/attributes, r=reverse, u=underline)] -** type: boolean -** values: on, off -** default value: `+on+` - -* [[option_irc.network.lag_check]] *irc.network.lag_check* -** description: pass:none[interval between two checks for lag (in seconds, 0 = never check)] -** type: integer -** values: 0 .. 604800 -** default value: `+60+` - -* [[option_irc.network.lag_max]] *irc.network.lag_max* -** description: pass:none[maximum lag (in seconds): if this lag is reached, WeeChat will consider that the answer from server (pong) will never be received and will give up counting the lag (0 = never give up)] -** type: integer -** values: 0 .. 604800 -** default value: `+1800+` - -* [[option_irc.network.lag_min_show]] *irc.network.lag_min_show* -** description: pass:none[minimum lag to show (in milliseconds)] -** type: integer -** values: 0 .. 86400000 -** default value: `+500+` - -* [[option_irc.network.lag_reconnect]] *irc.network.lag_reconnect* -** description: pass:none[reconnect to server if lag is greater than or equal to this value (in seconds, 0 = never reconnect); this value must be less than or equal to irc.network.lag_max] -** type: integer -** values: 0 .. 604800 -** default value: `+300+` - -* [[option_irc.network.lag_refresh_interval]] *irc.network.lag_refresh_interval* -** description: pass:none[interval between two refreshes of lag item, when lag is increasing (in seconds)] -** type: integer -** values: 1 .. 3600 -** default value: `+1+` - -* [[option_irc.network.notify_check_ison]] *irc.network.notify_check_ison* -** description: pass:none[interval between two checks for notify with IRC command "ison" (in minutes)] -** type: integer -** values: 1 .. 10080 -** default value: `+1+` - -* [[option_irc.network.notify_check_whois]] *irc.network.notify_check_whois* -** description: pass:none[interval between two checks for notify with IRC command "whois" (in minutes)] -** type: integer -** values: 1 .. 10080 -** default value: `+5+` - -* [[option_irc.network.sasl_fail_unavailable]] *irc.network.sasl_fail_unavailable* -** description: pass:none[cause SASL authentication failure when SASL is requested but unavailable on the server; when this option is enabled, it has effect only if option "sasl_fail" is set to "reconnect" or "disconnect" in the server] -** type: boolean -** values: on, off -** default value: `+on+` - -* [[option_irc.network.send_unknown_commands]] *irc.network.send_unknown_commands* -** description: pass:none[send unknown commands to server] -** type: boolean -** values: on, off -** default value: `+off+` - -* [[option_irc.network.whois_double_nick]] *irc.network.whois_double_nick* -** description: pass:none[double the nick in /whois command (if only one nick is given), to get idle time in answer; for example: "/whois nick" will send "whois nick nick"] -** type: boolean -** values: on, off -** default value: `+off+` - -* [[option_irc.server_default.addresses]] *irc.server_default.addresses* -** description: pass:none[list of hostname/port or IP/port for server (separated by comma) (note: content is evaluated, see /help eval; server options are evaluated with ${irc_server.xxx} and ${server} is replaced by the server name)] -** type: string -** values: any string -** default value: `+""+` - -* [[option_irc.server_default.anti_flood_prio_high]] *irc.server_default.anti_flood_prio_high* -** description: pass:none[anti-flood for high priority queue: number of seconds between two user messages or commands sent to IRC server (0 = no anti-flood)] -** type: integer -** values: 0 .. 60 -** default value: `+2+` - -* [[option_irc.server_default.anti_flood_prio_low]] *irc.server_default.anti_flood_prio_low* -** description: pass:none[anti-flood for low priority queue: number of seconds between two messages sent to IRC server (messages like automatic CTCP replies) (0 = no anti-flood)] -** type: integer -** values: 0 .. 60 -** default value: `+2+` - -* [[option_irc.server_default.autoconnect]] *irc.server_default.autoconnect* -** description: pass:none[automatically connect to server when WeeChat is starting] -** type: boolean -** values: on, off -** default value: `+off+` - -* [[option_irc.server_default.autojoin]] *irc.server_default.autojoin* -** description: pass:none[comma separated list of channels to join after connection to server (and after executing command + delay if they are set); the channels that require a key must be at beginning of the list, and all the keys must be given after the channels (separated by a space) (example: "#channel1,#channel2,#channel3 key1,key2" where #channel1 and #channel2 are protected by key1 and key2) (note: content is evaluated, see /help eval; server options are evaluated with ${irc_server.xxx} and ${server} is replaced by the server name)] -** type: string -** values: any string -** default value: `+""+` - -* [[option_irc.server_default.autojoin_dynamic]] *irc.server_default.autojoin_dynamic* -** description: pass:none[set automatically the "autojoin" option according to the channels you manually join and part with commands /join and /part] -** type: boolean -** values: on, off -** default value: `+off+` - -* [[option_irc.server_default.autoreconnect]] *irc.server_default.autoreconnect* -** description: pass:none[automatically reconnect to server when disconnected] -** type: boolean -** values: on, off -** default value: `+on+` - -* [[option_irc.server_default.autoreconnect_delay]] *irc.server_default.autoreconnect_delay* -** description: pass:none[delay (in seconds) before trying again to reconnect to server] -** type: integer -** values: 1 .. 65535 -** default value: `+10+` - -* [[option_irc.server_default.autorejoin]] *irc.server_default.autorejoin* -** description: pass:none[automatically rejoin channels after kick; you can define a buffer local variable on a channel to override this value (name of variable: "autorejoin", value: "on" or "off")] -** type: boolean -** values: on, off -** default value: `+off+` - -* [[option_irc.server_default.autorejoin_delay]] *irc.server_default.autorejoin_delay* -** description: pass:none[delay (in seconds) before autorejoin (after kick)] -** type: integer -** values: 0 .. 86400 -** default value: `+30+` - -* [[option_irc.server_default.away_check]] *irc.server_default.away_check* -** description: pass:none[interval between two checks for away (in minutes, 0 = never check)] -** type: integer -** values: 0 .. 10080 -** default value: `+0+` - -* [[option_irc.server_default.away_check_max_nicks]] *irc.server_default.away_check_max_nicks* -** description: pass:none[do not check away nicks on channels with high number of nicks (0 = unlimited)] -** type: integer -** values: 0 .. 1000000 -** default value: `+25+` - -* [[option_irc.server_default.capabilities]] *irc.server_default.capabilities* -** description: pass:none[comma-separated list of client capabilities to enable for server if they are available (see /help cap for a list of capabilities supported by WeeChat); "*" enables all capabilities by default (supported by both server and WeeChat); wildcard "*" is allowed; a capability beginning with "!" is excluded (example: "*,!account-*,!extended-join")] -** type: string -** values: any string -** default value: `+"*"+` - -* [[option_irc.server_default.charset_message]] *irc.server_default.charset_message* -** description: pass:none[part of the IRC message (received or sent) which is decoded/encoded to the target charset; message = the whole IRC message (default), channel = starting from the channel name only (if found, with fallback on text), text = starting from the text only (you should try this value if you have issues with the channel name encoding)] -** type: integer -** values: message, channel, text -** default value: `+message+` - -* [[option_irc.server_default.command]] *irc.server_default.command* -** description: pass:none[command(s) to run after connection to server and before auto-join of channels (many commands can be separated by ";", use "\;" for a semicolon, special variables $nick, $channel and $server are replaced by their values) (note: commands are evaluated, see /help eval; server options are evaluated with ${irc_server.xxx} and ${server} is replaced by the server name)] -** type: string -** values: any string -** default value: `+""+` - -* [[option_irc.server_default.command_delay]] *irc.server_default.command_delay* -** description: pass:none[delay (in seconds) after execution of command and before auto-join of channels (example: give some time for authentication before joining channels)] -** type: integer -** values: 0 .. 3600 -** default value: `+0+` - -* [[option_irc.server_default.connection_timeout]] *irc.server_default.connection_timeout* -** description: pass:none[timeout (in seconds) between TCP connection to server and message 001 received, if this timeout is reached before 001 message is received, WeeChat will disconnect from server] -** type: integer -** values: 1 .. 3600 -** default value: `+60+` - -* [[option_irc.server_default.default_chantypes]] *irc.server_default.default_chantypes* -** description: pass:none[channel type prefixes to use if the server does not send them in message 005 (default is "#&")] -** type: string -** values: any string -** default value: `+"#&"+` - -* [[option_irc.server_default.ipv6]] *irc.server_default.ipv6* -** description: pass:none[use IPv6 protocol for server communication (try IPv6 then fallback to IPv4); if disabled, only IPv4 is used] -** type: boolean -** values: on, off -** default value: `+on+` - -* [[option_irc.server_default.local_hostname]] *irc.server_default.local_hostname* -** description: pass:none[custom local hostname/IP for server (optional, if empty local hostname is used)] -** type: string -** values: any string -** default value: `+""+` - -* [[option_irc.server_default.msg_kick]] *irc.server_default.msg_kick* -** description: pass:none[default kick message used by commands "/kick" and "/kickban" (note: content is evaluated, see /help eval; special variables ${nick} (self nick), ${target} (target nick), ${channel} and ${server} are replaced by their values)] -** type: string -** values: any string -** default value: `+""+` - -* [[option_irc.server_default.msg_part]] *irc.server_default.msg_part* -** description: pass:none[default part message (leaving channel) (note: content is evaluated, see /help eval; special variables ${nick}, ${channel} and ${server} are replaced by their values; "%v" is replaced by WeeChat version if there is no ${...} in string)] -** type: string -** values: any string -** default value: `+"WeeChat ${info:version}"+` - -* [[option_irc.server_default.msg_quit]] *irc.server_default.msg_quit* -** description: pass:none[default quit message (disconnecting from server) (note: content is evaluated, see /help eval; special variables ${nick}, ${channel} and ${server} are replaced by their values; "%v" is replaced by WeeChat version if there is no ${...} in string)] -** type: string -** values: any string -** default value: `+"WeeChat ${info:version}"+` - -* [[option_irc.server_default.nicks]] *irc.server_default.nicks* -** description: pass:none[nicknames to use on server (separated by comma) (note: content is evaluated, see /help eval; server options are evaluated with ${irc_server.xxx} and ${server} is replaced by the server name)] -** type: string -** values: any string -** default value: `+""+` - -* [[option_irc.server_default.nicks_alternate]] *irc.server_default.nicks_alternate* -** description: pass:none[get an alternate nick when all the declared nicks are already used on server: add some "_" until the nick has a length of 9, and then replace last char (or the two last chars) by a number from 1 to 99, until we find a nick not used on server] -** type: boolean -** values: on, off -** default value: `+on+` - -* [[option_irc.server_default.notify]] *irc.server_default.notify* -** description: pass:none[notify list for server (you should not change this option but use /notify command instead)] -** type: string -** values: any string -** default value: `+""+` - -* [[option_irc.server_default.password]] *irc.server_default.password* -** description: pass:none[password for server (note: content is evaluated, see /help eval; server options are evaluated with ${irc_server.xxx} and ${server} is replaced by the server name)] -** type: string -** values: any string -** default value: `+""+` - -* [[option_irc.server_default.proxy]] *irc.server_default.proxy* -** description: pass:none[name of proxy used for this server (optional, proxy must be defined with command /proxy)] -** type: string -** values: any string -** default value: `+""+` - -* [[option_irc.server_default.realname]] *irc.server_default.realname* -** description: pass:none[real name to use on server (note: content is evaluated, see /help eval; server options are evaluated with ${irc_server.xxx} and ${server} is replaced by the server name)] -** type: string -** values: any string -** default value: `+""+` - -* [[option_irc.server_default.sasl_fail]] *irc.server_default.sasl_fail* -** description: pass:none[action to perform if SASL authentication fails: "continue" to ignore the authentication problem, "reconnect" to schedule a reconnection to the server, "disconnect" to disconnect from server (see also option irc.network.sasl_fail_unavailable)] -** type: integer -** values: continue, reconnect, disconnect -** default value: `+reconnect+` - -* [[option_irc.server_default.sasl_key]] *irc.server_default.sasl_key* -** description: pass:none[file with ECC private key for mechanism "ecdsa-nist256p-challenge" (path is evaluated, see function string_eval_path_home in plugin API reference)] -** type: string -** values: any string -** default value: `+""+` - -* [[option_irc.server_default.sasl_mechanism]] *irc.server_default.sasl_mechanism* -** description: pass:none[mechanism for SASL authentication: "plain" for plain text password, "scram-sha-1" for SCRAM authentication with SHA-1 digest algorithm, "scram-sha-256" for SCRAM authentication with SHA-256 digest algorithm, "scram-sha-512" for SCRAM authentication with SHA-512 digest algorithm, "ecdsa-nist256p-challenge" for key-based challenge authentication, "external" for authentication using client side SSL certificate] -** type: integer -** values: plain, scram-sha-1, scram-sha-256, scram-sha-512, ecdsa-nist256p-challenge, external -** default value: `+plain+` - -* [[option_irc.server_default.sasl_password]] *irc.server_default.sasl_password* -** description: pass:none[password for SASL authentication; this option is not used for mechanisms "ecdsa-nist256p-challenge" and "external" (note: content is evaluated, see /help eval; server options are evaluated with ${irc_server.xxx} and ${server} is replaced by the server name)] -** type: string -** values: any string -** default value: `+""+` - -* [[option_irc.server_default.sasl_timeout]] *irc.server_default.sasl_timeout* -** description: pass:none[timeout (in seconds) before giving up SASL authentication] -** type: integer -** values: 1 .. 3600 -** default value: `+15+` - -* [[option_irc.server_default.sasl_username]] *irc.server_default.sasl_username* -** description: pass:none[username for SASL authentication; this option is not used for mechanism "external" (note: content is evaluated, see /help eval; server options are evaluated with ${irc_server.xxx} and ${server} is replaced by the server name)] -** type: string -** values: any string -** default value: `+""+` - -* [[option_irc.server_default.split_msg_max_length]] *irc.server_default.split_msg_max_length* -** description: pass:none[split outgoing IRC messages to fit in this number of chars; the default value is 512, this is a safe and recommended value; value 0 disables the split (not recommended, unless you know what you do); allowed values are 0 or any integer between 128 and 4096; this option should be changed only on non-standard IRC servers, for example gateways like bitlbee] -** type: integer -** values: 0 .. 4096 -** default value: `+512+` - -* [[option_irc.server_default.ssl]] *irc.server_default.ssl* -** description: pass:none[use SSL for server communication] -** type: boolean -** values: on, off -** default value: `+off+` - -* [[option_irc.server_default.ssl_cert]] *irc.server_default.ssl_cert* -** description: pass:none[SSL certificate file used to automatically identify your nick (path is evaluated, see function string_eval_path_home in plugin API reference)] -** type: string -** values: any string -** default value: `+""+` - -* [[option_irc.server_default.ssl_dhkey_size]] *irc.server_default.ssl_dhkey_size* -** description: pass:none[size of the key used during the Diffie-Hellman Key Exchange] -** type: integer -** values: 0 .. 2147483647 -** default value: `+2048+` - -* [[option_irc.server_default.ssl_fingerprint]] *irc.server_default.ssl_fingerprint* -** description: pass:none[fingerprint of certificate which is trusted and accepted for the server; only hexadecimal digits are allowed (0-9, a-f): 128 chars for SHA-512, 64 chars for SHA-256, 40 chars for SHA-1 (insecure, not recommended); many fingerprints can be separated by commas; if this option is set, the other checks on certificates are NOT performed (option "ssl_verify") (note: content is evaluated, see /help eval; server options are evaluated with ${irc_server.xxx} and ${server} is replaced by the server name)] -** type: string -** values: any string -** default value: `+""+` - -* [[option_irc.server_default.ssl_password]] *irc.server_default.ssl_password* -** description: pass:none[password for SSL certificate's private key; only used with gnutls version >= 3.1.0 (note: content is evaluated, see /help eval; server options are evaluated with ${irc_server.xxx} and ${server} is replaced by the server name)] -** type: string -** values: any string -** default value: `+""+` - -* [[option_irc.server_default.ssl_priorities]] *irc.server_default.ssl_priorities* -** description: pass:none[string with priorities for gnutls (for syntax, see documentation of function gnutls_priority_init in gnutls manual, common strings are: "PERFORMANCE", "NORMAL", "SECURE128", "SECURE256", "EXPORT", "NONE")] -** type: string -** values: any string -** default value: `+"NORMAL:-VERS-SSL3.0"+` - -* [[option_irc.server_default.ssl_verify]] *irc.server_default.ssl_verify* -** description: pass:none[check that the SSL connection is fully trusted] -** type: boolean -** values: on, off -** default value: `+on+` - -* [[option_irc.server_default.usermode]] *irc.server_default.usermode* -** description: pass:none[user mode(s) to set after connection to server and before executing command and the auto-join of channels; examples: "+R" (to set mode "R"), "+R-i" (to set mode "R" and remove "i"); see /help mode for the complete mode syntax (note: content is evaluated, see /help eval; server options are evaluated with ${irc_server.xxx} and ${server} is replaced by the server name)] -** type: string -** values: any string -** default value: `+""+` - -* [[option_irc.server_default.username]] *irc.server_default.username* -** description: pass:none[user name to use on server (note: content is evaluated, see /help eval; server options are evaluated with ${irc_server.xxx} and ${server} is replaced by the server name)] -** type: string -** values: any string -** default value: `+""+` -// end::irc_options[] - -// tag::relay_options[] -* [[option_relay.color.client]] *relay.color.client* -** description: pass:none[text color for client 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: `+cyan+` - -* [[option_relay.color.status_active]] *relay.color.status_active* -** description: pass:none[text color for "connected" 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: `+green+` - -* [[option_relay.color.status_auth_failed]] *relay.color.status_auth_failed* -** description: pass:none[text color for "authentication 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: `+lightmagenta+` - -* [[option_relay.color.status_connecting]] *relay.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: `+white+` - -* [[option_relay.color.status_disconnected]] *relay.color.status_disconnected* -** description: pass:none[text color for "disconnected" 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_relay.color.status_waiting_auth]] *relay.color.status_waiting_auth* -** description: pass:none[text color for "waiting authentication" 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_relay.color.text]] *relay.color.text* -** description: pass:none[text color in relay 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_relay.color.text_bg]] *relay.color.text_bg* -** description: pass:none[background color in relay 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_relay.color.text_selected]] *relay.color.text_selected* -** description: pass:none[text color of selected line in relay 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_relay.irc.backlog_max_minutes]] *relay.irc.backlog_max_minutes* -** description: pass:none[maximum number of minutes in backlog per IRC channel (0 = unlimited, examples: 1440 = one day, 10080 = one week, 43200 = one month, 525600 = one year)] -** type: integer -** values: 0 .. 2147483647 -** default value: `+0+` - -* [[option_relay.irc.backlog_max_number]] *relay.irc.backlog_max_number* -** description: pass:none[maximum number of lines in backlog per IRC channel (0 = unlimited)] -** type: integer -** values: 0 .. 2147483647 -** default value: `+1024+` - -* [[option_relay.irc.backlog_since_last_disconnect]] *relay.irc.backlog_since_last_disconnect* -** description: pass:none[display backlog starting from last client disconnect] -** type: boolean -** values: on, off -** default value: `+on+` - -* [[option_relay.irc.backlog_since_last_message]] *relay.irc.backlog_since_last_message* -** description: pass:none[display backlog starting from your last message] -** type: boolean -** values: on, off -** default value: `+off+` - -* [[option_relay.irc.backlog_tags]] *relay.irc.backlog_tags* -** description: pass:none[comma-separated list of messages tags which are displayed in backlog per IRC channel (supported tags: "irc_join", "irc_part", "irc_quit", "irc_nick", "irc_privmsg"), "*" = all supported tags] -** type: string -** values: any string -** default value: `+"irc_privmsg"+` - -* [[option_relay.irc.backlog_time_format]] *relay.irc.backlog_time_format* -** description: pass:none[format for time in backlog messages (see man strftime for format) (not used if server capability "server-time" was enabled by client, because time is sent as irc tag); empty string = disable time in backlog messages] -** type: string -** values: any string -** default value: `+"[%H:%M] "+` - -* [[option_relay.look.auto_open_buffer]] *relay.look.auto_open_buffer* -** description: pass:none[auto open relay buffer when a new client is connecting] -** type: boolean -** values: on, off -** default value: `+on+` - -* [[option_relay.look.raw_messages]] *relay.look.raw_messages* -** description: pass:none[number of raw messages to save in memory when raw data buffer is closed (messages will be displayed when opening raw data buffer)] -** type: integer -** values: 0 .. 65535 -** default value: `+256+` - -* [[option_relay.network.allow_empty_password]] *relay.network.allow_empty_password* -** description: pass:none[allow empty password in relay (it should be enabled only for tests or local network)] -** type: boolean -** values: on, off -** default value: `+off+` - -* [[option_relay.network.allowed_ips]] *relay.network.allowed_ips* -** description: pass:none[POSIX extended regular expression with IPs allowed to use relay (case insensitive, use "(?-i)" at beginning to make it case sensitive), example: "^(123\.45\.67\.89|192\.160\..*)$"] -** type: string -** values: any string -** default value: `+""+` - -* [[option_relay.network.auth_timeout]] *relay.network.auth_timeout* -** description: pass:none[timeout (in seconds) for client authentication: connection is closed if the client is still not authenticated after this delay and the client status is set to "authentication failed" (0 = wait forever)] -** type: integer -** values: 0 .. 2147483647 -** default value: `+60+` - -* [[option_relay.network.bind_address]] *relay.network.bind_address* -** description: pass:none[address for bind (if empty, connection is possible on all interfaces, use "127.0.0.1" to allow connections from local machine only)] -** type: string -** values: any string -** default value: `+""+` - -* [[option_relay.network.clients_purge_delay]] *relay.network.clients_purge_delay* -** description: pass:none[delay for purging disconnected clients (in minutes, 0 = purge clients immediately, -1 = never purge)] -** type: integer -** values: -1 .. 43200 -** default value: `+0+` - -* [[option_relay.network.compression]] *relay.network.compression* -** description: pass:none[compression of messages sent to clients with "weechat" protocol: 0 = disable compression, 1 = low compression / fast ... 100 = best compression / slow; the value is a percentage converted to 1-9 for zlib and 1-19 for zstd; the default value is recommended, it offers a good compromise between compression and speed] -** type: integer -** values: 0 .. 100 -** default value: `+20+` - -* [[option_relay.network.ipv6]] *relay.network.ipv6* -** description: pass:none[listen on IPv6 socket by default (in addition to IPv4 which is default); protocols IPv4 and IPv6 can be forced (individually or together) in the protocol name (see /help relay)] -** type: boolean -** values: on, off -** default value: `+on+` - -* [[option_relay.network.max_clients]] *relay.network.max_clients* -** description: pass:none[maximum number of clients connecting to a port (0 = no limit)] -** type: integer -** values: 0 .. 2147483647 -** default value: `+5+` - -* [[option_relay.network.nonce_size]] *relay.network.nonce_size* -** description: pass:none[size of nonce (in bytes), generated when a client connects; the client must use this nonce, concatenated to the client nonce and the password when hashing the password in the "init" command of the weechat protocol] -** type: integer -** values: 8 .. 128 -** default value: `+16+` - -* [[option_relay.network.password]] *relay.network.password* -** description: pass:none[password required by clients to access this relay (empty value means no password required, see option relay.network.allow_empty_password) (note: content is evaluated, see /help eval)] -** type: string -** values: any string -** default value: `+""+` - -* [[option_relay.network.password_hash_algo]] *relay.network.password_hash_algo* -** description: pass:none[comma separated list of hash algorithms used for password authentication in weechat protocol, among these values: "plain" (password in plain text, not hashed), "sha256", "sha512", "pbkdf2+sha256", "pbkdf2+sha512"), "*" means all algorithms, a name beginning with "!" is a negative value to prevent an algorithm from being used, wildcard "*" is allowed in names (examples: "*", "pbkdf2*", "*,!plain")] -** type: string -** values: any string -** default value: `+"*"+` - -* [[option_relay.network.password_hash_iterations]] *relay.network.password_hash_iterations* -** description: pass:none[number of iterations asked to the client in weechat protocol when a hashed password with algorithm PBKDF2 is used for authentication; more iterations is better in term of security but is slower to compute; this number should not be too high if your CPU is slow] -** type: integer -** values: 1 .. 1000000 -** default value: `+100000+` - -* [[option_relay.network.ssl_cert_key]] *relay.network.ssl_cert_key* -** description: pass:none[file with SSL certificate and private key (for serving clients with SSL) (path is evaluated, see function string_eval_path_home in plugin API reference)] -** type: string -** values: any string -** default value: `+"${weechat_config_dir}/ssl/relay.pem"+` - -* [[option_relay.network.ssl_priorities]] *relay.network.ssl_priorities* -** description: pass:none[string with priorities for gnutls (for syntax, see documentation of function gnutls_priority_init in gnutls manual, common strings are: "PERFORMANCE", "NORMAL", "SECURE128", "SECURE256", "EXPORT", "NONE")] -** type: string -** values: any string -** default value: `+"NORMAL:-VERS-SSL3.0"+` - -* [[option_relay.network.totp_secret]] *relay.network.totp_secret* -** description: pass:none[secret for the generation of the Time-based One-Time Password (TOTP), encoded in base32 (only letters and digits from 2 to 7); it is used as second factor in weechat protocol, in addition to the password, which must not be empty (empty value means no TOTP is required) (note: content is evaluated, see /help eval)] -** type: string -** values: any string -** default value: `+""+` - -* [[option_relay.network.totp_window]] *relay.network.totp_window* -** description: pass:none[number of Time-based One-Time Passwords to accept before and after the current one: 0 = accept only the current password, 1 = accept one password before, the current, and one after, 2 = accept two passwords before, the current, and two after, ...; a high number reduces the security level (0 or 1 are recommended values)] -** type: integer -** values: 0 .. 256 -** default value: `+0+` - -* [[option_relay.network.websocket_allowed_origins]] *relay.network.websocket_allowed_origins* -** description: pass:none[POSIX extended regular expression with origins allowed in websockets (case insensitive, use "(?-i)" at beginning to make it case sensitive), example: "^https?://(www\.)?example\.(com|org)"] -** type: string -** values: any string -** default value: `+""+` - -* [[option_relay.weechat.commands]] *relay.weechat.commands* -** description: pass:none[comma-separated list of commands allowed/denied when input data (text or command) is received from a client; "*" means any command, a name beginning with "!" is a negative value to prevent a command from being executed, wildcard "*" is allowed in names; this option should be set if the relay client is not safe (someone could use it to run commands); for example "*,!exec,!quit" allows any command except /exec and /quit] -** type: string -** values: any string -** 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] -** type: boolean -** values: on, off -** default value: `+off+` - -* [[option_ruby.look.eval_keep_context]] *ruby.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::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")] -** 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_script.color.status_held]] *script.color.status_held* -** description: pass:none[color for status "held" ("H")] -** 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_script.color.status_installed]] *script.color.status_installed* -** description: pass:none[color for status "installed" ("i")] -** 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_script.color.status_obsolete]] *script.color.status_obsolete* -** description: pass:none[color for status "obsolete" ("N")] -** 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_script.color.status_popular]] *script.color.status_popular* -** description: pass:none[color for status "popular" ("*")] -** 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_script.color.status_running]] *script.color.status_running* -** description: pass:none[color for status "running" ("r")] -** 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_script.color.status_unknown]] *script.color.status_unknown* -** description: pass:none[color for status "unknown" ("?")] -** 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_script.color.text]] *script.color.text* -** description: pass:none[text color in script 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_script.color.text_bg]] *script.color.text_bg* -** description: pass:none[background color in script 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_script.color.text_bg_selected]] *script.color.text_bg_selected* -** description: pass:none[background color for selected line in script 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: `+red+` - -* [[option_script.color.text_date]] *script.color.text_date* -** description: pass:none[text color of dates in script 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_script.color.text_date_selected]] *script.color.text_date_selected* -** description: pass:none[text color of dates for selected line in script 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_script.color.text_delimiters]] *script.color.text_delimiters* -** description: pass:none[text color of delimiters in script 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_script.color.text_description]] *script.color.text_description* -** description: pass:none[text color of description in script 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_script.color.text_description_selected]] *script.color.text_description_selected* -** description: pass:none[text color of description for selected line in script 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_script.color.text_extension]] *script.color.text_extension* -** description: pass:none[text color of extension in script 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_script.color.text_extension_selected]] *script.color.text_extension_selected* -** description: pass:none[text color of extension for selected line in script 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_script.color.text_name]] *script.color.text_name* -** description: pass:none[text color of script name in script 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_script.color.text_name_selected]] *script.color.text_name_selected* -** description: pass:none[text color of script name for selected line in script 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+` - -* [[option_script.color.text_selected]] *script.color.text_selected* -** description: pass:none[text color for selected line in script 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_script.color.text_tags]] *script.color.text_tags* -** description: pass:none[text color of tags in script 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: `+brown+` - -* [[option_script.color.text_tags_selected]] *script.color.text_tags_selected* -** description: pass:none[text color of tags for selected line in script 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_script.color.text_version]] *script.color.text_version* -** description: pass:none[text color of version in script 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: `+magenta+` - -* [[option_script.color.text_version_loaded]] *script.color.text_version_loaded* -** description: pass:none[text color of version loaded in script 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_script.color.text_version_loaded_selected]] *script.color.text_version_loaded_selected* -** description: pass:none[text color of version loaded for selected line in script 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_script.color.text_version_selected]] *script.color.text_version_selected* -** description: pass:none[text color of version for selected line in script 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: `+lightmagenta+` - -* [[option_script.look.columns]] *script.look.columns* -** description: pass:none[format of columns displayed in script buffer: following column identifiers are replaced by their values: %a=author, %d=description, %D=date added, %e=extension, %l=language, %L=license, %n=name with extension, %N=name, %r=requirements, %s=status, %t=tags, %u=date updated, %v=version, %V=version loaded, %w=min_weechat, %W=max_weechat)] -** type: string -** values: any string -** default value: `+"%s %n %V %v %u | %d | %t"+` - -* [[option_script.look.diff_color]] *script.look.diff_color* -** description: pass:none[colorize output of diff] -** type: boolean -** values: on, off -** default value: `+on+` - -* [[option_script.look.diff_command]] *script.look.diff_command* -** description: pass:none[command used to show differences between script installed and the new version in repository ("auto" = auto detect diff command (git or diff), empty value = disable diff, other string = name of command, for example "diff")] -** type: string -** values: any string -** default value: `+"auto"+` - -* [[option_script.look.display_source]] *script.look.display_source* -** description: pass:none[display source code of script on buffer with detail on a script (script is downloaded in a temporary file when detail on script is displayed)] -** type: boolean -** values: on, off -** default value: `+on+` - -* [[option_script.look.quiet_actions]] *script.look.quiet_actions* -** description: pass:none[quiet actions on script buffer: do not display messages on core buffer when scripts are installed/removed/loaded/unloaded (only errors are displayed)] -** type: boolean -** values: on, off -** default value: `+on+` - -* [[option_script.look.sort]] *script.look.sort* -** description: pass:none[default sort keys for scripts: comma-separated list of identifiers: a=author, A=autoloaded, d=date added, e=extension, i=installed, l=language, n=name, o=obsolete, p=popularity, r=running, u=date updated; char "-" can be used before identifier to reverse order; example: "i,u": installed scripts first, sorted by update date] -** type: string -** values: any string -** default value: `+"i,p,n"+` - -* [[option_script.look.translate_description]] *script.look.translate_description* -** description: pass:none[translate description of scripts (if translation is available in your language, otherwise English version is used)] -** type: boolean -** values: on, off -** default value: `+on+` - -* [[option_script.look.use_keys]] *script.look.use_keys* -** description: pass:none[use keys alt+X in script buffer to do actions on scripts (alt+i = install, alt+r = remove, ...); if disabled, only the input is allowed: i, r, ...] -** type: boolean -** values: on, off -** default value: `+on+` - -* [[option_script.scripts.autoload]] *script.scripts.autoload* -** description: pass:none[autoload scripts installed (make a link in "autoload" directory to script in parent directory)] -** type: boolean -** values: on, off -** default value: `+on+` - -* [[option_script.scripts.cache_expire]] *script.scripts.cache_expire* -** description: pass:none[local cache expiration time, in minutes (-1 = never expires, 0 = always expire)] -** type: integer -** values: -1 .. 525600 -** default value: `+1440+` - -* [[option_script.scripts.download_enabled]] *script.scripts.download_enabled* -** description: pass:none[enable download of files from the scripts repository when the /script command is used (list of scripts and scripts themselves); the list of scripts is downloaded from the URL specified in the option script.scripts.url; WeeChat will sometimes download again the list of scripts when you use the /script command, even if you don't install a script] -** type: boolean -** values: on, off -** default value: `+off+` - -* [[option_script.scripts.download_timeout]] *script.scripts.download_timeout* -** description: pass:none[timeout (in seconds) for download of scripts and list of scripts] -** type: integer -** values: 1 .. 3600 -** default value: `+30+` - -* [[option_script.scripts.hold]] *script.scripts.hold* -** description: pass:none[scripts to "hold": comma-separated list of scripts which will never been upgraded and can not be removed, for example: "go.py,urlserver.py"] -** type: string -** values: any string -** default value: `+""+` - -* [[option_script.scripts.path]] *script.scripts.path* -** description: pass:none[local cache directory for scripts (path is evaluated, see function string_eval_path_home in plugin API reference)] -** type: string -** values: any string -** default value: `+"${weechat_cache_dir}/script"+` - -* [[option_script.scripts.url]] *script.scripts.url* -** description: pass:none[URL for file with list of scripts] -** type: string -** values: any string -** 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+` - -* [[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_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: `+default+` - -* [[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_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_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: `+brown+` - -* [[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: `+yellow+` - -* [[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: `+white+` - -* [[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: `+white+` - -* [[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: `+default+` - -* [[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: `+white+` - -* [[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: `+darkgray+` - -* [[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_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: `+cyan+` - -* [[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: `+lightcyan+` - -* [[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: `+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)] -** 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)] -** 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+` - -* [[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: `+red+` - -* [[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: `+brown+` - -* [[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_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: `+default+` - -* [[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: `+white+` - -* [[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: `+default+` - -* [[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: `+white+` - -* [[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: `+default+` - -* [[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: `+brown+` - -* [[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: `+yellow+` - -* [[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: `+white+` - -* [[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: `+default+` - -* [[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: `+brown+` - -* [[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: `+yellow+` - -* [[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: `+white+` - -* [[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: `+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] -** 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_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: `+cyan+` - -* [[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: `+lightcyan+` - -* [[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: `+darkgray+` - -* [[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: `+default+` - -* [[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_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: `+default+` - -* [[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_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: `+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] -** 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] -** 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.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_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: `+white+` - -* [[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: `+cyan+` - -* [[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: `+lightcyan+` - -* [[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_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: `+lightgreen+` - -* [[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: `+white+` - -* [[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: `+green+` - -* [[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: `+lightgreen+` - -* [[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: `+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] -** 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.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: `+cyan+` - -* [[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: `+brown+` - -* [[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: `+yellow+` - -* [[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: `+lightcyan+` - -* [[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: `+magenta+` - -* [[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: `+lightmagenta+` - -* [[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: `+"# ${description2}"+` - -* [[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: `+"/set ${name} ${quoted_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)] -** type: string -** values: any string -** default value: `+"/unset ${name}"+` - -* [[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: `+""+` - -* [[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: `+"${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* -** 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: `+"*"+` - -* [[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: `+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] -** type: string -** values: any string -** default value: `+"${count} >= 1"+` - -* [[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_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 .. 2 -** default value: `+1+` - -* [[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: `+"*"+` - -* [[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 .. 100 -** default value: `+10+` - -* [[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_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_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: `+" "+` - -* [[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_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_fset.look.use_mute]] *fset.look.use_mute* -** description: pass:none[use /mute command to set options] -** type: boolean -** values: on, off -** default value: `+off+` -// end::fset_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 [[;...]] addcompletion [[;...]] del [...] + rename 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,6 +3,2264 @@ // DO NOT EDIT BY HAND! // +// 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},"+` + +* [[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+` + +* [[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_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_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+` + +* [[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_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] +** type: entier +** valeurs: 1 .. 3 +** valeur par défaut: `+1+` +// end::buflist_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[] + +// 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: `+lightred+` + +* [[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: `+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[] + +// 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)] +** type: chaîne +** valeurs: toute chaîne +** valeur par défaut: `+"${weechat_runtime_dir}/weechat_fifo_${info:pid}"+` +// end::fifo_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+` + +* [[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_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: `+default+` + +* [[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_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_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: `+brown+` + +* [[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: `+yellow+` + +* [[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: `+white+` + +* [[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: `+white+` + +* [[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: `+default+` + +* [[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: `+white+` + +* [[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: `+darkgray+` + +* [[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_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: `+cyan+` + +* [[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: `+lightcyan+` + +* [[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: `+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)] +** 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)] +** 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+` + +* [[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: `+red+` + +* [[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: `+brown+` + +* [[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_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: `+default+` + +* [[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: `+white+` + +* [[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: `+default+` + +* [[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: `+white+` + +* [[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: `+default+` + +* [[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: `+brown+` + +* [[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: `+yellow+` + +* [[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: `+white+` + +* [[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: `+default+` + +* [[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: `+brown+` + +* [[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: `+yellow+` + +* [[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: `+white+` + +* [[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: `+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] +** 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_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: `+cyan+` + +* [[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: `+lightcyan+` + +* [[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: `+darkgray+` + +* [[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: `+default+` + +* [[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_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: `+default+` + +* [[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_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: `+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] +** 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] +** 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.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_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: `+white+` + +* [[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: `+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] +** 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_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_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: `+lightgreen+` + +* [[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: `+white+` + +* [[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: `+green+` + +* [[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: `+lightgreen+` + +* [[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: `+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] +** 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.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: `+cyan+` + +* [[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: `+brown+` + +* [[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: `+yellow+` + +* [[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: `+lightcyan+` + +* [[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: `+magenta+` + +* [[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: `+lightmagenta+` + +* [[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: `+"# ${description2}"+` + +* [[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: `+"/set ${name} ${quoted_value}"+` + +* [[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: `+"/unset ${name}"+` + +* [[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: `+""+` + +* [[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: `+"${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* +** 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: `+"*"+` + +* [[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: `+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] +** type: chaîne +** valeurs: toute chaîne +** valeur par défaut: `+"${count} >= 1"+` + +* [[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_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 .. 2 +** valeur par défaut: `+1+` + +* [[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: `+"*"+` + +* [[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 .. 100 +** 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.*)] +** 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_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: `+" "+` + +* [[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_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_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: `+off+` +// end::fset_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::irc_options[] +* [[option_irc.color.input_nick]] *irc.color.input_nick* +** description: pass:none[couleur du pseudo dans la 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: `+lightcyan+` + +* [[option_irc.color.item_channel_modes]] *irc.color.item_channel_modes* +** description: pass:none[couleur pour les modes du canal, à côté du nom du canal] +** 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_irc.color.item_lag_counting]] *irc.color.item_lag_counting* +** description: pass:none[couleur pour l'indicateur de lag, lorsque le décompte est en cours (pong non reçu du serveur, le lag augmente)] +** 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_irc.color.item_lag_finished]] *irc.color.item_lag_finished* +** description: pass:none[couleur pour l'indicateur de lag, lorsque le pong a été reçu du serveur] +** 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_irc.color.item_nick_modes]] *irc.color.item_nick_modes* +** description: pass:none[couleur pour les modes du pseudo dans l'objet de barre "input_prompt"] +** 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_irc.color.item_tls_version_deprecated]] *irc.color.item_tls_version_deprecated* +** description: pass:none[couleur pour les versions obsolètes de TLS dans l'objet de barre "tls_version"] +** 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_irc.color.item_tls_version_insecure]] *irc.color.item_tls_version_insecure* +** description: pass:none[couleur pour les versions non sécurisées de TLS dans l'objet de barre "tls_version"] +** 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_irc.color.item_tls_version_ok]] *irc.color.item_tls_version_ok* +** description: pass:none[couleur pour la version de TLS la plus haute dans l'objet de barre "tls_version"] +** 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_irc.color.message_account]] *irc.color.message_account* +** description: pass:none[couleur pour le texte dans les messages account] +** 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_irc.color.message_chghost]] *irc.color.message_chghost* +** description: pass:none[couleur pour le texte dans les messages "chghost"] +** 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_irc.color.message_join]] *irc.color.message_join* +** description: pass:none[couleur pour le texte dans les messages join] +** 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_irc.color.message_kick]] *irc.color.message_kick* +** description: pass:none[couleur pour le texte dans les messages kick/kill] +** 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_irc.color.message_quit]] *irc.color.message_quit* +** description: pass:none[couleur pour le texte dans les messages part/quit] +** 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_irc.color.message_setname]] *irc.color.message_setname* +** description: pass:none[couleur pour le texte dans les messages "setname"] +** 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_irc.color.mirc_remap]] *irc.color.mirc_remap* +** description: pass:none[réassigner les couleurs mirc dans les messages en utilisant une table de hachage : les clés sont "fg,bg" sous forme d'entiers entre -1 (non spécifié) et 15, les valeurs sont des noms de couleur WeeChat ou nombres (le format est : "1,-1:couleur1;2,7:couleur2"), exemple : "1,-1:darkgray;1,2:white,blue" pour réassigner le noir en "darkgray" et le noir sur bleu en "white,blue" ; les couleurs WeeChat par défaut pour les codes IRC sont : 0=white, 1=black, 2=blue, 3=green, 4=lightred, 5=red, 6=magenta, 7=brown, 8=yellow, 9=lightgreen, 10=cyan, 11=lightcyan, 12=lightblue, 13=lightmagenta, 14=darkgray, 15=gray] +** type: chaîne +** valeurs: toute chaîne +** valeur par défaut: `+"1,-1:darkgray"+` + +* [[option_irc.color.nick_prefixes]] *irc.color.nick_prefixes* +** description: pass:none[couleur pour les préfixes du pseudo en utilisant les caractères de mode (o=op, h=halfop, v=voice, ...), le format est : "o:couleur1;h:couleur2;v:couleur3" (si un mode n'est pas trouvé, WeeChat essaiera avec les modes suivants reçus du serveur ("PREFIX") ; un mode spécial "*" peut être utilisé comme couleur par défaut si aucun mode n'est trouvé dans la liste)] +** type: chaîne +** valeurs: toute chaîne +** valeur par défaut: `+"y:lightred;q:lightred;a:lightcyan;o:lightgreen;h:lightmagenta;v:yellow;*:lightblue"+` + +* [[option_irc.color.notice]] *irc.color.notice* +** description: pass:none[couleur pour le texte "Notice" dans les notices] +** 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_irc.color.reason_kick]] *irc.color.reason_kick* +** description: pass:none[couleur pour la raison dans les messages kick/kill] +** 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_irc.color.reason_quit]] *irc.color.reason_quit* +** description: pass:none[couleur pour la raison dans les messages part/quit] +** 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_irc.color.topic_current]] *irc.color.topic_current* +** description: pass:none[couleur pour le titre du canal actuel (en rejoignant un canal ou sur /topic)] +** 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_irc.color.topic_new]] *irc.color.topic_new* +** description: pass:none[couleur pour le nouveau titre du canal (lorsque le titre est 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: `+white+` + +* [[option_irc.color.topic_old]] *irc.color.topic_old* +** description: pass:none[couleur pour l'ancien titre du canal (lorsque le titre est 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: `+default+` + +* [[option_irc.look.buffer_open_before_autojoin]] *irc.look.buffer_open_before_autojoin* +** description: pass:none[ouvrir le tampon du canal avant que le JOIN soit reçu du serveur lorsqu'il est automatiquement rejoint (avec l'option du serveur "autojoin")] +** type: booléen +** valeurs: on, off +** valeur par défaut: `+on+` + +* [[option_irc.look.buffer_open_before_join]] *irc.look.buffer_open_before_join* +** description: pass:none[ouvrir le tampon du canal avant que le JOIN soit reçu du serveur lorsqu'il est manuellement rejoint (avec la commande /join)] +** type: booléen +** valeurs: on, off +** valeur par défaut: `+off+` + +* [[option_irc.look.buffer_switch_autojoin]] *irc.look.buffer_switch_autojoin* +** description: pass:none[basculer automatiquement vers le tampon du canal lorsqu'il est automatiquement rejoint (avec l'option du serveur "autojoin")] +** type: booléen +** valeurs: on, off +** valeur par défaut: `+on+` + +* [[option_irc.look.buffer_switch_join]] *irc.look.buffer_switch_join* +** description: pass:none[basculer automatiquement vers le tampon du canal lorsqu'il est manuellement rejoint (avec la commande /join)] +** type: booléen +** valeurs: on, off +** valeur par défaut: `+on+` + +* [[option_irc.look.color_nicks_in_names]] *irc.look.color_nicks_in_names* +** description: pass:none[utiliser la couleur du pseudo dans la sortie de /names (ou la liste des pseudos affichée lorsqu'on rejoint un canal)] +** type: booléen +** valeurs: on, off +** valeur par défaut: `+off+` + +* [[option_irc.look.color_nicks_in_nicklist]] *irc.look.color_nicks_in_nicklist* +** description: pass:none[utiliser la couleur du pseudo dans la liste des pseudos] +** type: booléen +** valeurs: on, off +** valeur par défaut: `+off+` + +* [[option_irc.look.color_nicks_in_server_messages]] *irc.look.color_nicks_in_server_messages* +** description: pass:none[utiliser la couleur du pseudo dans les messages du serveur] +** type: booléen +** valeurs: on, off +** valeur par défaut: `+on+` + +* [[option_irc.look.color_pv_nick_like_channel]] *irc.look.color_pv_nick_like_channel* +** description: pass:none[utiliser la même couleur de pseudo pour le canal et le privé] +** type: booléen +** valeurs: on, off +** valeur par défaut: `+on+` + +* [[option_irc.look.ctcp_time_format]] *irc.look.ctcp_time_format* +** description: pass:none[format de date/heure utilisé pour la réponse au message CTCP TIME (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 %z"+` + +* [[option_irc.look.display_account_message]] *irc.look.display_account_message* +** description: pass:none[afficher les messages ACCOUNT reçus quand la capacité account-notify est activée] +** type: booléen +** valeurs: on, off +** valeur par défaut: `+on+` + +* [[option_irc.look.display_away]] *irc.look.display_away* +** description: pass:none[afficher un message pour l'absence/retour (off : ne rien afficher/envoyer, local : afficher en local, channel : envoyer l'action aux canaux)] +** type: entier +** valeurs: off, local, channel +** valeur par défaut: `+local+` + +* [[option_irc.look.display_ctcp_blocked]] *irc.look.display_ctcp_blocked* +** description: pass:none[afficher le message CTCP même s'il est bloqué] +** type: booléen +** valeurs: on, off +** valeur par défaut: `+on+` + +* [[option_irc.look.display_ctcp_reply]] *irc.look.display_ctcp_reply* +** description: pass:none[afficher la réponse CTCP envoyée par WeeChat] +** type: booléen +** valeurs: on, off +** valeur par défaut: `+on+` + +* [[option_irc.look.display_ctcp_unknown]] *irc.look.display_ctcp_unknown* +** description: pass:none[afficher le message CTCP même si le CTCP est inconnu] +** type: booléen +** valeurs: on, off +** valeur par défaut: `+on+` + +* [[option_irc.look.display_extended_join]] *irc.look.display_extended_join* +** description: pass:none[afficher les informations supplémentaires sur les messages JOIN : nom de compte et nom réel (la capacité extended-join doit être activée)] +** type: booléen +** valeurs: on, off +** valeur par défaut: `+on+` + +* [[option_irc.look.display_host_join]] *irc.look.display_host_join* +** description: pass:none[afficher le nom d'hôte dans les messages join] +** type: booléen +** valeurs: on, off +** valeur par défaut: `+on+` + +* [[option_irc.look.display_host_join_local]] *irc.look.display_host_join_local* +** description: pass:none[afficher le nom d'hôte dans les messages join du client local] +** type: booléen +** valeurs: on, off +** valeur par défaut: `+on+` + +* [[option_irc.look.display_host_quit]] *irc.look.display_host_quit* +** description: pass:none[afficher le nom d'hôte dans les messages part/quit] +** type: booléen +** valeurs: on, off +** valeur par défaut: `+on+` + +* [[option_irc.look.display_join_message]] *irc.look.display_join_message* +** description: pass:none[liste de messages (séparés par des virgules) à afficher après avoir rejoint un canal : 324 = modes du canal, 329 = date de création du canal, 332 = titre, 333 = pseudo/date pour le titre, 353 = noms sur le canal, 366 = décompte des noms] +** type: chaîne +** valeurs: toute chaîne +** valeur par défaut: `+"329,332,333,366"+` + +* [[option_irc.look.display_old_topic]] *irc.look.display_old_topic* +** description: pass:none[afficher l'ancien titre lorsque le titre du canal est changé] +** type: booléen +** valeurs: on, off +** valeur par défaut: `+on+` + +* [[option_irc.look.display_pv_away_once]] *irc.look.display_pv_away_once* +** description: pass:none[afficher le message d'absence distant une seule fois en privé] +** type: booléen +** valeurs: on, off +** valeur par défaut: `+on+` + +* [[option_irc.look.display_pv_back]] *irc.look.display_pv_back* +** description: pass:none[afficher un message en privé lorsque l'utilisateur est de retour (après avoir quitté le serveur)] +** type: booléen +** valeurs: on, off +** valeur par défaut: `+on+` + +* [[option_irc.look.display_pv_nick_change]] *irc.look.display_pv_nick_change* +** description: pass:none[afficher le changement de pseudo en privé] +** type: booléen +** valeurs: on, off +** valeur par défaut: `+on+` + +* [[option_irc.look.display_pv_warning_address]] *irc.look.display_pv_warning_address* +** description: pass:none[afficher un avertissement dans le tampon privé si l'adresse du pseudo distant a changé ; cette option est désactivée par défaut car les serveurs comme bitlbee causent un affichage de cet avertissement à tort (l'adresse du pseudo distant change plusieurs fois à la connexion)] +** type: booléen +** valeurs: on, off +** valeur par défaut: `+off+` + +* [[option_irc.look.highlight_channel]] *irc.look.highlight_channel* +** description: pass:none[liste de mots pour le highlight dans les tampons de type "canal", séparés par des virgules (insensible à la casse, utilisez "(?-i)" au début des mots pour les rendre sensibles à la casse ; les variables spéciales $nick, $channel et $server sont remplacées par leurs valeurs), ces mots sont ajoutés à la propriété du tampon "highlight_words" seulement lorsque le tampon est créé (cela n'affecte pas les tampons courants), une chaîne vide désactive le highlight par défaut sur le pseudo, exemples : "$nick", "(?-i)$nick"] +** type: chaîne +** valeurs: toute chaîne +** valeur par défaut: `+"$nick"+` + +* [[option_irc.look.highlight_pv]] *irc.look.highlight_pv* +** description: pass:none[liste de mots pour le highlight dans les tampons de type "privé", séparés par des virgules (insensible à la casse, utilisez "(?-i)" au début des mots pour les rendre sensibles à la casse ; les variables spéciales $nick, $channel et $server sont remplacées par leurs valeurs), ces mots sont ajoutés à la propriété du tampon "highlight_words" seulement lorsque le tampon est créé (cela n'affecte pas les tampons courants), une chaîne vide désactive le highlight par défaut sur le pseudo, exemples : "$nick", "(?-i)$nick"] +** type: chaîne +** valeurs: toute chaîne +** valeur par défaut: `+"$nick"+` + +* [[option_irc.look.highlight_server]] *irc.look.highlight_server* +** description: pass:none[liste de mots pour le highlight dans les tampons de type "serveur", séparés par des virgules (insensible à la casse, utilisez "(?-i)" au début des mots pour les rendre sensibles à la casse ; les variables spéciales $nick, $channel et $server sont remplacées par leurs valeurs), ces mots sont ajoutés à la propriété du tampon "highlight_words" seulement lorsque le tampon est créé (cela n'affecte pas les tampons courants), une chaîne vide désactive le highlight par défaut sur le pseudo, exemples : "$nick", "(?-i)$nick"] +** type: chaîne +** valeurs: toute chaîne +** valeur par défaut: `+"$nick"+` + +* [[option_irc.look.highlight_tags_restrict]] *irc.look.highlight_tags_restrict* +** description: pass:none[restreindre les highlights à ces étiquettes sur les tampons irc (pour avoir un highlight seulement sur les messages utilisateur et pas les messages du serveur) ; les étiquettes doivent être séparées par des virgules et "+" peut être utilisé pour faire un "et" logique entre étiquettes ; le caractère joker "*" est autorisé dans les étiquettes ; une valeur vide autorise le highlight sur n'importe quelle étiquette] +** type: chaîne +** valeurs: toute chaîne +** valeur par défaut: `+"irc_privmsg,irc_notice"+` + +* [[option_irc.look.item_channel_modes_hide_args]] *irc.look.item_channel_modes_hide_args* +** description: pass:none[cacher les paramètres des modes du canal si au moins un de ces modes est dans les modes du canal ("*" pour toujours cacher les paramètres, valeur vide pour ne jamais cacher les paramètres) ; exemple : "kf" pour cacher les paramètres si "k" ou "f" sont dans les modes du canal] +** type: chaîne +** valeurs: toute chaîne +** valeur par défaut: `+"k"+` + +* [[option_irc.look.item_display_server]] *irc.look.item_display_server* +** description: pass:none[nom de l'objet de barre où est affiché le serveur IRC (pour la barre de statut)] +** type: entier +** valeurs: buffer_plugin, buffer_name +** valeur par défaut: `+buffer_plugin+` + +* [[option_irc.look.item_nick_modes]] *irc.look.item_nick_modes* +** description: pass:none[afficher les modes du pseudo dans l'objet de barre "input_prompt"] +** type: booléen +** valeurs: on, off +** valeur par défaut: `+on+` + +* [[option_irc.look.item_nick_prefix]] *irc.look.item_nick_prefix* +** description: pass:none[afficher le préfixe du pseudo dans l'objet de barre "input_prompt"] +** type: booléen +** valeurs: on, off +** valeur par défaut: `+on+` + +* [[option_irc.look.join_auto_add_chantype]] *irc.look.join_auto_add_chantype* +** description: pass:none[ajouter automatiquement le type de canal devant le nom du canal sur la commande /join si le nom du canal ne commence pas par un type de canal valide pour le serveur ; par exemple "/join weechat" enverra en fait : "/join #weechat"] +** type: booléen +** valeurs: on, off +** valeur par défaut: `+off+` + +* [[option_irc.look.msgbuffer_fallback]] *irc.look.msgbuffer_fallback* +** description: pass:none[tampon cible par défaut pour les options msgbuffer quand la cible est "private" et que le tampon privé n'est pas trouvé] +** type: entier +** valeurs: current, server +** valeur par défaut: `+current+` + +* [[option_irc.look.new_channel_position]] *irc.look.new_channel_position* +** description: pass:none[force la position du nouveau canal dans la liste des tampons (none = position par défaut (devrait être le dernier tampon), next = tampon courant + 1, near_server = après le dernier canal/privé du serveur)] +** type: entier +** valeurs: none, next, near_server +** valeur par défaut: `+none+` + +* [[option_irc.look.new_pv_position]] *irc.look.new_pv_position* +** description: pass:none[force la position du nouveau privé dans la liste des tampons (none = position par défaut (devrait être le dernier tampon), next = tampon courant + 1, near_server = après le dernier canal/privé du serveur)] +** type: entier +** valeurs: none, next, near_server +** valeur par défaut: `+none+` + +* [[option_irc.look.nick_completion_smart]] *irc.look.nick_completion_smart* +** description: pass:none[complétion intelligente pour les pseudos (complète d'abord avec les personnes qui ont parlé récemment) : speakers = tous ceux qui ont parlé (incluant les highlights), speakers_highlights = seulement ceux qui ont parlé avec un highlight] +** type: entier +** valeurs: off, speakers, speakers_highlights +** valeur par défaut: `+speakers+` + +* [[option_irc.look.nick_mode]] *irc.look.nick_mode* +** description: pass:none[afficher le mode du pseudo (op, voice, ...) avant le pseudo (none = jamais, prefix = dans le préfixe seulement, action = dans les messages d'action seulement, both = préfixe + messages d'actions)] +** type: entier +** valeurs: none, prefix, action, both +** valeur par défaut: `+prefix+` + +* [[option_irc.look.nick_mode_empty]] *irc.look.nick_mode_empty* +** description: pass:none[afficher un espace si le mode du pseudo est activé mais que le pseudo n'a pas de mode (pas op, voice, ...)] +** type: booléen +** valeurs: on, off +** valeur par défaut: `+off+` + +* [[option_irc.look.nicks_hide_password]] *irc.look.nicks_hide_password* +** description: pass:none[liste des pseudos (séparés par des virgules) pour lesquels les mots de passe seront masqués quand un message est envoyé, par exemple pour cacher le mot de passe dans le message affiché par "/msg nickserv identify motdepasse", exemple : "nickserv|nickbot"] +** type: chaîne +** valeurs: toute chaîne +** valeur par défaut: `+"nickserv"+` + +* [[option_irc.look.notice_as_pv]] *irc.look.notice_as_pv* +** description: pass:none[afficher les notices comme des messages privés (si auto, utilise le tampon privé s'il est trouvé)] +** type: entier +** valeurs: auto, never, always +** valeur par défaut: `+auto+` + +* [[option_irc.look.notice_welcome_redirect]] *irc.look.notice_welcome_redirect* +** description: pass:none[rediriger automatiquement les notices de bienvenue sur le canal vers le tampon du canal ; de telles notices ont le pseudo comme cible mais le nom du canal au début du message de notice, par exemple les notices ENTRYMSG envoyées par les services Atheme IRC qui ressemblent à : "[#canal\] Bienvenue sur ce canal..."] +** type: booléen +** valeurs: on, off +** valeur par défaut: `+on+` + +* [[option_irc.look.notice_welcome_tags]] *irc.look.notice_welcome_tags* +** description: pass:none[liste des étiquettes (séparées par des virgules) utilisées dans la notice de bienvenue redirigée vers un canal, par exemple : "notify_private"] +** type: chaîne +** valeurs: toute chaîne +** valeur par défaut: `+""+` + +* [[option_irc.look.notify_tags_ison]] *irc.look.notify_tags_ison* +** description: pass:none[liste des étiquettes (séparées par des virgules) utilisées dans les messages affichés par notify lorsqu'un pseudo a rejoint ou quitté le serveur (résultat de la commande ison ou monitor), par exemple : "notify_message", "notify_private" ou "notify_highlight"] +** type: chaîne +** valeurs: toute chaîne +** valeur par défaut: `+"notify_message"+` + +* [[option_irc.look.notify_tags_whois]] *irc.look.notify_tags_whois* +** description: pass:none[liste des étiquettes (séparées par des virgules) utilisées dans les messages affichés par notify lorsque le statut d'absence d'un pseudo change (résultat de la commande whois), par exemple : "notify_message", "notify_private" ou "notify_highlight"] +** type: chaîne +** valeurs: toute chaîne +** valeur par défaut: `+"notify_message"+` + +* [[option_irc.look.part_closes_buffer]] *irc.look.part_closes_buffer* +** description: pass:none[fermer le tampon lorsque /part est exécuté sur un canal] +** type: booléen +** valeurs: on, off +** valeur par défaut: `+off+` + +* [[option_irc.look.pv_buffer]] *irc.look.pv_buffer* +** description: pass:none[mélanger les tampons privés] +** type: entier +** valeurs: independent, merge_by_server, merge_all +** valeur par défaut: `+independent+` + +* [[option_irc.look.pv_tags]] *irc.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_irc.look.raw_messages]] *irc.look.raw_messages* +** description: pass:none[nombre de messages bruts à sauvegarder en mémoire lorsque le tampon des données brutes est fermé (ces messages seront affichés lors de l'ouverture du tampon des données brutes)] +** type: entier +** valeurs: 0 .. 65535 +** valeur par défaut: `+256+` + +* [[option_irc.look.server_buffer]] *irc.look.server_buffer* +** description: pass:none[mélanger les tampons de serveur ; cette option n'a pas d'effet si une disposition est sauvée et qu'elle est en conflit avec cette valeur (voir /help layout)] +** type: entier +** valeurs: merge_with_core, merge_without_core, independent +** valeur par défaut: `+merge_with_core+` + +* [[option_irc.look.smart_filter]] *irc.look.smart_filter* +** description: pass:none[filtrer les messages join/part/quit/nick pour un pseudo s'il n'a pas parlé pendant quelques minutes sur le canal (vous devez créer un filtre sur l'étiquette "irc_smart_filter", voir /help filter)] +** type: booléen +** valeurs: on, off +** valeur par défaut: `+on+` + +* [[option_irc.look.smart_filter_account]] *irc.look.smart_filter_account* +** description: pass:none[activer le filtre intelligent pour les messages "account"] +** type: booléen +** valeurs: on, off +** valeur par défaut: `+on+` + +* [[option_irc.look.smart_filter_chghost]] *irc.look.smart_filter_chghost* +** description: pass:none[activer le filtre intelligent pour les messages "chghost"] +** type: booléen +** valeurs: on, off +** valeur par défaut: `+on+` + +* [[option_irc.look.smart_filter_delay]] *irc.look.smart_filter_delay* +** description: pass:none[délai pour filtrer les messages join/part/quit (en minutes) : si le pseudo n'a pas parlé durant les N dernières minutes, le join/part/quit est filtré] +** type: entier +** valeurs: 1 .. 10080 +** valeur par défaut: `+5+` + +* [[option_irc.look.smart_filter_join]] *irc.look.smart_filter_join* +** description: pass:none[activer le filtre intelligent pour les messages "join"] +** type: booléen +** valeurs: on, off +** valeur par défaut: `+on+` + +* [[option_irc.look.smart_filter_join_unmask]] *irc.look.smart_filter_join_unmask* +** description: pass:none[délai pour démasquer un message "join" qui a été filtré avec l'étiquette "irc_smart_filter" (en minutes) : si le pseudo a rejoint au maximum il y a N minutes et qu'il a dit quelque chose sur le canal (message, notice ou mise à jour du topic), le "join" est démasqué, tout comme les changements de pseudo après ce "join" (0 = désactiver : ne jamais démasquer un "join")] +** type: entier +** valeurs: 0 .. 10080 +** valeur par défaut: `+30+` + +* [[option_irc.look.smart_filter_mode]] *irc.look.smart_filter_mode* +** description: pass:none[activer le filtre intelligent pour les messages "mode" : "*" pour filtrer tous les modes, "+" pour filtrer tous les modes dans les préfixes du serveur (par exemple "ovh"), "xyz" pour filtrer seulement les modes x/y/z, "-xyz" pour filtrer tous les modes sauf x/y/z ; exemples : "ovh" : filtrer les modes o/v/h, "-bkl" : filtrer tous les modes sauf b/k/l] +** type: chaîne +** valeurs: toute chaîne +** valeur par défaut: `+"+"+` + +* [[option_irc.look.smart_filter_nick]] *irc.look.smart_filter_nick* +** description: pass:none[activer le filtre intelligent pour les messages "nick" (changements de pseudo)] +** type: booléen +** valeurs: on, off +** valeur par défaut: `+on+` + +* [[option_irc.look.smart_filter_quit]] *irc.look.smart_filter_quit* +** description: pass:none[activer le filtre intelligent pour les messages "part" et "quit"] +** type: booléen +** valeurs: on, off +** valeur par défaut: `+on+` + +* [[option_irc.look.smart_filter_setname]] *irc.look.smart_filter_setname* +** description: pass:none[activer le filtre intelligent pour les messages "setname"] +** type: booléen +** valeurs: on, off +** valeur par défaut: `+on+` + +* [[option_irc.look.temporary_servers]] *irc.look.temporary_servers* +** description: pass:none[activer l'ajout automatique des serveurs temporaires avec la commande /connect] +** type: booléen +** valeurs: on, off +** valeur par défaut: `+off+` + +* [[option_irc.look.topic_strip_colors]] *irc.look.topic_strip_colors* +** description: pass:none[supprimer les couleurs dans le titre (utilisé seulement lors de l'affichage du titre du tampon)] +** type: booléen +** valeurs: on, off +** valeur par défaut: `+off+` + +* [[option_irc.look.typing_status_nicks]] *irc.look.typing_status_nicks* +** description: pass:none[afficher les pseudos qui écrivent sur le canal dans l'objet de barre "typing" (l'option typing.look.enabled_nicks doit être activée et la capacité "message-tags" doit être activée sur le serveur)] +** type: booléen +** valeurs: on, off +** valeur par défaut: `+off+` + +* [[option_irc.look.typing_status_self]] *irc.look.typing_status_self* +** description: pass:none[envoyer le statut d'écriture de message aux canaux de sorte que les autres utilisateurs voient quand vous écrivez un message (l'option typing.look.enabled_self doit être activée et la capacité "message-tags" doit être activée sur le serveur)] +** type: booléen +** valeurs: on, off +** valeur par défaut: `+off+` + +* [[option_irc.network.autoreconnect_delay_growing]] *irc.network.autoreconnect_delay_growing* +** description: pass:none[facteur de croissance du délai d'auto-reconnexion au serveur (1 = toujours le même délai, 2 = délai*2 pour chaque tentative, etc.)] +** type: entier +** valeurs: 1 .. 100 +** valeur par défaut: `+2+` + +* [[option_irc.network.autoreconnect_delay_max]] *irc.network.autoreconnect_delay_max* +** description: pass:none[délai maximum d'auto-reconnexion au serveur (en secondes, 0 = pas de maximum)] +** type: entier +** valeurs: 0 .. 604800 +** valeur par défaut: `+600+` + +* [[option_irc.network.ban_mask_default]] *irc.network.ban_mask_default* +** description: pass:none[masque de bannissement par défaut pour les commandes /ban, /unban et /kickban ; les variables $nick, $user, $ident et $host sont remplacées par leurs valeurs (extraites de "nick!user@host") ; $ident est identique à $user si $user ne commence pas par "~", sinon $ident vaut "*" ; ce masque par défaut est utilisé seulement si WeeChat connaît l'hôte pour le pseudo] +** type: chaîne +** valeurs: toute chaîne +** valeur par défaut: `+"*!$ident@$host"+` + +* [[option_irc.network.colors_receive]] *irc.network.colors_receive* +** description: pass:none[si désactivé, les codes couleurs des messages entrants sont ignorés] +** type: booléen +** valeurs: on, off +** valeur par défaut: `+on+` + +* [[option_irc.network.colors_send]] *irc.network.colors_send* +** description: pass:none[autorise l'utilisateur à envoyer des couleurs avec des codes spéciaux (ctrl-c + un code et une couleur optionnelle : b=gras, cxx=couleur, cxx,yy=couleur+fond, i=italique, o=désactiver couleur/attributs, r=inversé, u=souligné)] +** type: booléen +** valeurs: on, off +** valeur par défaut: `+on+` + +* [[option_irc.network.lag_check]] *irc.network.lag_check* +** description: pass:none[intervalle entre deux vérifications du lag (en secondes, 0 = ne jamais vérifier)] +** type: entier +** valeurs: 0 .. 604800 +** valeur par défaut: `+60+` + +* [[option_irc.network.lag_max]] *irc.network.lag_max* +** description: pass:none[lag maximum (en secondes) : si ce lag est atteint, WeeChat considérera que la réponse du serveur (pong) ne sera jamais reçue et arrêtera de compter le lag (0 = ne jamais abandonner)] +** type: entier +** valeurs: 0 .. 604800 +** valeur par défaut: `+1800+` + +* [[option_irc.network.lag_min_show]] *irc.network.lag_min_show* +** description: pass:none[lag minimum à afficher (en millisecondes)] +** type: entier +** valeurs: 0 .. 86400000 +** valeur par défaut: `+500+` + +* [[option_irc.network.lag_reconnect]] *irc.network.lag_reconnect* +** description: pass:none[se reconnecter au serveur si le lag est supérieur ou égal à cette valeur (en secondes, 0 = ne jamais se reconnecter) ; cette valeur doit être inférieure ou égale à irc.network.lag_max] +** type: entier +** valeurs: 0 .. 604800 +** valeur par défaut: `+300+` + +* [[option_irc.network.lag_refresh_interval]] *irc.network.lag_refresh_interval* +** description: pass:none[intervalle entre deux rafraîchissements du lag, lorsque le lag augmente (en secondes)] +** type: entier +** valeurs: 1 .. 3600 +** valeur par défaut: `+1+` + +* [[option_irc.network.notify_check_ison]] *irc.network.notify_check_ison* +** description: pass:none[intervalle entre deux vérifications de notification avec la commande IRC "ison" (en minutes)] +** type: entier +** valeurs: 1 .. 10080 +** valeur par défaut: `+1+` + +* [[option_irc.network.notify_check_whois]] *irc.network.notify_check_whois* +** description: pass:none[intervalle entre deux vérifications de notification avec la commande IRC "whois" (en minutes)] +** type: entier +** valeurs: 1 .. 10080 +** valeur par défaut: `+5+` + +* [[option_irc.network.sasl_fail_unavailable]] *irc.network.sasl_fail_unavailable* +** description: pass:none[provoquer un échec d'authentification SASL quand SASL est demandé mais non disponible sur le serveur ; lorsque cette option est activée, elle n'a d'effet que si l'option "sasl_fail" est égale à "reconnect" ou "disconnect" dans le serveur] +** type: booléen +** valeurs: on, off +** valeur par défaut: `+on+` + +* [[option_irc.network.send_unknown_commands]] *irc.network.send_unknown_commands* +** description: pass:none[envoie les commandes inconnues au serveur] +** type: booléen +** valeurs: on, off +** valeur par défaut: `+off+` + +* [[option_irc.network.whois_double_nick]] *irc.network.whois_double_nick* +** description: pass:none[doubler le pseudo dans la commande /whois (si un seul pseudo est donné), pour avoir le temps d'inactivité dans la réponse ; par exemple : "/whois pseudo" enverra "whois pseudo pseudo"] +** type: booléen +** valeurs: on, off +** valeur par défaut: `+off+` + +* [[option_irc.server_default.addresses]] *irc.server_default.addresses* +** description: pass:none[liste de nom/port ou IP/port pour le serveur (séparés par des virgules) (note : le contenu est évalué, voir /help eval ; les options de serveur sont évaluées avec ${irc_server.xxx} et ${server} est remplacé par le nom du serveur)] +** type: chaîne +** valeurs: toute chaîne +** valeur par défaut: `+""+` + +* [[option_irc.server_default.anti_flood_prio_high]] *irc.server_default.anti_flood_prio_high* +** description: pass:none[anti-flood pour la file d'attente haute priorité : nombre de secondes entre deux messages utilisateur ou commandes envoyés au serveur IRC (0 = pas d'anti-flood)] +** type: entier +** valeurs: 0 .. 60 +** valeur par défaut: `+2+` + +* [[option_irc.server_default.anti_flood_prio_low]] *irc.server_default.anti_flood_prio_low* +** description: pass:none[anti-flood pour la file d'attente basse priorité : nombre de secondes entre deux messages envoyés au serveur IRC (messages comme les réponses automatiques aux CTCP) (0 = pas d'anti-flood)] +** type: entier +** valeurs: 0 .. 60 +** valeur par défaut: `+2+` + +* [[option_irc.server_default.autoconnect]] *irc.server_default.autoconnect* +** description: pass:none[connexion automatique au serveur quand WeeChat démarre] +** type: booléen +** valeurs: on, off +** valeur par défaut: `+off+` + +* [[option_irc.server_default.autojoin]] *irc.server_default.autojoin* +** description: pass:none[liste des canaux (séparés par des virgules) à rejoindre après la connexion au serveur (et après exécution de la commande + délai s'ils sont définis) ; les canaux nécessitant une clé doivent être en début de liste, et toutes les clés doivent être données après les canaux (séparées par un espace) (exemple : "#canal1,#canal2,#canal3 clé1,clé2" où #canal1 et #canal2 sont protégés par clé1 et clé2) (note : le contenu est évalué, voir /help eval ; les options de serveur sont évaluées avec ${irc_server.xxx} et ${server} est remplacé par le nom du serveur)] +** type: chaîne +** valeurs: toute chaîne +** valeur par défaut: `+""+` + +* [[option_irc.server_default.autojoin_dynamic]] *irc.server_default.autojoin_dynamic* +** description: pass:none[définir automatiquement l'option "autojoin" selon les canaux que vous rejoignez ou quittez manuellement avec les commandes /join et /part] +** type: booléen +** valeurs: on, off +** valeur par défaut: `+off+` + +* [[option_irc.server_default.autoreconnect]] *irc.server_default.autoreconnect* +** description: pass:none[reconnexion automatique au serveur après une déconnexion] +** type: booléen +** valeurs: on, off +** valeur par défaut: `+on+` + +* [[option_irc.server_default.autoreconnect_delay]] *irc.server_default.autoreconnect_delay* +** description: pass:none[délai (en secondes) avant de tenter une reconnexion au serveur] +** type: entier +** valeurs: 1 .. 65535 +** valeur par défaut: `+10+` + +* [[option_irc.server_default.autorejoin]] *irc.server_default.autorejoin* +** description: pass:none[rejoindre automatiquement les canaux après un "kick" ; vous pouvez définir une variable locale de tampon sur un canal pour remplacer cette valeur (nom de la variable : "autorejoin", valeur : "on" ou "off")] +** type: booléen +** valeurs: on, off +** valeur par défaut: `+off+` + +* [[option_irc.server_default.autorejoin_delay]] *irc.server_default.autorejoin_delay* +** description: pass:none[délai (en secondes) avant de rejoindre automatiquement (après un "kick")] +** type: entier +** valeurs: 0 .. 86400 +** valeur par défaut: `+30+` + +* [[option_irc.server_default.away_check]] *irc.server_default.away_check* +** description: pass:none[intervalle entre deux vérifications des absences (en minutes, 0 = ne jamais vérifier)] +** type: entier +** valeurs: 0 .. 10080 +** valeur par défaut: `+0+` + +* [[option_irc.server_default.away_check_max_nicks]] *irc.server_default.away_check_max_nicks* +** description: pass:none[ne pas vérifier les pseudos absents lorsqu'il y a un nombre important de pseudos (0 = pas de limite)] +** type: entier +** valeurs: 0 .. 1000000 +** valeur par défaut: `+25+` + +* [[option_irc.server_default.capabilities]] *irc.server_default.capabilities* +** description: pass:none[liste séparée par des virgules de capacités client ("client capabilities") à activer sur le serveur si elles sont disponibles (voir /help cap pour la liste des capacités supportées par WeeChat) ; "*" active toutes les capacités par défaut (supportées par le serveur et WeeChat) ; le caractère joker "*" est autorisé ; une capacité commençant par "!" est exclue (exemple : "*,!account-*,!extended-join")] +** type: chaîne +** valeurs: toute chaîne +** valeur par défaut: `+"*"+` + +* [[option_irc.server_default.charset_message]] *irc.server_default.charset_message* +** description: pass:none[partie du message IRC (reçu ou envoyé) qui est décodé/encode vers le jeu de caractères cible ; message = le message IRC entier (par défaut), channel = à partir du nom du canal seulement (si trouvé, sinon à partir du texte), text = à partir du texte seulement (vous devriez essayer cette valeur si vous avec des problèmes d'encodage avec le nom du canal)] +** type: entier +** valeurs: message, channel, text +** valeur par défaut: `+message+` + +* [[option_irc.server_default.command]] *irc.server_default.command* +** description: pass:none[commande(s) à exécuter après la connexion au serveur et avant le "join" automatique des canaux (plusieurs commandes peuvent être séparées par ";", utilisez "\;" pour un point-virgule, les variables spéciales $nick, $channel et $server sont remplacées par leurs valeurs) (note : les commandes sont évaluées, voir /help eval ; les options de serveur sont évaluées avec ${irc_server.xxx} et ${server} est remplacé par le nom du serveur)] +** type: chaîne +** valeurs: toute chaîne +** valeur par défaut: `+""+` + +* [[option_irc.server_default.command_delay]] *irc.server_default.command_delay* +** description: pass:none[délai (en secondes) après exécution de la commande et avant le "join" automatique des canaux (exemple : donner du temps pour l'authentification avant de rejoindre les canaux)] +** type: entier +** valeurs: 0 .. 3600 +** valeur par défaut: `+0+` + +* [[option_irc.server_default.connection_timeout]] *irc.server_default.connection_timeout* +** description: pass:none[délai d'attente (en secondes) entre la connexion TCP au serveur et la réception du message 001, si ce délai est atteint avant que le message 001 soit reçu, WeeChat se déconnectera du serveur] +** type: entier +** valeurs: 1 .. 3600 +** valeur par défaut: `+60+` + +* [[option_irc.server_default.default_chantypes]] *irc.server_default.default_chantypes* +** description: pass:none[préfixes de types de canaux à utiliser si le serveur ne les envoie pas dans le message 005 (par défaut "#&")] +** type: chaîne +** valeurs: toute chaîne +** valeur par défaut: `+"#&"+` + +* [[option_irc.server_default.ipv6]] *irc.server_default.ipv6* +** description: pass:none[utiliser le protocole IPv6 pour la communication avec le serveur (essayer IPv6 puis repli sur l'IPv4) ; si désactivé, seulement l'IPv4 est utilisé] +** type: booléen +** valeurs: on, off +** valeur par défaut: `+on+` + +* [[option_irc.server_default.local_hostname]] *irc.server_default.local_hostname* +** description: pass:none[nom local de machine/IP personnalisé pour le serveur (optionnel, si non renseigné, le nom de machine local est utilisé)] +** type: chaîne +** valeurs: toute chaîne +** valeur par défaut: `+""+` + +* [[option_irc.server_default.msg_kick]] *irc.server_default.msg_kick* +** description: pass:none[message par défaut pour l'éjection utilisé par les commandes "/kick" et "/kickban" (note : le contenu est évalué, voir /help eval ; les variables spéciales ${nick} (propre pseudo), ${target} (pseudo cible), ${channel} et ${server} sont remplacées par leur valeurs)] +** type: chaîne +** valeurs: toute chaîne +** valeur par défaut: `+""+` + +* [[option_irc.server_default.msg_part]] *irc.server_default.msg_part* +** description: pass:none[message par défaut pour le part (en quittant un canal) (note : le contenu est évalué, voir /help eval ; les variables spéciales ${nick}, ${channel} et ${server} sont remplacées par leur valeurs ; "%v" est remplacé par la version de WeeChat s'il n'y a pas de ${...} dans la chaîne)] +** type: chaîne +** valeurs: toute chaîne +** valeur par défaut: `+"WeeChat ${info:version}"+` + +* [[option_irc.server_default.msg_quit]] *irc.server_default.msg_quit* +** description: pass:none[message de fin par défaut (lors de la déconnexion du serveur) (note : le contenu est évalué, voir /help eval ; les variables spéciales ${nick}, ${channel} et ${server} sont remplacées par leurs valeurs ; "%v" est remplacé par la version de WeeChat s'il n'y a pas de ${...} dans la chaîne)] +** type: chaîne +** valeurs: toute chaîne +** valeur par défaut: `+"WeeChat ${info:version}"+` + +* [[option_irc.server_default.nicks]] *irc.server_default.nicks* +** description: pass:none[pseudos à utiliser sur le serveur (séparés par des virgules) (note : le contenu est évalué, voir /help eval ; les options de serveur sont évaluées avec ${irc_server.xxx} et ${server} est remplacé par le nom du serveur)] +** type: chaîne +** valeurs: toute chaîne +** valeur par défaut: `+""+` + +* [[option_irc.server_default.nicks_alternate]] *irc.server_default.nicks_alternate* +** description: pass:none[obtenir un pseudo alternatif lorsque tous les pseudos déclarés sont déjà utilisés sur le serveur : ajouter des "_" jusqu'à ce que le pseudo ait une longueur de 9, puis remplacer le dernier caractère (ou les deux derniers) par un nombre de 1 à 99, jusqu'à trouver un pseudo non utilisé sur le serveur] +** type: booléen +** valeurs: on, off +** valeur par défaut: `+on+` + +* [[option_irc.server_default.notify]] *irc.server_default.notify* +** description: pass:none[liste de notifications pour le serveur (vous ne devriez pas changer cette option mais utiliser la commande /notify)] +** type: chaîne +** valeurs: toute chaîne +** valeur par défaut: `+""+` + +* [[option_irc.server_default.password]] *irc.server_default.password* +** description: pass:none[mot de passe pour le serveur (note : le contenu est évalué, voir /help eval ; les options de serveur sont évaluées avec ${irc_server.xxx} et ${server} est remplacé par le nom du serveur)] +** type: chaîne +** valeurs: toute chaîne +** valeur par défaut: `+""+` + +* [[option_irc.server_default.proxy]] *irc.server_default.proxy* +** description: pass:none[nom du proxy utilisé pour ce serveur (optionnel, le proxy doit être défini avec la commande /proxy)] +** type: chaîne +** valeurs: toute chaîne +** valeur par défaut: `+""+` + +* [[option_irc.server_default.realname]] *irc.server_default.realname* +** description: pass:none[nom réel pour le serveur (note : le contenu est évalué, voir /help eval ; les options de serveur sont évaluées avec ${irc_server.xxx} et ${server} est remplacé par le nom du serveur)] +** type: chaîne +** valeurs: toute chaîne +** valeur par défaut: `+""+` + +* [[option_irc.server_default.sasl_fail]] *irc.server_default.sasl_fail* +** description: pass:none[action à effectuer si l'authentification SASL échoue : "continue" pour ignorer le problème d'authentification, "reconnect" pour planifier une reconnexion au serveur, "disconnect" pour se déconnecter du serveur (voir aussi l'option irc.network.sasl_fail_unavailable)] +** type: entier +** valeurs: continue, reconnect, disconnect +** valeur par défaut: `+reconnect+` + +* [[option_irc.server_default.sasl_key]] *irc.server_default.sasl_key* +** description: pass:none[fichier avec la clé privée ECC pour le mécanisme "ecdsa-nist256p-challenge" (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_irc.server_default.sasl_mechanism]] *irc.server_default.sasl_mechanism* +** description: pass:none[mécanisme pour l'authentification SASL : "plain" pour un mot de passe en clair, "scram-sha-1" pour une authentification SCRAM avec algorithme de hachage SHA-1, "scram-sha-256" pour une authentification SCRAM avec algorithme de hachage SHA-256, "scram-sha-512" pour une authentification SCRAM avec algorithme de hachage SHA-512, "ecdsa-nist256p-challenge" pour une authentification par challenge avec clé, "external" pour une authentification en utilisant un certificat SSL côté client] +** type: entier +** valeurs: plain, scram-sha-1, scram-sha-256, scram-sha-512, ecdsa-nist256p-challenge, external +** valeur par défaut: `+plain+` + +* [[option_irc.server_default.sasl_password]] *irc.server_default.sasl_password* +** description: pass:none[mot de passe pour l'authentification SASL ; cette option n'est pas utilisée pour les mécanismes "ecdsa-nist256p-challenge" et "external" (note : le contenu est évalué, voir /help eval ; les options de serveur sont évaluées avec ${irc_server.xxx} et ${server} est remplacé par le nom du serveur)] +** type: chaîne +** valeurs: toute chaîne +** valeur par défaut: `+""+` + +* [[option_irc.server_default.sasl_timeout]] *irc.server_default.sasl_timeout* +** description: pass:none[délai d'attente maximum (en secondes) avant d'abandonner l'authentification SASL] +** type: entier +** valeurs: 1 .. 3600 +** valeur par défaut: `+15+` + +* [[option_irc.server_default.sasl_username]] *irc.server_default.sasl_username* +** description: pass:none[nom d'utilisateur pour l'authentification SASL ; cette option n'est pas utilisée pour le mécanisme "external" (note : le contenu est évalué, voir /help eval ; les options de serveur sont évaluées avec ${irc_server.xxx} et ${server} est remplacé par le nom du serveur)] +** type: chaîne +** valeurs: toute chaîne +** valeur par défaut: `+""+` + +* [[option_irc.server_default.split_msg_max_length]] *irc.server_default.split_msg_max_length* +** description: pass:none[découper les messages IRC sortants pour tenir dans ce nombre de caractères ; la valeur par défaut est 512, c'est une valeur sûre et recommandée ; la valeur 0 désactive le découpage (non recommandé, sauf si vous êtes sûr de ce que vous faites) ; les valeurs autorisées sont 0 ou tout entier compris entre 128 et 4096 ; cette option devrait être changée seulement sur les serveurs IRC non standards, par exemple sur les passerelles comme bitlbee] +** type: entier +** valeurs: 0 .. 4096 +** valeur par défaut: `+512+` + +* [[option_irc.server_default.ssl]] *irc.server_default.ssl* +** description: pass:none[utiliser SSL pour la communication avec le serveur] +** type: booléen +** valeurs: on, off +** valeur par défaut: `+off+` + +* [[option_irc.server_default.ssl_cert]] *irc.server_default.ssl_cert* +** description: pass:none[fichier de certificat SSL utilisé pour identifier automatiquement votre pseudo (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_irc.server_default.ssl_dhkey_size]] *irc.server_default.ssl_dhkey_size* +** description: pass:none[taille de clé utilisée pour l'échange de clé Diffie-Hellman] +** type: entier +** valeurs: 0 .. 2147483647 +** valeur par défaut: `+2048+` + +* [[option_irc.server_default.ssl_fingerprint]] *irc.server_default.ssl_fingerprint* +** description: pass:none[empreinte du certificat qui est de confiance et accepté pour le serveur ; seuls les chiffres hexadécimaux sont autorisés (0-9, a-f) : 128 caractères pour SHA-512, 64 caractères pour SHA-256, 40 caractères pour SHA-1 (non sûr, non recommandé) ; plusieurs empreintes peuvent être séparées par des virgules ; si cette option est définie, les autres vérifications sur les certificats ne sont PAS effectuées (option "ssl_verify") (note : le contenu est évalué, voir /help eval ; les options de serveur sont évaluées avec ${irc_server.xxx} et ${server} est remplacé par le nom du serveur)] +** type: chaîne +** valeurs: toute chaîne +** valeur par défaut: `+""+` + +* [[option_irc.server_default.ssl_password]] *irc.server_default.ssl_password* +** description: pass:none[mot de passe pour la clé privée du certificat SSL ; utilisé seulement avec gnutls >= 3.1.0 (note : le contenu est évalué, voir /help eval ; les options de serveur sont évaluées avec ${irc_server.xxx} et ${server} est remplacé par le nom du serveur)] +** type: chaîne +** valeurs: toute chaîne +** valeur par défaut: `+""+` + +* [[option_irc.server_default.ssl_priorities]] *irc.server_default.ssl_priorities* +** description: pass:none[chaîne avec les priorités pour gnutls (pour la syntaxe, voir la documentation de la fonction gnutls_priority_init du manuel gnutls, les chaînes courantes sont : "PERFORMANCE", "NORMAL", "SECURE128", "SECURE256", "EXPORT", "NONE")] +** type: chaîne +** valeurs: toute chaîne +** valeur par défaut: `+"NORMAL:-VERS-SSL3.0"+` + +* [[option_irc.server_default.ssl_verify]] *irc.server_default.ssl_verify* +** description: pass:none[vérifier que la connexion SSL est entièrement de confiance] +** type: booléen +** valeurs: on, off +** valeur par défaut: `+on+` + +* [[option_irc.server_default.usermode]] *irc.server_default.usermode* +** description: pass:none[mode(s) utilisateur à définir après la connexion au serveur et avant d'exécuter la commande et de rejoindre automatiquement les canaux ; exemples : "+R" (pour définir le mode "R"), "+R-i" (pour définir le mode "R" et supprimer "i") ; voir /help mode pour la syntaxe complète du mode (note : le contenu est évalué, voir /help eval ; les options de serveur sont évaluées avec ${irc_server.xxx} et ${server} est remplacé par le nom du serveur)] +** type: chaîne +** valeurs: toute chaîne +** valeur par défaut: `+""+` + +* [[option_irc.server_default.username]] *irc.server_default.username* +** description: pass:none[nom d'utilisateur pour le serveur (note : le contenu est évalué, voir /help eval ; les options de serveur sont évaluées avec ${irc_server.xxx} et ${server} est remplacé par le nom du serveur)] +** type: chaîne +** valeurs: toute chaîne +** 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] +** 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_relay.color.status_active]] *relay.color.status_active* +** description: pass:none[couleur du texte pour le statut "connecté"] +** 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_relay.color.status_auth_failed]] *relay.color.status_auth_failed* +** description: pass:none[couleur du texte pour le statut "échec auth"] +** 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_relay.color.status_connecting]] *relay.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: `+white+` + +* [[option_relay.color.status_disconnected]] *relay.color.status_disconnected* +** description: pass:none[couleur du texte pour le statut "déconnecté"] +** 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_relay.color.status_waiting_auth]] *relay.color.status_waiting_auth* +** description: pass:none[couleur du texte pour le statut "attente auth"] +** 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_relay.color.text]] *relay.color.text* +** description: pass:none[couleur du texte dans le tampon relay] +** 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_relay.color.text_bg]] *relay.color.text_bg* +** description: pass:none[couleur du fond dans le tampon relay] +** 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_relay.color.text_selected]] *relay.color.text_selected* +** description: pass:none[couleur du texte pour la ligne sélectionnée dans le tampon relay] +** 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_relay.irc.backlog_max_minutes]] *relay.irc.backlog_max_minutes* +** description: pass:none[nombre maximum de minutes dans l'historique par canal IRC (0 = sans limite, exemples : 1440 = une journée, 10080 = une semaine, 43200 = un mois, 525600 = une année)] +** type: entier +** valeurs: 0 .. 2147483647 +** valeur par défaut: `+0+` + +* [[option_relay.irc.backlog_max_number]] *relay.irc.backlog_max_number* +** description: pass:none[nombre maximum de lignes dans l'historique par canal IRC (0 = sans limite)] +** type: entier +** valeurs: 0 .. 2147483647 +** valeur par défaut: `+1024+` + +* [[option_relay.irc.backlog_since_last_disconnect]] *relay.irc.backlog_since_last_disconnect* +** description: pass:none[afficher l'historique en démarrant depuis la dernière déconnexion du client] +** type: booléen +** valeurs: on, off +** valeur par défaut: `+on+` + +* [[option_relay.irc.backlog_since_last_message]] *relay.irc.backlog_since_last_message* +** description: pass:none[afficher l'historique en démarrant depuis votre dernier message envoyé] +** type: booléen +** valeurs: on, off +** valeur par défaut: `+off+` + +* [[option_relay.irc.backlog_tags]] *relay.irc.backlog_tags* +** description: pass:none[liste d'étiquettes de messages (séparées par des virgules) qui sont affichés dans l'historique par canal IRC (étiquettes supportées : "irc_join", "irc_part", "irc_quit", "irc_nick", "irc_privmsg"), "*" = toutes les étiquettes supportées] +** type: chaîne +** valeurs: toute chaîne +** valeur par défaut: `+"irc_privmsg"+` + +* [[option_relay.irc.backlog_time_format]] *relay.irc.backlog_time_format* +** description: pass:none[format pour l'heure dans les messages d'historique (voir man strftime pour le format) (non utilisé si la capacité de serveur "server-time" a été activée par le client, car l'heure est envoyée sous forme d'étiquette irc) ; chaîne vide = désactiver l'heure dans les messages d'historique] +** type: chaîne +** valeurs: toute chaîne +** valeur par défaut: `+"[%H:%M] "+` + +* [[option_relay.look.auto_open_buffer]] *relay.look.auto_open_buffer* +** description: pass:none[ouvrir automatiquement le tampon des clients pour le relai lorsqu'un nouveau client est ajouté à la liste] +** type: booléen +** valeurs: on, off +** valeur par défaut: `+on+` + +* [[option_relay.look.raw_messages]] *relay.look.raw_messages* +** description: pass:none[nombre de messages bruts à sauvegarder en mémoire lorsque le tampon des données brutes est fermé (ces messages seront affichés lors de l'ouverture du tampon des données brutes)] +** type: entier +** valeurs: 0 .. 65535 +** valeur par défaut: `+256+` + +* [[option_relay.network.allow_empty_password]] *relay.network.allow_empty_password* +** description: pass:none[autoriser un mot de passe vide dans relay (devrait être activé seulement pour des tests ou sur le réseau local)] +** type: booléen +** valeurs: on, off +** valeur par défaut: `+off+` + +* [[option_relay.network.allowed_ips]] *relay.network.allowed_ips* +** description: pass:none[expression régulière POSIX étendue avec les IPs autorisées pour le relai (insensible à la casse, utilisez "(?-i)" en début de chaîne pour la rendre insensible à la casse), exemple : "^(123\.45\.67\.89|192\.160\..*)$"] +** type: chaîne +** valeurs: toute chaîne +** valeur par défaut: `+""+` + +* [[option_relay.network.auth_timeout]] *relay.network.auth_timeout* +** description: pass:none[temps maximum (en secondes) pour l'authentification du client ; la connexion est fermée si le client n'est toujours pas authentifié après ce délai et le statut est positionné à "échec d'authentification" (0 = attendre sans fin)] +** type: entier +** valeurs: 0 .. 2147483647 +** valeur par défaut: `+60+` + +* [[option_relay.network.bind_address]] *relay.network.bind_address* +** description: pass:none[adresse pour le bind (si vide, la connexion est possible sur toutes les interfaces, utiliser "127.0.0.1" pour autoriser les connections depuis la machine locale seulement)] +** type: chaîne +** valeurs: toute chaîne +** valeur par défaut: `+""+` + +* [[option_relay.network.clients_purge_delay]] *relay.network.clients_purge_delay* +** description: pass:none[délai pour purger les clients déconnectés (en minutes, 0 = purger les clients immédiatement, -1 = ne jamais purger)] +** type: entier +** valeurs: -1 .. 43200 +** valeur par défaut: `+0+` + +* [[option_relay.network.compression]] *relay.network.compression* +** description: pass:none[compression des messages envoyés aux clients avec le protocole "weechat" : 0 = désactiver la compression, 1 = faible compression / rapide ... 100 = meilleure compression / lent ; la valeur est un pourcentage converti de 1 à 9 pour zlib et de 1 à 19 pour zstd ; la valeur par défaut est recommandée, elle offre un bon compromis compression/vitesse] +** type: entier +** valeurs: 0 .. 100 +** valeur par défaut: `+20+` + +* [[option_relay.network.ipv6]] *relay.network.ipv6* +** description: pass:none[écouter en IPv6 sur le socket par défaut (en plus de l'IPv4 qui est par défaut) ; les protocoles IPv4 et IPv6 peuvent être forcés (individuellement ou ensemble) dans le nom du protocole (voir /help relay)] +** type: booléen +** valeurs: on, off +** valeur par défaut: `+on+` + +* [[option_relay.network.max_clients]] *relay.network.max_clients* +** description: pass:none[nombre maximum de clients qui se connectent sur un port (0 = pas de limite)] +** type: entier +** valeurs: 0 .. 2147483647 +** valeur par défaut: `+5+` + +* [[option_relay.network.nonce_size]] *relay.network.nonce_size* +** description: pass:none[taille du nonce (en octets), généré lorsqu'un client se connecte ; le client doit utiliser ce nonce, concaténé au nonce client et au mot de passe pour hacher le mot de passe dans la commande "init" du protocole weechat] +** type: entier +** valeurs: 8 .. 128 +** valeur par défaut: `+16+` + +* [[option_relay.network.password]] *relay.network.password* +** description: pass:none[mot de passe requis par les clients pour accéder à ce relai (une valeur vide indique que le mot de passe n'est pas nécessaire, voir l'option relay.network.allow_empty_password) (note : le contenu est évalué, voir /help eval)] +** type: chaîne +** valeurs: toute chaîne +** valeur par défaut: `+""+` + +* [[option_relay.network.password_hash_algo]] *relay.network.password_hash_algo* +** description: pass:none[liste des algorithmes de hachage pour l'authentification par mot de passe dans le protocole relay, parmi ces valeurs : "plain" (mot de passe en clair, non haché), "sha256", "sha512", "pbkdf2+sha256", "pbkdf2+sha512" ; "*" signifie tous les algorithmes, un nom commençant par "!" est une valeur négative pour empêcher un algorithme d'être utilisé, le caractère joker "*" est autorisé dans les noms (exemples : "*", "pbkdf2*", "*,!plain")] +** type: chaîne +** valeurs: toute chaîne +** valeur par défaut: `+"*"+` + +* [[option_relay.network.password_hash_iterations]] *relay.network.password_hash_iterations* +** description: pass:none[nombre d'itérations demandées au client dans le protocole weechat lorsqu'un mot de passe haché avec l'algorithme PBKDF2 est utilisé pour l'authentification ; plus d'itérations est mieux en terme de sécurité mais est plus lent à calculer ; ce nombre ne doit pas être trop élevé si votre micro-processeur est lent] +** type: entier +** valeurs: 1 .. 1000000 +** valeur par défaut: `+100000+` + +* [[option_relay.network.ssl_cert_key]] *relay.network.ssl_cert_key* +** description: pass:none[fichier avec le certificat et la clé privée SSL (pour servir les clients avec SSL) (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_config_dir}/ssl/relay.pem"+` + +* [[option_relay.network.ssl_priorities]] *relay.network.ssl_priorities* +** description: pass:none[chaîne avec les priorités pour gnutls (pour la syntaxe, voir la documentation de la fonction gnutls_priority_init du manuel gnutls, les chaînes courantes sont : "PERFORMANCE", "NORMAL", "SECURE128", "SECURE256", "EXPORT", "NONE")] +** type: chaîne +** valeurs: toute chaîne +** valeur par défaut: `+"NORMAL:-VERS-SSL3.0"+` + +* [[option_relay.network.totp_secret]] *relay.network.totp_secret* +** description: pass:none[secret pour la génération du mot de passe à usage unique basé sur le temps (TOTP), encodé en base32 (seulement des lettres et chiffres de 2 à 7) ; il est utilisé comme second facteur d'authentification dans le protocole weechat, en plus du mot de passe, qui ne doit pas être vide (une valeur vide signifie que le TOTP n'est pas requis) (note : le contenu est évalué, voir /help eval)] +** type: chaîne +** valeurs: toute chaîne +** valeur par défaut: `+""+` + +* [[option_relay.network.totp_window]] *relay.network.totp_window* +** description: pass:none[nombre de mots de passe à usage unique basés sur le temps à accepter avant et après le mot de passe courant ; 0 = accepter seulement le mot de passe courant, 1 = accepter un mot de passe avant, le courant et un après; 2 = accepter deux mots de passe avant, le courant et deux après, ... ; un nombre élevé réduit le niveau de sécurité (0 ou 1 sont les valeurs recommandées)] +** type: entier +** valeurs: 0 .. 256 +** valeur par défaut: `+0+` + +* [[option_relay.network.websocket_allowed_origins]] *relay.network.websocket_allowed_origins* +** description: pass:none[expression régulière POSIX étendue avec les origines autorisées dans les websockets (insensible à la casse, utilisez "(?-i)" en début de chaîne pour la rendre sensible à la casse), exemple : "^https?://(www\.)?example\.(com|org)"] +** type: chaîne +** valeurs: toute chaîne +** valeur par défaut: `+""+` + +* [[option_relay.weechat.commands]] *relay.weechat.commands* +** description: pass:none[liste des commandes autorisées/interdites lorsque qu'une entrée de données (texte ou commande) est reçue du client (séparées par des virgules) ; "*" signifie toutes les commandes, un nom commençant par "!" est une valeur négative pour empêcher une commande d'être exécutée, le caractère joker "*" est autorisé dans les noms ; cette option devrait être définie si le client relay n'est pas sûr (quelqu'un pourrait l'utiliser pour exécuter des commandes) ; par exemple "*,!exec,!quit" autorise toute commande sauf /exec et /quit] +** type: chaîne +** valeurs: toute chaîne +** valeur par défaut: `+""+` +// end::relay_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é] +** type: booléen +** valeurs: on, off +** valeur par défaut: `+off+` + +* [[option_ruby.look.eval_keep_context]] *ruby.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::ruby_options[] + +// tag::script_options[] +* [[option_script.color.status_autoloaded]] *script.color.status_autoloaded* +** description: pass:none[couleur du statut "chargé auto" ("a")] +** 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_script.color.status_held]] *script.color.status_held* +** description: pass:none[couleur du statut "figé" ("H")] +** 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_script.color.status_installed]] *script.color.status_installed* +** description: pass:none[couleur du statut "installé" ("i")] +** 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_script.color.status_obsolete]] *script.color.status_obsolete* +** description: pass:none[couleur du statut "obsolète" ("N")] +** 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_script.color.status_popular]] *script.color.status_popular* +** description: pass:none[couleur du statut "populaire" ("*")] +** 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_script.color.status_running]] *script.color.status_running* +** description: pass:none[couleur du statut "chargé" ("r")] +** 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_script.color.status_unknown]] *script.color.status_unknown* +** description: pass:none[couleur du statut "inconnu" ("?")] +** 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_script.color.text]] *script.color.text* +** description: pass:none[couleur du texte dans le tampon script] +** 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_script.color.text_bg]] *script.color.text_bg* +** description: pass:none[couleur du fond dans le tampon script] +** 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_script.color.text_bg_selected]] *script.color.text_bg_selected* +** description: pass:none[couleur du fond pour la ligne sélectionnée dans le tampon script] +** 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_script.color.text_date]] *script.color.text_date* +** description: pass:none[couleur du texte pour les dates dans le tampon script] +** 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_script.color.text_date_selected]] *script.color.text_date_selected* +** description: pass:none[couleur du texte pour les dates de la ligne sélectionnée dans le tampon script] +** 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_script.color.text_delimiters]] *script.color.text_delimiters* +** description: pass:none[couleur du texte pour les délimiteurs dans le tampon script] +** 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_script.color.text_description]] *script.color.text_description* +** description: pass:none[couleur du texte pour la description dans le tampon script] +** 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_script.color.text_description_selected]] *script.color.text_description_selected* +** description: pass:none[couleur du texte pour la description de la ligne sélectionnée dans le tampon script] +** 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_script.color.text_extension]] *script.color.text_extension* +** description: pass:none[couleur du texte pour l'extension dans le tampon script] +** 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_script.color.text_extension_selected]] *script.color.text_extension_selected* +** description: pass:none[couleur du texte pour l'extension de la ligne sélectionnée dans le tampon script] +** 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_script.color.text_name]] *script.color.text_name* +** description: pass:none[couleur du texte pour le nom du script dans le tampon script] +** 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_script.color.text_name_selected]] *script.color.text_name_selected* +** description: pass:none[couleur du texte pour le nom du script de la ligne sélectionnée dans le tampon script] +** 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_script.color.text_selected]] *script.color.text_selected* +** description: pass:none[couleur du texte pour la ligne sélectionnée dans le tampon script] +** 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_script.color.text_tags]] *script.color.text_tags* +** description: pass:none[couleur du texte pour les étiquettes dans le tampon script] +** 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_script.color.text_tags_selected]] *script.color.text_tags_selected* +** description: pass:none[couleur du texte pour les étiquettes de la ligne sélectionnée dans le tampon script] +** 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_script.color.text_version]] *script.color.text_version* +** description: pass:none[couleur du texte pour la version dans le tampon script] +** 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_script.color.text_version_loaded]] *script.color.text_version_loaded* +** description: pass:none[couleur du texte pour la version chargée dans le tampon script] +** 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_script.color.text_version_loaded_selected]] *script.color.text_version_loaded_selected* +** description: pass:none[couleur du texte pour la version chargée de la ligne sélectionnée dans le tampon script] +** 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_script.color.text_version_selected]] *script.color.text_version_selected* +** description: pass:none[couleur du texte pour la version de la ligne sélectionnée dans le tampon script] +** 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_script.look.columns]] *script.look.columns* +** description: pass:none[format des colonnes affichées dans le tampon des scripts : les identifiants de colonne suivants sont remplacés par leurs valeurs : %a=auteur, %d=description, %D=date d'ajout, %e=extension, %l=langage, %L=licence, %n=nom avec extension, %N=nom, %r=dépendances, %s=statuts, %t=étiquettes, %u=date de mise à jour, %v=version, %V=version chargée, %w=min_weechat, %W=max_weechat] +** type: chaîne +** valeurs: toute chaîne +** valeur par défaut: `+"%s %n %V %v %u | %d | %t"+` + +* [[option_script.look.diff_color]] *script.look.diff_color* +** description: pass:none[colorie la sortie du diff] +** type: booléen +** valeurs: on, off +** valeur par défaut: `+on+` + +* [[option_script.look.diff_command]] *script.look.diff_command* +** description: pass:none[commande utilisée pour montrer les différences entre le script installé et la nouvelle version dans le dépôt ("auto" = détecter automatiquement la commande de diff (git ou diff), valeur vide = désactiver le diff, autre chaîne = nom de la commande, par exemple "diff")] +** type: chaîne +** valeurs: toute chaîne +** valeur par défaut: `+"auto"+` + +* [[option_script.look.display_source]] *script.look.display_source* +** description: pass:none[afficher le code source du script sur le tampon avec le détail sur le script (le script est téléchargé dans un fichier temporaire lorsque le détail du script est affiché)] +** type: booléen +** valeurs: on, off +** valeur par défaut: `+on+` + +* [[option_script.look.quiet_actions]] *script.look.quiet_actions* +** description: pass:none[actions silencieuses sur le tampon script : ne pas afficher de messages sur le tampon "core" quand les scripts sont installés/supprimés/chargés/déchargés (seules les erreurs sont affichées)] +** type: booléen +** valeurs: on, off +** valeur par défaut: `+on+` + +* [[option_script.look.sort]] *script.look.sort* +** description: pass:none[tri par défaut des scripts : liste d'identifiants séparés par des virgules : a=auteur, A=chargé auto, d=date d'ajout, e=extension, i=installé, l=langage, n=nom, o=obsolète, p=populaire, r=chargé, u=date de mise à jour ; le caractère "-" peut être utilisé avant l'identifiant pour inverser l'ordre ; exemple : "i,u" : scripts installés en premier, triés par date de mise à jour] +** type: chaîne +** valeurs: toute chaîne +** valeur par défaut: `+"i,p,n"+` + +* [[option_script.look.translate_description]] *script.look.translate_description* +** description: pass:none[traduire la description des scripts (si une traduction est disponible dans votre langue, sinon la version anglaise est utilisée)] +** type: booléen +** valeurs: on, off +** valeur par défaut: `+on+` + +* [[option_script.look.use_keys]] *script.look.use_keys* +** description: pass:none[utiliser les touches alt+X sur le tampon script pour effectuer les actions sur les scripts (alt+i = installer, alt+r = supprimer, ...) ; si désactivé, seule l'entrée est autorisée : i, r, ...] +** type: booléen +** valeurs: on, off +** valeur par défaut: `+on+` + +* [[option_script.scripts.autoload]] *script.scripts.autoload* +** description: pass:none[charger automatiquement les scripts installés (faire un lien dans le répertoire "autoload" vers le script dans le répertoire parent)] +** type: booléen +** valeurs: on, off +** valeur par défaut: `+on+` + +* [[option_script.scripts.cache_expire]] *script.scripts.cache_expire* +** description: pass:none[temps d'expiration du cache local, en minutes (-1 = n'expire jamais, 0 = expire toujours)] +** type: entier +** valeurs: -1 .. 525600 +** valeur par défaut: `+1440+` + +* [[option_script.scripts.download_enabled]] *script.scripts.download_enabled* +** description: pass:none[activer le téléchargement des fichiers depuis le dépôt des scripts lorsque la commande /script est utilisée (liste des scripts et les scripts eux-mêmes) ; la liste des scripts est téléchargée depuis l'URL spécifiée dans l'option script.scripts.url ; WeeChat téléchargera parfois à nouveau la liste des scripts quand vous utilisez la commande /script, même si vous n'installez pas un script] +** type: booléen +** valeurs: on, off +** valeur par défaut: `+off+` + +* [[option_script.scripts.download_timeout]] *script.scripts.download_timeout* +** description: pass:none[délai d'attente maximum (en secondes) pour le téléchargement des scripts et de la liste des scripts] +** type: entier +** valeurs: 1 .. 3600 +** valeur par défaut: `+30+` + +* [[option_script.scripts.hold]] *script.scripts.hold* +** description: pass:none[scripts à "figer" : liste de scripts séparés par des virgules qui ne seront jamais mis à jour et ne peuvent pas être supprimés, par exemple : "go.py,urlserver.py"] +** type: chaîne +** valeurs: toute chaîne +** valeur par défaut: `+""+` + +* [[option_script.scripts.path]] *script.scripts.path* +** description: pass:none[répertoire du cache local pour les scripts (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_cache_dir}/script"+` + +* [[option_script.scripts.url]] *script.scripts.url* +** description: pass:none[URL pour le fichier avec la liste des scripts] +** type: chaîne +** valeurs: toute chaîne +** valeur par défaut: `+"https://weechat.org/files/plugins.xml.gz"+` +// end::script_options[] + // 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)] @@ -29,6 +2287,218 @@ ** 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: `+lightred+` + +* [[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_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: `+cyan+` + +* [[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: `+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::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: `+lightgreen+` + +* [[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_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: `+lightblue+` + +* [[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: `+lightcyan+` + +* [[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: `+lightmagenta+` + +* [[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_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: `+cyan+` + +* [[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: `+green+` + +* [[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: `+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::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] @@ -1381,544 +3851,6 @@ ** 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[] - -// 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::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: `+lightred+` - -* [[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: `+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[] - -// 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: `+lightgreen+` - -* [[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_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: `+lightblue+` - -* [[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: `+lightcyan+` - -* [[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: `+lightmagenta+` - -* [[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_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: `+cyan+` - -* [[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: `+green+` - -* [[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: `+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+` - -* [[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: `+lightred+` - -* [[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_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: `+cyan+` - -* [[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: `+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},"+` - -* [[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+` - -* [[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_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_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+` - -* [[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_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] -** type: entier -** valeurs: 1 .. 3 -** 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)] -** 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+` - -* [[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::xfer_options[] * [[option_xfer.color.status_aborted]] *xfer.color.status_aborted* ** description: pass:none[couleur du texte pour le statut "interrompu"] @@ -2106,1935 +4038,3 @@ ** valeurs: 5 .. 2147483647 ** valeur par défaut: `+300+` // end::xfer_options[] - -// tag::irc_options[] -* [[option_irc.color.input_nick]] *irc.color.input_nick* -** description: pass:none[couleur du pseudo dans la 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: `+lightcyan+` - -* [[option_irc.color.item_channel_modes]] *irc.color.item_channel_modes* -** description: pass:none[couleur pour les modes du canal, à côté du nom du canal] -** 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_irc.color.item_lag_counting]] *irc.color.item_lag_counting* -** description: pass:none[couleur pour l'indicateur de lag, lorsque le décompte est en cours (pong non reçu du serveur, le lag augmente)] -** 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_irc.color.item_lag_finished]] *irc.color.item_lag_finished* -** description: pass:none[couleur pour l'indicateur de lag, lorsque le pong a été reçu du serveur] -** 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_irc.color.item_nick_modes]] *irc.color.item_nick_modes* -** description: pass:none[couleur pour les modes du pseudo dans l'objet de barre "input_prompt"] -** 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_irc.color.item_tls_version_deprecated]] *irc.color.item_tls_version_deprecated* -** description: pass:none[couleur pour les versions obsolètes de TLS dans l'objet de barre "tls_version"] -** 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_irc.color.item_tls_version_insecure]] *irc.color.item_tls_version_insecure* -** description: pass:none[couleur pour les versions non sécurisées de TLS dans l'objet de barre "tls_version"] -** 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_irc.color.item_tls_version_ok]] *irc.color.item_tls_version_ok* -** description: pass:none[couleur pour la version de TLS la plus haute dans l'objet de barre "tls_version"] -** 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_irc.color.message_account]] *irc.color.message_account* -** description: pass:none[couleur pour le texte dans les messages account] -** 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_irc.color.message_chghost]] *irc.color.message_chghost* -** description: pass:none[couleur pour le texte dans les messages "chghost"] -** 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_irc.color.message_join]] *irc.color.message_join* -** description: pass:none[couleur pour le texte dans les messages join] -** 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_irc.color.message_kick]] *irc.color.message_kick* -** description: pass:none[couleur pour le texte dans les messages kick/kill] -** 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_irc.color.message_quit]] *irc.color.message_quit* -** description: pass:none[couleur pour le texte dans les messages part/quit] -** 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_irc.color.message_setname]] *irc.color.message_setname* -** description: pass:none[couleur pour le texte dans les messages "setname"] -** 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_irc.color.mirc_remap]] *irc.color.mirc_remap* -** description: pass:none[réassigner les couleurs mirc dans les messages en utilisant une table de hachage : les clés sont "fg,bg" sous forme d'entiers entre -1 (non spécifié) et 15, les valeurs sont des noms de couleur WeeChat ou nombres (le format est : "1,-1:couleur1;2,7:couleur2"), exemple : "1,-1:darkgray;1,2:white,blue" pour réassigner le noir en "darkgray" et le noir sur bleu en "white,blue" ; les couleurs WeeChat par défaut pour les codes IRC sont : 0=white, 1=black, 2=blue, 3=green, 4=lightred, 5=red, 6=magenta, 7=brown, 8=yellow, 9=lightgreen, 10=cyan, 11=lightcyan, 12=lightblue, 13=lightmagenta, 14=darkgray, 15=gray] -** type: chaîne -** valeurs: toute chaîne -** valeur par défaut: `+"1,-1:darkgray"+` - -* [[option_irc.color.nick_prefixes]] *irc.color.nick_prefixes* -** description: pass:none[couleur pour les préfixes du pseudo en utilisant les caractères de mode (o=op, h=halfop, v=voice, ...), le format est : "o:couleur1;h:couleur2;v:couleur3" (si un mode n'est pas trouvé, WeeChat essaiera avec les modes suivants reçus du serveur ("PREFIX") ; un mode spécial "*" peut être utilisé comme couleur par défaut si aucun mode n'est trouvé dans la liste)] -** type: chaîne -** valeurs: toute chaîne -** valeur par défaut: `+"y:lightred;q:lightred;a:lightcyan;o:lightgreen;h:lightmagenta;v:yellow;*:lightblue"+` - -* [[option_irc.color.notice]] *irc.color.notice* -** description: pass:none[couleur pour le texte "Notice" dans les notices] -** 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_irc.color.reason_kick]] *irc.color.reason_kick* -** description: pass:none[couleur pour la raison dans les messages kick/kill] -** 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_irc.color.reason_quit]] *irc.color.reason_quit* -** description: pass:none[couleur pour la raison dans les messages part/quit] -** 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_irc.color.topic_current]] *irc.color.topic_current* -** description: pass:none[couleur pour le titre du canal actuel (en rejoignant un canal ou sur /topic)] -** 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_irc.color.topic_new]] *irc.color.topic_new* -** description: pass:none[couleur pour le nouveau titre du canal (lorsque le titre est 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: `+white+` - -* [[option_irc.color.topic_old]] *irc.color.topic_old* -** description: pass:none[couleur pour l'ancien titre du canal (lorsque le titre est 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: `+default+` - -* [[option_irc.look.buffer_open_before_autojoin]] *irc.look.buffer_open_before_autojoin* -** description: pass:none[ouvrir le tampon du canal avant que le JOIN soit reçu du serveur lorsqu'il est automatiquement rejoint (avec l'option du serveur "autojoin")] -** type: booléen -** valeurs: on, off -** valeur par défaut: `+on+` - -* [[option_irc.look.buffer_open_before_join]] *irc.look.buffer_open_before_join* -** description: pass:none[ouvrir le tampon du canal avant que le JOIN soit reçu du serveur lorsqu'il est manuellement rejoint (avec la commande /join)] -** type: booléen -** valeurs: on, off -** valeur par défaut: `+off+` - -* [[option_irc.look.buffer_switch_autojoin]] *irc.look.buffer_switch_autojoin* -** description: pass:none[basculer automatiquement vers le tampon du canal lorsqu'il est automatiquement rejoint (avec l'option du serveur "autojoin")] -** type: booléen -** valeurs: on, off -** valeur par défaut: `+on+` - -* [[option_irc.look.buffer_switch_join]] *irc.look.buffer_switch_join* -** description: pass:none[basculer automatiquement vers le tampon du canal lorsqu'il est manuellement rejoint (avec la commande /join)] -** type: booléen -** valeurs: on, off -** valeur par défaut: `+on+` - -* [[option_irc.look.color_nicks_in_names]] *irc.look.color_nicks_in_names* -** description: pass:none[utiliser la couleur du pseudo dans la sortie de /names (ou la liste des pseudos affichée lorsqu'on rejoint un canal)] -** type: booléen -** valeurs: on, off -** valeur par défaut: `+off+` - -* [[option_irc.look.color_nicks_in_nicklist]] *irc.look.color_nicks_in_nicklist* -** description: pass:none[utiliser la couleur du pseudo dans la liste des pseudos] -** type: booléen -** valeurs: on, off -** valeur par défaut: `+off+` - -* [[option_irc.look.color_nicks_in_server_messages]] *irc.look.color_nicks_in_server_messages* -** description: pass:none[utiliser la couleur du pseudo dans les messages du serveur] -** type: booléen -** valeurs: on, off -** valeur par défaut: `+on+` - -* [[option_irc.look.color_pv_nick_like_channel]] *irc.look.color_pv_nick_like_channel* -** description: pass:none[utiliser la même couleur de pseudo pour le canal et le privé] -** type: booléen -** valeurs: on, off -** valeur par défaut: `+on+` - -* [[option_irc.look.ctcp_time_format]] *irc.look.ctcp_time_format* -** description: pass:none[format de date/heure utilisé pour la réponse au message CTCP TIME (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 %z"+` - -* [[option_irc.look.display_account_message]] *irc.look.display_account_message* -** description: pass:none[afficher les messages ACCOUNT reçus quand la capacité account-notify est activée] -** type: booléen -** valeurs: on, off -** valeur par défaut: `+on+` - -* [[option_irc.look.display_away]] *irc.look.display_away* -** description: pass:none[afficher un message pour l'absence/retour (off : ne rien afficher/envoyer, local : afficher en local, channel : envoyer l'action aux canaux)] -** type: entier -** valeurs: off, local, channel -** valeur par défaut: `+local+` - -* [[option_irc.look.display_ctcp_blocked]] *irc.look.display_ctcp_blocked* -** description: pass:none[afficher le message CTCP même s'il est bloqué] -** type: booléen -** valeurs: on, off -** valeur par défaut: `+on+` - -* [[option_irc.look.display_ctcp_reply]] *irc.look.display_ctcp_reply* -** description: pass:none[afficher la réponse CTCP envoyée par WeeChat] -** type: booléen -** valeurs: on, off -** valeur par défaut: `+on+` - -* [[option_irc.look.display_ctcp_unknown]] *irc.look.display_ctcp_unknown* -** description: pass:none[afficher le message CTCP même si le CTCP est inconnu] -** type: booléen -** valeurs: on, off -** valeur par défaut: `+on+` - -* [[option_irc.look.display_extended_join]] *irc.look.display_extended_join* -** description: pass:none[afficher les informations supplémentaires sur les messages JOIN : nom de compte et nom réel (la capacité extended-join doit être activée)] -** type: booléen -** valeurs: on, off -** valeur par défaut: `+on+` - -* [[option_irc.look.display_host_join]] *irc.look.display_host_join* -** description: pass:none[afficher le nom d'hôte dans les messages join] -** type: booléen -** valeurs: on, off -** valeur par défaut: `+on+` - -* [[option_irc.look.display_host_join_local]] *irc.look.display_host_join_local* -** description: pass:none[afficher le nom d'hôte dans les messages join du client local] -** type: booléen -** valeurs: on, off -** valeur par défaut: `+on+` - -* [[option_irc.look.display_host_quit]] *irc.look.display_host_quit* -** description: pass:none[afficher le nom d'hôte dans les messages part/quit] -** type: booléen -** valeurs: on, off -** valeur par défaut: `+on+` - -* [[option_irc.look.display_join_message]] *irc.look.display_join_message* -** description: pass:none[liste de messages (séparés par des virgules) à afficher après avoir rejoint un canal : 324 = modes du canal, 329 = date de création du canal, 332 = titre, 333 = pseudo/date pour le titre, 353 = noms sur le canal, 366 = décompte des noms] -** type: chaîne -** valeurs: toute chaîne -** valeur par défaut: `+"329,332,333,366"+` - -* [[option_irc.look.display_old_topic]] *irc.look.display_old_topic* -** description: pass:none[afficher l'ancien titre lorsque le titre du canal est changé] -** type: booléen -** valeurs: on, off -** valeur par défaut: `+on+` - -* [[option_irc.look.display_pv_away_once]] *irc.look.display_pv_away_once* -** description: pass:none[afficher le message d'absence distant une seule fois en privé] -** type: booléen -** valeurs: on, off -** valeur par défaut: `+on+` - -* [[option_irc.look.display_pv_back]] *irc.look.display_pv_back* -** description: pass:none[afficher un message en privé lorsque l'utilisateur est de retour (après avoir quitté le serveur)] -** type: booléen -** valeurs: on, off -** valeur par défaut: `+on+` - -* [[option_irc.look.display_pv_nick_change]] *irc.look.display_pv_nick_change* -** description: pass:none[afficher le changement de pseudo en privé] -** type: booléen -** valeurs: on, off -** valeur par défaut: `+on+` - -* [[option_irc.look.display_pv_warning_address]] *irc.look.display_pv_warning_address* -** description: pass:none[afficher un avertissement dans le tampon privé si l'adresse du pseudo distant a changé ; cette option est désactivée par défaut car les serveurs comme bitlbee causent un affichage de cet avertissement à tort (l'adresse du pseudo distant change plusieurs fois à la connexion)] -** type: booléen -** valeurs: on, off -** valeur par défaut: `+off+` - -* [[option_irc.look.highlight_channel]] *irc.look.highlight_channel* -** description: pass:none[liste de mots pour le highlight dans les tampons de type "canal", séparés par des virgules (insensible à la casse, utilisez "(?-i)" au début des mots pour les rendre sensibles à la casse ; les variables spéciales $nick, $channel et $server sont remplacées par leurs valeurs), ces mots sont ajoutés à la propriété du tampon "highlight_words" seulement lorsque le tampon est créé (cela n'affecte pas les tampons courants), une chaîne vide désactive le highlight par défaut sur le pseudo, exemples : "$nick", "(?-i)$nick"] -** type: chaîne -** valeurs: toute chaîne -** valeur par défaut: `+"$nick"+` - -* [[option_irc.look.highlight_pv]] *irc.look.highlight_pv* -** description: pass:none[liste de mots pour le highlight dans les tampons de type "privé", séparés par des virgules (insensible à la casse, utilisez "(?-i)" au début des mots pour les rendre sensibles à la casse ; les variables spéciales $nick, $channel et $server sont remplacées par leurs valeurs), ces mots sont ajoutés à la propriété du tampon "highlight_words" seulement lorsque le tampon est créé (cela n'affecte pas les tampons courants), une chaîne vide désactive le highlight par défaut sur le pseudo, exemples : "$nick", "(?-i)$nick"] -** type: chaîne -** valeurs: toute chaîne -** valeur par défaut: `+"$nick"+` - -* [[option_irc.look.highlight_server]] *irc.look.highlight_server* -** description: pass:none[liste de mots pour le highlight dans les tampons de type "serveur", séparés par des virgules (insensible à la casse, utilisez "(?-i)" au début des mots pour les rendre sensibles à la casse ; les variables spéciales $nick, $channel et $server sont remplacées par leurs valeurs), ces mots sont ajoutés à la propriété du tampon "highlight_words" seulement lorsque le tampon est créé (cela n'affecte pas les tampons courants), une chaîne vide désactive le highlight par défaut sur le pseudo, exemples : "$nick", "(?-i)$nick"] -** type: chaîne -** valeurs: toute chaîne -** valeur par défaut: `+"$nick"+` - -* [[option_irc.look.highlight_tags_restrict]] *irc.look.highlight_tags_restrict* -** description: pass:none[restreindre les highlights à ces étiquettes sur les tampons irc (pour avoir un highlight seulement sur les messages utilisateur et pas les messages du serveur) ; les étiquettes doivent être séparées par des virgules et "+" peut être utilisé pour faire un "et" logique entre étiquettes ; le caractère joker "*" est autorisé dans les étiquettes ; une valeur vide autorise le highlight sur n'importe quelle étiquette] -** type: chaîne -** valeurs: toute chaîne -** valeur par défaut: `+"irc_privmsg,irc_notice"+` - -* [[option_irc.look.item_channel_modes_hide_args]] *irc.look.item_channel_modes_hide_args* -** description: pass:none[cacher les paramètres des modes du canal si au moins un de ces modes est dans les modes du canal ("*" pour toujours cacher les paramètres, valeur vide pour ne jamais cacher les paramètres) ; exemple : "kf" pour cacher les paramètres si "k" ou "f" sont dans les modes du canal] -** type: chaîne -** valeurs: toute chaîne -** valeur par défaut: `+"k"+` - -* [[option_irc.look.item_display_server]] *irc.look.item_display_server* -** description: pass:none[nom de l'objet de barre où est affiché le serveur IRC (pour la barre de statut)] -** type: entier -** valeurs: buffer_plugin, buffer_name -** valeur par défaut: `+buffer_plugin+` - -* [[option_irc.look.item_nick_modes]] *irc.look.item_nick_modes* -** description: pass:none[afficher les modes du pseudo dans l'objet de barre "input_prompt"] -** type: booléen -** valeurs: on, off -** valeur par défaut: `+on+` - -* [[option_irc.look.item_nick_prefix]] *irc.look.item_nick_prefix* -** description: pass:none[afficher le préfixe du pseudo dans l'objet de barre "input_prompt"] -** type: booléen -** valeurs: on, off -** valeur par défaut: `+on+` - -* [[option_irc.look.join_auto_add_chantype]] *irc.look.join_auto_add_chantype* -** description: pass:none[ajouter automatiquement le type de canal devant le nom du canal sur la commande /join si le nom du canal ne commence pas par un type de canal valide pour le serveur ; par exemple "/join weechat" enverra en fait : "/join #weechat"] -** type: booléen -** valeurs: on, off -** valeur par défaut: `+off+` - -* [[option_irc.look.msgbuffer_fallback]] *irc.look.msgbuffer_fallback* -** description: pass:none[tampon cible par défaut pour les options msgbuffer quand la cible est "private" et que le tampon privé n'est pas trouvé] -** type: entier -** valeurs: current, server -** valeur par défaut: `+current+` - -* [[option_irc.look.new_channel_position]] *irc.look.new_channel_position* -** description: pass:none[force la position du nouveau canal dans la liste des tampons (none = position par défaut (devrait être le dernier tampon), next = tampon courant + 1, near_server = après le dernier canal/privé du serveur)] -** type: entier -** valeurs: none, next, near_server -** valeur par défaut: `+none+` - -* [[option_irc.look.new_pv_position]] *irc.look.new_pv_position* -** description: pass:none[force la position du nouveau privé dans la liste des tampons (none = position par défaut (devrait être le dernier tampon), next = tampon courant + 1, near_server = après le dernier canal/privé du serveur)] -** type: entier -** valeurs: none, next, near_server -** valeur par défaut: `+none+` - -* [[option_irc.look.nick_completion_smart]] *irc.look.nick_completion_smart* -** description: pass:none[complétion intelligente pour les pseudos (complète d'abord avec les personnes qui ont parlé récemment) : speakers = tous ceux qui ont parlé (incluant les highlights), speakers_highlights = seulement ceux qui ont parlé avec un highlight] -** type: entier -** valeurs: off, speakers, speakers_highlights -** valeur par défaut: `+speakers+` - -* [[option_irc.look.nick_mode]] *irc.look.nick_mode* -** description: pass:none[afficher le mode du pseudo (op, voice, ...) avant le pseudo (none = jamais, prefix = dans le préfixe seulement, action = dans les messages d'action seulement, both = préfixe + messages d'actions)] -** type: entier -** valeurs: none, prefix, action, both -** valeur par défaut: `+prefix+` - -* [[option_irc.look.nick_mode_empty]] *irc.look.nick_mode_empty* -** description: pass:none[afficher un espace si le mode du pseudo est activé mais que le pseudo n'a pas de mode (pas op, voice, ...)] -** type: booléen -** valeurs: on, off -** valeur par défaut: `+off+` - -* [[option_irc.look.nicks_hide_password]] *irc.look.nicks_hide_password* -** description: pass:none[liste des pseudos (séparés par des virgules) pour lesquels les mots de passe seront masqués quand un message est envoyé, par exemple pour cacher le mot de passe dans le message affiché par "/msg nickserv identify motdepasse", exemple : "nickserv|nickbot"] -** type: chaîne -** valeurs: toute chaîne -** valeur par défaut: `+"nickserv"+` - -* [[option_irc.look.notice_as_pv]] *irc.look.notice_as_pv* -** description: pass:none[afficher les notices comme des messages privés (si auto, utilise le tampon privé s'il est trouvé)] -** type: entier -** valeurs: auto, never, always -** valeur par défaut: `+auto+` - -* [[option_irc.look.notice_welcome_redirect]] *irc.look.notice_welcome_redirect* -** description: pass:none[rediriger automatiquement les notices de bienvenue sur le canal vers le tampon du canal ; de telles notices ont le pseudo comme cible mais le nom du canal au début du message de notice, par exemple les notices ENTRYMSG envoyées par les services Atheme IRC qui ressemblent à : "[#canal\] Bienvenue sur ce canal..."] -** type: booléen -** valeurs: on, off -** valeur par défaut: `+on+` - -* [[option_irc.look.notice_welcome_tags]] *irc.look.notice_welcome_tags* -** description: pass:none[liste des étiquettes (séparées par des virgules) utilisées dans la notice de bienvenue redirigée vers un canal, par exemple : "notify_private"] -** type: chaîne -** valeurs: toute chaîne -** valeur par défaut: `+""+` - -* [[option_irc.look.notify_tags_ison]] *irc.look.notify_tags_ison* -** description: pass:none[liste des étiquettes (séparées par des virgules) utilisées dans les messages affichés par notify lorsqu'un pseudo a rejoint ou quitté le serveur (résultat de la commande ison ou monitor), par exemple : "notify_message", "notify_private" ou "notify_highlight"] -** type: chaîne -** valeurs: toute chaîne -** valeur par défaut: `+"notify_message"+` - -* [[option_irc.look.notify_tags_whois]] *irc.look.notify_tags_whois* -** description: pass:none[liste des étiquettes (séparées par des virgules) utilisées dans les messages affichés par notify lorsque le statut d'absence d'un pseudo change (résultat de la commande whois), par exemple : "notify_message", "notify_private" ou "notify_highlight"] -** type: chaîne -** valeurs: toute chaîne -** valeur par défaut: `+"notify_message"+` - -* [[option_irc.look.part_closes_buffer]] *irc.look.part_closes_buffer* -** description: pass:none[fermer le tampon lorsque /part est exécuté sur un canal] -** type: booléen -** valeurs: on, off -** valeur par défaut: `+off+` - -* [[option_irc.look.pv_buffer]] *irc.look.pv_buffer* -** description: pass:none[mélanger les tampons privés] -** type: entier -** valeurs: independent, merge_by_server, merge_all -** valeur par défaut: `+independent+` - -* [[option_irc.look.pv_tags]] *irc.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_irc.look.raw_messages]] *irc.look.raw_messages* -** description: pass:none[nombre de messages bruts à sauvegarder en mémoire lorsque le tampon des données brutes est fermé (ces messages seront affichés lors de l'ouverture du tampon des données brutes)] -** type: entier -** valeurs: 0 .. 65535 -** valeur par défaut: `+256+` - -* [[option_irc.look.server_buffer]] *irc.look.server_buffer* -** description: pass:none[mélanger les tampons de serveur ; cette option n'a pas d'effet si une disposition est sauvée et qu'elle est en conflit avec cette valeur (voir /help layout)] -** type: entier -** valeurs: merge_with_core, merge_without_core, independent -** valeur par défaut: `+merge_with_core+` - -* [[option_irc.look.smart_filter]] *irc.look.smart_filter* -** description: pass:none[filtrer les messages join/part/quit/nick pour un pseudo s'il n'a pas parlé pendant quelques minutes sur le canal (vous devez créer un filtre sur l'étiquette "irc_smart_filter", voir /help filter)] -** type: booléen -** valeurs: on, off -** valeur par défaut: `+on+` - -* [[option_irc.look.smart_filter_account]] *irc.look.smart_filter_account* -** description: pass:none[activer le filtre intelligent pour les messages "account"] -** type: booléen -** valeurs: on, off -** valeur par défaut: `+on+` - -* [[option_irc.look.smart_filter_chghost]] *irc.look.smart_filter_chghost* -** description: pass:none[activer le filtre intelligent pour les messages "chghost"] -** type: booléen -** valeurs: on, off -** valeur par défaut: `+on+` - -* [[option_irc.look.smart_filter_delay]] *irc.look.smart_filter_delay* -** description: pass:none[délai pour filtrer les messages join/part/quit (en minutes) : si le pseudo n'a pas parlé durant les N dernières minutes, le join/part/quit est filtré] -** type: entier -** valeurs: 1 .. 10080 -** valeur par défaut: `+5+` - -* [[option_irc.look.smart_filter_join]] *irc.look.smart_filter_join* -** description: pass:none[activer le filtre intelligent pour les messages "join"] -** type: booléen -** valeurs: on, off -** valeur par défaut: `+on+` - -* [[option_irc.look.smart_filter_join_unmask]] *irc.look.smart_filter_join_unmask* -** description: pass:none[délai pour démasquer un message "join" qui a été filtré avec l'étiquette "irc_smart_filter" (en minutes) : si le pseudo a rejoint au maximum il y a N minutes et qu'il a dit quelque chose sur le canal (message, notice ou mise à jour du topic), le "join" est démasqué, tout comme les changements de pseudo après ce "join" (0 = désactiver : ne jamais démasquer un "join")] -** type: entier -** valeurs: 0 .. 10080 -** valeur par défaut: `+30+` - -* [[option_irc.look.smart_filter_mode]] *irc.look.smart_filter_mode* -** description: pass:none[activer le filtre intelligent pour les messages "mode" : "*" pour filtrer tous les modes, "+" pour filtrer tous les modes dans les préfixes du serveur (par exemple "ovh"), "xyz" pour filtrer seulement les modes x/y/z, "-xyz" pour filtrer tous les modes sauf x/y/z ; exemples : "ovh" : filtrer les modes o/v/h, "-bkl" : filtrer tous les modes sauf b/k/l] -** type: chaîne -** valeurs: toute chaîne -** valeur par défaut: `+"+"+` - -* [[option_irc.look.smart_filter_nick]] *irc.look.smart_filter_nick* -** description: pass:none[activer le filtre intelligent pour les messages "nick" (changements de pseudo)] -** type: booléen -** valeurs: on, off -** valeur par défaut: `+on+` - -* [[option_irc.look.smart_filter_quit]] *irc.look.smart_filter_quit* -** description: pass:none[activer le filtre intelligent pour les messages "part" et "quit"] -** type: booléen -** valeurs: on, off -** valeur par défaut: `+on+` - -* [[option_irc.look.smart_filter_setname]] *irc.look.smart_filter_setname* -** description: pass:none[activer le filtre intelligent pour les messages "setname"] -** type: booléen -** valeurs: on, off -** valeur par défaut: `+on+` - -* [[option_irc.look.temporary_servers]] *irc.look.temporary_servers* -** description: pass:none[activer l'ajout automatique des serveurs temporaires avec la commande /connect] -** type: booléen -** valeurs: on, off -** valeur par défaut: `+off+` - -* [[option_irc.look.topic_strip_colors]] *irc.look.topic_strip_colors* -** description: pass:none[supprimer les couleurs dans le titre (utilisé seulement lors de l'affichage du titre du tampon)] -** type: booléen -** valeurs: on, off -** valeur par défaut: `+off+` - -* [[option_irc.look.typing_status_nicks]] *irc.look.typing_status_nicks* -** description: pass:none[afficher les pseudos qui écrivent sur le canal dans l'objet de barre "typing" (l'option typing.look.enabled_nicks doit être activée et la capacité "message-tags" doit être activée sur le serveur)] -** type: booléen -** valeurs: on, off -** valeur par défaut: `+off+` - -* [[option_irc.look.typing_status_self]] *irc.look.typing_status_self* -** description: pass:none[envoyer le statut d'écriture de message aux canaux de sorte que les autres utilisateurs voient quand vous écrivez un message (l'option typing.look.enabled_self doit être activée et la capacité "message-tags" doit être activée sur le serveur)] -** type: booléen -** valeurs: on, off -** valeur par défaut: `+off+` - -* [[option_irc.network.autoreconnect_delay_growing]] *irc.network.autoreconnect_delay_growing* -** description: pass:none[facteur de croissance du délai d'auto-reconnexion au serveur (1 = toujours le même délai, 2 = délai*2 pour chaque tentative, etc.)] -** type: entier -** valeurs: 1 .. 100 -** valeur par défaut: `+2+` - -* [[option_irc.network.autoreconnect_delay_max]] *irc.network.autoreconnect_delay_max* -** description: pass:none[délai maximum d'auto-reconnexion au serveur (en secondes, 0 = pas de maximum)] -** type: entier -** valeurs: 0 .. 604800 -** valeur par défaut: `+600+` - -* [[option_irc.network.ban_mask_default]] *irc.network.ban_mask_default* -** description: pass:none[masque de bannissement par défaut pour les commandes /ban, /unban et /kickban ; les variables $nick, $user, $ident et $host sont remplacées par leurs valeurs (extraites de "nick!user@host") ; $ident est identique à $user si $user ne commence pas par "~", sinon $ident vaut "*" ; ce masque par défaut est utilisé seulement si WeeChat connaît l'hôte pour le pseudo] -** type: chaîne -** valeurs: toute chaîne -** valeur par défaut: `+"*!$ident@$host"+` - -* [[option_irc.network.colors_receive]] *irc.network.colors_receive* -** description: pass:none[si désactivé, les codes couleurs des messages entrants sont ignorés] -** type: booléen -** valeurs: on, off -** valeur par défaut: `+on+` - -* [[option_irc.network.colors_send]] *irc.network.colors_send* -** description: pass:none[autorise l'utilisateur à envoyer des couleurs avec des codes spéciaux (ctrl-c + un code et une couleur optionnelle : b=gras, cxx=couleur, cxx,yy=couleur+fond, i=italique, o=désactiver couleur/attributs, r=inversé, u=souligné)] -** type: booléen -** valeurs: on, off -** valeur par défaut: `+on+` - -* [[option_irc.network.lag_check]] *irc.network.lag_check* -** description: pass:none[intervalle entre deux vérifications du lag (en secondes, 0 = ne jamais vérifier)] -** type: entier -** valeurs: 0 .. 604800 -** valeur par défaut: `+60+` - -* [[option_irc.network.lag_max]] *irc.network.lag_max* -** description: pass:none[lag maximum (en secondes) : si ce lag est atteint, WeeChat considérera que la réponse du serveur (pong) ne sera jamais reçue et arrêtera de compter le lag (0 = ne jamais abandonner)] -** type: entier -** valeurs: 0 .. 604800 -** valeur par défaut: `+1800+` - -* [[option_irc.network.lag_min_show]] *irc.network.lag_min_show* -** description: pass:none[lag minimum à afficher (en millisecondes)] -** type: entier -** valeurs: 0 .. 86400000 -** valeur par défaut: `+500+` - -* [[option_irc.network.lag_reconnect]] *irc.network.lag_reconnect* -** description: pass:none[se reconnecter au serveur si le lag est supérieur ou égal à cette valeur (en secondes, 0 = ne jamais se reconnecter) ; cette valeur doit être inférieure ou égale à irc.network.lag_max] -** type: entier -** valeurs: 0 .. 604800 -** valeur par défaut: `+300+` - -* [[option_irc.network.lag_refresh_interval]] *irc.network.lag_refresh_interval* -** description: pass:none[intervalle entre deux rafraîchissements du lag, lorsque le lag augmente (en secondes)] -** type: entier -** valeurs: 1 .. 3600 -** valeur par défaut: `+1+` - -* [[option_irc.network.notify_check_ison]] *irc.network.notify_check_ison* -** description: pass:none[intervalle entre deux vérifications de notification avec la commande IRC "ison" (en minutes)] -** type: entier -** valeurs: 1 .. 10080 -** valeur par défaut: `+1+` - -* [[option_irc.network.notify_check_whois]] *irc.network.notify_check_whois* -** description: pass:none[intervalle entre deux vérifications de notification avec la commande IRC "whois" (en minutes)] -** type: entier -** valeurs: 1 .. 10080 -** valeur par défaut: `+5+` - -* [[option_irc.network.sasl_fail_unavailable]] *irc.network.sasl_fail_unavailable* -** description: pass:none[provoquer un échec d'authentification SASL quand SASL est demandé mais non disponible sur le serveur ; lorsque cette option est activée, elle n'a d'effet que si l'option "sasl_fail" est égale à "reconnect" ou "disconnect" dans le serveur] -** type: booléen -** valeurs: on, off -** valeur par défaut: `+on+` - -* [[option_irc.network.send_unknown_commands]] *irc.network.send_unknown_commands* -** description: pass:none[envoie les commandes inconnues au serveur] -** type: booléen -** valeurs: on, off -** valeur par défaut: `+off+` - -* [[option_irc.network.whois_double_nick]] *irc.network.whois_double_nick* -** description: pass:none[doubler le pseudo dans la commande /whois (si un seul pseudo est donné), pour avoir le temps d'inactivité dans la réponse ; par exemple : "/whois pseudo" enverra "whois pseudo pseudo"] -** type: booléen -** valeurs: on, off -** valeur par défaut: `+off+` - -* [[option_irc.server_default.addresses]] *irc.server_default.addresses* -** description: pass:none[liste de nom/port ou IP/port pour le serveur (séparés par des virgules) (note : le contenu est évalué, voir /help eval ; les options de serveur sont évaluées avec ${irc_server.xxx} et ${server} est remplacé par le nom du serveur)] -** type: chaîne -** valeurs: toute chaîne -** valeur par défaut: `+""+` - -* [[option_irc.server_default.anti_flood_prio_high]] *irc.server_default.anti_flood_prio_high* -** description: pass:none[anti-flood pour la file d'attente haute priorité : nombre de secondes entre deux messages utilisateur ou commandes envoyés au serveur IRC (0 = pas d'anti-flood)] -** type: entier -** valeurs: 0 .. 60 -** valeur par défaut: `+2+` - -* [[option_irc.server_default.anti_flood_prio_low]] *irc.server_default.anti_flood_prio_low* -** description: pass:none[anti-flood pour la file d'attente basse priorité : nombre de secondes entre deux messages envoyés au serveur IRC (messages comme les réponses automatiques aux CTCP) (0 = pas d'anti-flood)] -** type: entier -** valeurs: 0 .. 60 -** valeur par défaut: `+2+` - -* [[option_irc.server_default.autoconnect]] *irc.server_default.autoconnect* -** description: pass:none[connexion automatique au serveur quand WeeChat démarre] -** type: booléen -** valeurs: on, off -** valeur par défaut: `+off+` - -* [[option_irc.server_default.autojoin]] *irc.server_default.autojoin* -** description: pass:none[liste des canaux (séparés par des virgules) à rejoindre après la connexion au serveur (et après exécution de la commande + délai s'ils sont définis) ; les canaux nécessitant une clé doivent être en début de liste, et toutes les clés doivent être données après les canaux (séparées par un espace) (exemple : "#canal1,#canal2,#canal3 clé1,clé2" où #canal1 et #canal2 sont protégés par clé1 et clé2) (note : le contenu est évalué, voir /help eval ; les options de serveur sont évaluées avec ${irc_server.xxx} et ${server} est remplacé par le nom du serveur)] -** type: chaîne -** valeurs: toute chaîne -** valeur par défaut: `+""+` - -* [[option_irc.server_default.autojoin_dynamic]] *irc.server_default.autojoin_dynamic* -** description: pass:none[définir automatiquement l'option "autojoin" selon les canaux que vous rejoignez ou quittez manuellement avec les commandes /join et /part] -** type: booléen -** valeurs: on, off -** valeur par défaut: `+off+` - -* [[option_irc.server_default.autoreconnect]] *irc.server_default.autoreconnect* -** description: pass:none[reconnexion automatique au serveur après une déconnexion] -** type: booléen -** valeurs: on, off -** valeur par défaut: `+on+` - -* [[option_irc.server_default.autoreconnect_delay]] *irc.server_default.autoreconnect_delay* -** description: pass:none[délai (en secondes) avant de tenter une reconnexion au serveur] -** type: entier -** valeurs: 1 .. 65535 -** valeur par défaut: `+10+` - -* [[option_irc.server_default.autorejoin]] *irc.server_default.autorejoin* -** description: pass:none[rejoindre automatiquement les canaux après un "kick" ; vous pouvez définir une variable locale de tampon sur un canal pour remplacer cette valeur (nom de la variable : "autorejoin", valeur : "on" ou "off")] -** type: booléen -** valeurs: on, off -** valeur par défaut: `+off+` - -* [[option_irc.server_default.autorejoin_delay]] *irc.server_default.autorejoin_delay* -** description: pass:none[délai (en secondes) avant de rejoindre automatiquement (après un "kick")] -** type: entier -** valeurs: 0 .. 86400 -** valeur par défaut: `+30+` - -* [[option_irc.server_default.away_check]] *irc.server_default.away_check* -** description: pass:none[intervalle entre deux vérifications des absences (en minutes, 0 = ne jamais vérifier)] -** type: entier -** valeurs: 0 .. 10080 -** valeur par défaut: `+0+` - -* [[option_irc.server_default.away_check_max_nicks]] *irc.server_default.away_check_max_nicks* -** description: pass:none[ne pas vérifier les pseudos absents lorsqu'il y a un nombre important de pseudos (0 = pas de limite)] -** type: entier -** valeurs: 0 .. 1000000 -** valeur par défaut: `+25+` - -* [[option_irc.server_default.capabilities]] *irc.server_default.capabilities* -** description: pass:none[liste séparée par des virgules de capacités client ("client capabilities") à activer sur le serveur si elles sont disponibles (voir /help cap pour la liste des capacités supportées par WeeChat) ; "*" active toutes les capacités par défaut (supportées par le serveur et WeeChat) ; le caractère joker "*" est autorisé ; une capacité commençant par "!" est exclue (exemple : "*,!account-*,!extended-join")] -** type: chaîne -** valeurs: toute chaîne -** valeur par défaut: `+"*"+` - -* [[option_irc.server_default.charset_message]] *irc.server_default.charset_message* -** description: pass:none[partie du message IRC (reçu ou envoyé) qui est décodé/encode vers le jeu de caractères cible ; message = le message IRC entier (par défaut), channel = à partir du nom du canal seulement (si trouvé, sinon à partir du texte), text = à partir du texte seulement (vous devriez essayer cette valeur si vous avec des problèmes d'encodage avec le nom du canal)] -** type: entier -** valeurs: message, channel, text -** valeur par défaut: `+message+` - -* [[option_irc.server_default.command]] *irc.server_default.command* -** description: pass:none[commande(s) à exécuter après la connexion au serveur et avant le "join" automatique des canaux (plusieurs commandes peuvent être séparées par ";", utilisez "\;" pour un point-virgule, les variables spéciales $nick, $channel et $server sont remplacées par leurs valeurs) (note : les commandes sont évaluées, voir /help eval ; les options de serveur sont évaluées avec ${irc_server.xxx} et ${server} est remplacé par le nom du serveur)] -** type: chaîne -** valeurs: toute chaîne -** valeur par défaut: `+""+` - -* [[option_irc.server_default.command_delay]] *irc.server_default.command_delay* -** description: pass:none[délai (en secondes) après exécution de la commande et avant le "join" automatique des canaux (exemple : donner du temps pour l'authentification avant de rejoindre les canaux)] -** type: entier -** valeurs: 0 .. 3600 -** valeur par défaut: `+0+` - -* [[option_irc.server_default.connection_timeout]] *irc.server_default.connection_timeout* -** description: pass:none[délai d'attente (en secondes) entre la connexion TCP au serveur et la réception du message 001, si ce délai est atteint avant que le message 001 soit reçu, WeeChat se déconnectera du serveur] -** type: entier -** valeurs: 1 .. 3600 -** valeur par défaut: `+60+` - -* [[option_irc.server_default.default_chantypes]] *irc.server_default.default_chantypes* -** description: pass:none[préfixes de types de canaux à utiliser si le serveur ne les envoie pas dans le message 005 (par défaut "#&")] -** type: chaîne -** valeurs: toute chaîne -** valeur par défaut: `+"#&"+` - -* [[option_irc.server_default.ipv6]] *irc.server_default.ipv6* -** description: pass:none[utiliser le protocole IPv6 pour la communication avec le serveur (essayer IPv6 puis repli sur l'IPv4) ; si désactivé, seulement l'IPv4 est utilisé] -** type: booléen -** valeurs: on, off -** valeur par défaut: `+on+` - -* [[option_irc.server_default.local_hostname]] *irc.server_default.local_hostname* -** description: pass:none[nom local de machine/IP personnalisé pour le serveur (optionnel, si non renseigné, le nom de machine local est utilisé)] -** type: chaîne -** valeurs: toute chaîne -** valeur par défaut: `+""+` - -* [[option_irc.server_default.msg_kick]] *irc.server_default.msg_kick* -** description: pass:none[message par défaut pour l'éjection utilisé par les commandes "/kick" et "/kickban" (note : le contenu est évalué, voir /help eval ; les variables spéciales ${nick} (propre pseudo), ${target} (pseudo cible), ${channel} et ${server} sont remplacées par leur valeurs)] -** type: chaîne -** valeurs: toute chaîne -** valeur par défaut: `+""+` - -* [[option_irc.server_default.msg_part]] *irc.server_default.msg_part* -** description: pass:none[message par défaut pour le part (en quittant un canal) (note : le contenu est évalué, voir /help eval ; les variables spéciales ${nick}, ${channel} et ${server} sont remplacées par leur valeurs ; "%v" est remplacé par la version de WeeChat s'il n'y a pas de ${...} dans la chaîne)] -** type: chaîne -** valeurs: toute chaîne -** valeur par défaut: `+"WeeChat ${info:version}"+` - -* [[option_irc.server_default.msg_quit]] *irc.server_default.msg_quit* -** description: pass:none[message de fin par défaut (lors de la déconnexion du serveur) (note : le contenu est évalué, voir /help eval ; les variables spéciales ${nick}, ${channel} et ${server} sont remplacées par leurs valeurs ; "%v" est remplacé par la version de WeeChat s'il n'y a pas de ${...} dans la chaîne)] -** type: chaîne -** valeurs: toute chaîne -** valeur par défaut: `+"WeeChat ${info:version}"+` - -* [[option_irc.server_default.nicks]] *irc.server_default.nicks* -** description: pass:none[pseudos à utiliser sur le serveur (séparés par des virgules) (note : le contenu est évalué, voir /help eval ; les options de serveur sont évaluées avec ${irc_server.xxx} et ${server} est remplacé par le nom du serveur)] -** type: chaîne -** valeurs: toute chaîne -** valeur par défaut: `+""+` - -* [[option_irc.server_default.nicks_alternate]] *irc.server_default.nicks_alternate* -** description: pass:none[obtenir un pseudo alternatif lorsque tous les pseudos déclarés sont déjà utilisés sur le serveur : ajouter des "_" jusqu'à ce que le pseudo ait une longueur de 9, puis remplacer le dernier caractère (ou les deux derniers) par un nombre de 1 à 99, jusqu'à trouver un pseudo non utilisé sur le serveur] -** type: booléen -** valeurs: on, off -** valeur par défaut: `+on+` - -* [[option_irc.server_default.notify]] *irc.server_default.notify* -** description: pass:none[liste de notifications pour le serveur (vous ne devriez pas changer cette option mais utiliser la commande /notify)] -** type: chaîne -** valeurs: toute chaîne -** valeur par défaut: `+""+` - -* [[option_irc.server_default.password]] *irc.server_default.password* -** description: pass:none[mot de passe pour le serveur (note : le contenu est évalué, voir /help eval ; les options de serveur sont évaluées avec ${irc_server.xxx} et ${server} est remplacé par le nom du serveur)] -** type: chaîne -** valeurs: toute chaîne -** valeur par défaut: `+""+` - -* [[option_irc.server_default.proxy]] *irc.server_default.proxy* -** description: pass:none[nom du proxy utilisé pour ce serveur (optionnel, le proxy doit être défini avec la commande /proxy)] -** type: chaîne -** valeurs: toute chaîne -** valeur par défaut: `+""+` - -* [[option_irc.server_default.realname]] *irc.server_default.realname* -** description: pass:none[nom réel pour le serveur (note : le contenu est évalué, voir /help eval ; les options de serveur sont évaluées avec ${irc_server.xxx} et ${server} est remplacé par le nom du serveur)] -** type: chaîne -** valeurs: toute chaîne -** valeur par défaut: `+""+` - -* [[option_irc.server_default.sasl_fail]] *irc.server_default.sasl_fail* -** description: pass:none[action à effectuer si l'authentification SASL échoue : "continue" pour ignorer le problème d'authentification, "reconnect" pour planifier une reconnexion au serveur, "disconnect" pour se déconnecter du serveur (voir aussi l'option irc.network.sasl_fail_unavailable)] -** type: entier -** valeurs: continue, reconnect, disconnect -** valeur par défaut: `+reconnect+` - -* [[option_irc.server_default.sasl_key]] *irc.server_default.sasl_key* -** description: pass:none[fichier avec la clé privée ECC pour le mécanisme "ecdsa-nist256p-challenge" (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_irc.server_default.sasl_mechanism]] *irc.server_default.sasl_mechanism* -** description: pass:none[mécanisme pour l'authentification SASL : "plain" pour un mot de passe en clair, "scram-sha-1" pour une authentification SCRAM avec algorithme de hachage SHA-1, "scram-sha-256" pour une authentification SCRAM avec algorithme de hachage SHA-256, "scram-sha-512" pour une authentification SCRAM avec algorithme de hachage SHA-512, "ecdsa-nist256p-challenge" pour une authentification par challenge avec clé, "external" pour une authentification en utilisant un certificat SSL côté client] -** type: entier -** valeurs: plain, scram-sha-1, scram-sha-256, scram-sha-512, ecdsa-nist256p-challenge, external -** valeur par défaut: `+plain+` - -* [[option_irc.server_default.sasl_password]] *irc.server_default.sasl_password* -** description: pass:none[mot de passe pour l'authentification SASL ; cette option n'est pas utilisée pour les mécanismes "ecdsa-nist256p-challenge" et "external" (note : le contenu est évalué, voir /help eval ; les options de serveur sont évaluées avec ${irc_server.xxx} et ${server} est remplacé par le nom du serveur)] -** type: chaîne -** valeurs: toute chaîne -** valeur par défaut: `+""+` - -* [[option_irc.server_default.sasl_timeout]] *irc.server_default.sasl_timeout* -** description: pass:none[délai d'attente maximum (en secondes) avant d'abandonner l'authentification SASL] -** type: entier -** valeurs: 1 .. 3600 -** valeur par défaut: `+15+` - -* [[option_irc.server_default.sasl_username]] *irc.server_default.sasl_username* -** description: pass:none[nom d'utilisateur pour l'authentification SASL ; cette option n'est pas utilisée pour le mécanisme "external" (note : le contenu est évalué, voir /help eval ; les options de serveur sont évaluées avec ${irc_server.xxx} et ${server} est remplacé par le nom du serveur)] -** type: chaîne -** valeurs: toute chaîne -** valeur par défaut: `+""+` - -* [[option_irc.server_default.split_msg_max_length]] *irc.server_default.split_msg_max_length* -** description: pass:none[découper les messages IRC sortants pour tenir dans ce nombre de caractères ; la valeur par défaut est 512, c'est une valeur sûre et recommandée ; la valeur 0 désactive le découpage (non recommandé, sauf si vous êtes sûr de ce que vous faites) ; les valeurs autorisées sont 0 ou tout entier compris entre 128 et 4096 ; cette option devrait être changée seulement sur les serveurs IRC non standards, par exemple sur les passerelles comme bitlbee] -** type: entier -** valeurs: 0 .. 4096 -** valeur par défaut: `+512+` - -* [[option_irc.server_default.ssl]] *irc.server_default.ssl* -** description: pass:none[utiliser SSL pour la communication avec le serveur] -** type: booléen -** valeurs: on, off -** valeur par défaut: `+off+` - -* [[option_irc.server_default.ssl_cert]] *irc.server_default.ssl_cert* -** description: pass:none[fichier de certificat SSL utilisé pour identifier automatiquement votre pseudo (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_irc.server_default.ssl_dhkey_size]] *irc.server_default.ssl_dhkey_size* -** description: pass:none[taille de clé utilisée pour l'échange de clé Diffie-Hellman] -** type: entier -** valeurs: 0 .. 2147483647 -** valeur par défaut: `+2048+` - -* [[option_irc.server_default.ssl_fingerprint]] *irc.server_default.ssl_fingerprint* -** description: pass:none[empreinte du certificat qui est de confiance et accepté pour le serveur ; seuls les chiffres hexadécimaux sont autorisés (0-9, a-f) : 128 caractères pour SHA-512, 64 caractères pour SHA-256, 40 caractères pour SHA-1 (non sûr, non recommandé) ; plusieurs empreintes peuvent être séparées par des virgules ; si cette option est définie, les autres vérifications sur les certificats ne sont PAS effectuées (option "ssl_verify") (note : le contenu est évalué, voir /help eval ; les options de serveur sont évaluées avec ${irc_server.xxx} et ${server} est remplacé par le nom du serveur)] -** type: chaîne -** valeurs: toute chaîne -** valeur par défaut: `+""+` - -* [[option_irc.server_default.ssl_password]] *irc.server_default.ssl_password* -** description: pass:none[mot de passe pour la clé privée du certificat SSL ; utilisé seulement avec gnutls >= 3.1.0 (note : le contenu est évalué, voir /help eval ; les options de serveur sont évaluées avec ${irc_server.xxx} et ${server} est remplacé par le nom du serveur)] -** type: chaîne -** valeurs: toute chaîne -** valeur par défaut: `+""+` - -* [[option_irc.server_default.ssl_priorities]] *irc.server_default.ssl_priorities* -** description: pass:none[chaîne avec les priorités pour gnutls (pour la syntaxe, voir la documentation de la fonction gnutls_priority_init du manuel gnutls, les chaînes courantes sont : "PERFORMANCE", "NORMAL", "SECURE128", "SECURE256", "EXPORT", "NONE")] -** type: chaîne -** valeurs: toute chaîne -** valeur par défaut: `+"NORMAL:-VERS-SSL3.0"+` - -* [[option_irc.server_default.ssl_verify]] *irc.server_default.ssl_verify* -** description: pass:none[vérifier que la connexion SSL est entièrement de confiance] -** type: booléen -** valeurs: on, off -** valeur par défaut: `+on+` - -* [[option_irc.server_default.usermode]] *irc.server_default.usermode* -** description: pass:none[mode(s) utilisateur à définir après la connexion au serveur et avant d'exécuter la commande et de rejoindre automatiquement les canaux ; exemples : "+R" (pour définir le mode "R"), "+R-i" (pour définir le mode "R" et supprimer "i") ; voir /help mode pour la syntaxe complète du mode (note : le contenu est évalué, voir /help eval ; les options de serveur sont évaluées avec ${irc_server.xxx} et ${server} est remplacé par le nom du serveur)] -** type: chaîne -** valeurs: toute chaîne -** valeur par défaut: `+""+` - -* [[option_irc.server_default.username]] *irc.server_default.username* -** description: pass:none[nom d'utilisateur pour le serveur (note : le contenu est évalué, voir /help eval ; les options de serveur sont évaluées avec ${irc_server.xxx} et ${server} est remplacé par le nom du serveur)] -** type: chaîne -** valeurs: toute chaîne -** valeur par défaut: `+""+` -// end::irc_options[] - -// tag::relay_options[] -* [[option_relay.color.client]] *relay.color.client* -** description: pass:none[couleur du texte pour la description du client] -** 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_relay.color.status_active]] *relay.color.status_active* -** description: pass:none[couleur du texte pour le statut "connecté"] -** 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_relay.color.status_auth_failed]] *relay.color.status_auth_failed* -** description: pass:none[couleur du texte pour le statut "échec auth"] -** 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_relay.color.status_connecting]] *relay.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: `+white+` - -* [[option_relay.color.status_disconnected]] *relay.color.status_disconnected* -** description: pass:none[couleur du texte pour le statut "déconnecté"] -** 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_relay.color.status_waiting_auth]] *relay.color.status_waiting_auth* -** description: pass:none[couleur du texte pour le statut "attente auth"] -** 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_relay.color.text]] *relay.color.text* -** description: pass:none[couleur du texte dans le tampon relay] -** 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_relay.color.text_bg]] *relay.color.text_bg* -** description: pass:none[couleur du fond dans le tampon relay] -** 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_relay.color.text_selected]] *relay.color.text_selected* -** description: pass:none[couleur du texte pour la ligne sélectionnée dans le tampon relay] -** 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_relay.irc.backlog_max_minutes]] *relay.irc.backlog_max_minutes* -** description: pass:none[nombre maximum de minutes dans l'historique par canal IRC (0 = sans limite, exemples : 1440 = une journée, 10080 = une semaine, 43200 = un mois, 525600 = une année)] -** type: entier -** valeurs: 0 .. 2147483647 -** valeur par défaut: `+0+` - -* [[option_relay.irc.backlog_max_number]] *relay.irc.backlog_max_number* -** description: pass:none[nombre maximum de lignes dans l'historique par canal IRC (0 = sans limite)] -** type: entier -** valeurs: 0 .. 2147483647 -** valeur par défaut: `+1024+` - -* [[option_relay.irc.backlog_since_last_disconnect]] *relay.irc.backlog_since_last_disconnect* -** description: pass:none[afficher l'historique en démarrant depuis la dernière déconnexion du client] -** type: booléen -** valeurs: on, off -** valeur par défaut: `+on+` - -* [[option_relay.irc.backlog_since_last_message]] *relay.irc.backlog_since_last_message* -** description: pass:none[afficher l'historique en démarrant depuis votre dernier message envoyé] -** type: booléen -** valeurs: on, off -** valeur par défaut: `+off+` - -* [[option_relay.irc.backlog_tags]] *relay.irc.backlog_tags* -** description: pass:none[liste d'étiquettes de messages (séparées par des virgules) qui sont affichés dans l'historique par canal IRC (étiquettes supportées : "irc_join", "irc_part", "irc_quit", "irc_nick", "irc_privmsg"), "*" = toutes les étiquettes supportées] -** type: chaîne -** valeurs: toute chaîne -** valeur par défaut: `+"irc_privmsg"+` - -* [[option_relay.irc.backlog_time_format]] *relay.irc.backlog_time_format* -** description: pass:none[format pour l'heure dans les messages d'historique (voir man strftime pour le format) (non utilisé si la capacité de serveur "server-time" a été activée par le client, car l'heure est envoyée sous forme d'étiquette irc) ; chaîne vide = désactiver l'heure dans les messages d'historique] -** type: chaîne -** valeurs: toute chaîne -** valeur par défaut: `+"[%H:%M] "+` - -* [[option_relay.look.auto_open_buffer]] *relay.look.auto_open_buffer* -** description: pass:none[ouvrir automatiquement le tampon des clients pour le relai lorsqu'un nouveau client est ajouté à la liste] -** type: booléen -** valeurs: on, off -** valeur par défaut: `+on+` - -* [[option_relay.look.raw_messages]] *relay.look.raw_messages* -** description: pass:none[nombre de messages bruts à sauvegarder en mémoire lorsque le tampon des données brutes est fermé (ces messages seront affichés lors de l'ouverture du tampon des données brutes)] -** type: entier -** valeurs: 0 .. 65535 -** valeur par défaut: `+256+` - -* [[option_relay.network.allow_empty_password]] *relay.network.allow_empty_password* -** description: pass:none[autoriser un mot de passe vide dans relay (devrait être activé seulement pour des tests ou sur le réseau local)] -** type: booléen -** valeurs: on, off -** valeur par défaut: `+off+` - -* [[option_relay.network.allowed_ips]] *relay.network.allowed_ips* -** description: pass:none[expression régulière POSIX étendue avec les IPs autorisées pour le relai (insensible à la casse, utilisez "(?-i)" en début de chaîne pour la rendre insensible à la casse), exemple : "^(123\.45\.67\.89|192\.160\..*)$"] -** type: chaîne -** valeurs: toute chaîne -** valeur par défaut: `+""+` - -* [[option_relay.network.auth_timeout]] *relay.network.auth_timeout* -** description: pass:none[temps maximum (en secondes) pour l'authentification du client ; la connexion est fermée si le client n'est toujours pas authentifié après ce délai et le statut est positionné à "échec d'authentification" (0 = attendre sans fin)] -** type: entier -** valeurs: 0 .. 2147483647 -** valeur par défaut: `+60+` - -* [[option_relay.network.bind_address]] *relay.network.bind_address* -** description: pass:none[adresse pour le bind (si vide, la connexion est possible sur toutes les interfaces, utiliser "127.0.0.1" pour autoriser les connections depuis la machine locale seulement)] -** type: chaîne -** valeurs: toute chaîne -** valeur par défaut: `+""+` - -* [[option_relay.network.clients_purge_delay]] *relay.network.clients_purge_delay* -** description: pass:none[délai pour purger les clients déconnectés (en minutes, 0 = purger les clients immédiatement, -1 = ne jamais purger)] -** type: entier -** valeurs: -1 .. 43200 -** valeur par défaut: `+0+` - -* [[option_relay.network.compression]] *relay.network.compression* -** description: pass:none[compression des messages envoyés aux clients avec le protocole "weechat" : 0 = désactiver la compression, 1 = faible compression / rapide ... 100 = meilleure compression / lent ; la valeur est un pourcentage converti de 1 à 9 pour zlib et de 1 à 19 pour zstd ; la valeur par défaut est recommandée, elle offre un bon compromis compression/vitesse] -** type: entier -** valeurs: 0 .. 100 -** valeur par défaut: `+20+` - -* [[option_relay.network.ipv6]] *relay.network.ipv6* -** description: pass:none[écouter en IPv6 sur le socket par défaut (en plus de l'IPv4 qui est par défaut) ; les protocoles IPv4 et IPv6 peuvent être forcés (individuellement ou ensemble) dans le nom du protocole (voir /help relay)] -** type: booléen -** valeurs: on, off -** valeur par défaut: `+on+` - -* [[option_relay.network.max_clients]] *relay.network.max_clients* -** description: pass:none[nombre maximum de clients qui se connectent sur un port (0 = pas de limite)] -** type: entier -** valeurs: 0 .. 2147483647 -** valeur par défaut: `+5+` - -* [[option_relay.network.nonce_size]] *relay.network.nonce_size* -** description: pass:none[taille du nonce (en octets), généré lorsqu'un client se connecte ; le client doit utiliser ce nonce, concaténé au nonce client et au mot de passe pour hacher le mot de passe dans la commande "init" du protocole weechat] -** type: entier -** valeurs: 8 .. 128 -** valeur par défaut: `+16+` - -* [[option_relay.network.password]] *relay.network.password* -** description: pass:none[mot de passe requis par les clients pour accéder à ce relai (une valeur vide indique que le mot de passe n'est pas nécessaire, voir l'option relay.network.allow_empty_password) (note : le contenu est évalué, voir /help eval)] -** type: chaîne -** valeurs: toute chaîne -** valeur par défaut: `+""+` - -* [[option_relay.network.password_hash_algo]] *relay.network.password_hash_algo* -** description: pass:none[liste des algorithmes de hachage pour l'authentification par mot de passe dans le protocole relay, parmi ces valeurs : "plain" (mot de passe en clair, non haché), "sha256", "sha512", "pbkdf2+sha256", "pbkdf2+sha512" ; "*" signifie tous les algorithmes, un nom commençant par "!" est une valeur négative pour empêcher un algorithme d'être utilisé, le caractère joker "*" est autorisé dans les noms (exemples : "*", "pbkdf2*", "*,!plain")] -** type: chaîne -** valeurs: toute chaîne -** valeur par défaut: `+"*"+` - -* [[option_relay.network.password_hash_iterations]] *relay.network.password_hash_iterations* -** description: pass:none[nombre d'itérations demandées au client dans le protocole weechat lorsqu'un mot de passe haché avec l'algorithme PBKDF2 est utilisé pour l'authentification ; plus d'itérations est mieux en terme de sécurité mais est plus lent à calculer ; ce nombre ne doit pas être trop élevé si votre micro-processeur est lent] -** type: entier -** valeurs: 1 .. 1000000 -** valeur par défaut: `+100000+` - -* [[option_relay.network.ssl_cert_key]] *relay.network.ssl_cert_key* -** description: pass:none[fichier avec le certificat et la clé privée SSL (pour servir les clients avec SSL) (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_config_dir}/ssl/relay.pem"+` - -* [[option_relay.network.ssl_priorities]] *relay.network.ssl_priorities* -** description: pass:none[chaîne avec les priorités pour gnutls (pour la syntaxe, voir la documentation de la fonction gnutls_priority_init du manuel gnutls, les chaînes courantes sont : "PERFORMANCE", "NORMAL", "SECURE128", "SECURE256", "EXPORT", "NONE")] -** type: chaîne -** valeurs: toute chaîne -** valeur par défaut: `+"NORMAL:-VERS-SSL3.0"+` - -* [[option_relay.network.totp_secret]] *relay.network.totp_secret* -** description: pass:none[secret pour la génération du mot de passe à usage unique basé sur le temps (TOTP), encodé en base32 (seulement des lettres et chiffres de 2 à 7) ; il est utilisé comme second facteur d'authentification dans le protocole weechat, en plus du mot de passe, qui ne doit pas être vide (une valeur vide signifie que le TOTP n'est pas requis) (note : le contenu est évalué, voir /help eval)] -** type: chaîne -** valeurs: toute chaîne -** valeur par défaut: `+""+` - -* [[option_relay.network.totp_window]] *relay.network.totp_window* -** description: pass:none[nombre de mots de passe à usage unique basés sur le temps à accepter avant et après le mot de passe courant ; 0 = accepter seulement le mot de passe courant, 1 = accepter un mot de passe avant, le courant et un après; 2 = accepter deux mots de passe avant, le courant et deux après, ... ; un nombre élevé réduit le niveau de sécurité (0 ou 1 sont les valeurs recommandées)] -** type: entier -** valeurs: 0 .. 256 -** valeur par défaut: `+0+` - -* [[option_relay.network.websocket_allowed_origins]] *relay.network.websocket_allowed_origins* -** description: pass:none[expression régulière POSIX étendue avec les origines autorisées dans les websockets (insensible à la casse, utilisez "(?-i)" en début de chaîne pour la rendre sensible à la casse), exemple : "^https?://(www\.)?example\.(com|org)"] -** type: chaîne -** valeurs: toute chaîne -** valeur par défaut: `+""+` - -* [[option_relay.weechat.commands]] *relay.weechat.commands* -** description: pass:none[liste des commandes autorisées/interdites lorsque qu'une entrée de données (texte ou commande) est reçue du client (séparées par des virgules) ; "*" signifie toutes les commandes, un nom commençant par "!" est une valeur négative pour empêcher une commande d'être exécutée, le caractère joker "*" est autorisé dans les noms ; cette option devrait être définie si le client relay n'est pas sûr (quelqu'un pourrait l'utiliser pour exécuter des commandes) ; par exemple "*,!exec,!quit" autorise toute commande sauf /exec et /quit] -** type: chaîne -** valeurs: toute chaîne -** 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é] -** type: booléen -** valeurs: on, off -** valeur par défaut: `+off+` - -* [[option_ruby.look.eval_keep_context]] *ruby.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::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")] -** 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_script.color.status_held]] *script.color.status_held* -** description: pass:none[couleur du statut "figé" ("H")] -** 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_script.color.status_installed]] *script.color.status_installed* -** description: pass:none[couleur du statut "installé" ("i")] -** 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_script.color.status_obsolete]] *script.color.status_obsolete* -** description: pass:none[couleur du statut "obsolète" ("N")] -** 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_script.color.status_popular]] *script.color.status_popular* -** description: pass:none[couleur du statut "populaire" ("*")] -** 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_script.color.status_running]] *script.color.status_running* -** description: pass:none[couleur du statut "chargé" ("r")] -** 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_script.color.status_unknown]] *script.color.status_unknown* -** description: pass:none[couleur du statut "inconnu" ("?")] -** 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_script.color.text]] *script.color.text* -** description: pass:none[couleur du texte dans le tampon script] -** 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_script.color.text_bg]] *script.color.text_bg* -** description: pass:none[couleur du fond dans le tampon script] -** 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_script.color.text_bg_selected]] *script.color.text_bg_selected* -** description: pass:none[couleur du fond pour la ligne sélectionnée dans le tampon script] -** 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_script.color.text_date]] *script.color.text_date* -** description: pass:none[couleur du texte pour les dates dans le tampon script] -** 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_script.color.text_date_selected]] *script.color.text_date_selected* -** description: pass:none[couleur du texte pour les dates de la ligne sélectionnée dans le tampon script] -** 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_script.color.text_delimiters]] *script.color.text_delimiters* -** description: pass:none[couleur du texte pour les délimiteurs dans le tampon script] -** 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_script.color.text_description]] *script.color.text_description* -** description: pass:none[couleur du texte pour la description dans le tampon script] -** 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_script.color.text_description_selected]] *script.color.text_description_selected* -** description: pass:none[couleur du texte pour la description de la ligne sélectionnée dans le tampon script] -** 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_script.color.text_extension]] *script.color.text_extension* -** description: pass:none[couleur du texte pour l'extension dans le tampon script] -** 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_script.color.text_extension_selected]] *script.color.text_extension_selected* -** description: pass:none[couleur du texte pour l'extension de la ligne sélectionnée dans le tampon script] -** 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_script.color.text_name]] *script.color.text_name* -** description: pass:none[couleur du texte pour le nom du script dans le tampon script] -** 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_script.color.text_name_selected]] *script.color.text_name_selected* -** description: pass:none[couleur du texte pour le nom du script de la ligne sélectionnée dans le tampon script] -** 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_script.color.text_selected]] *script.color.text_selected* -** description: pass:none[couleur du texte pour la ligne sélectionnée dans le tampon script] -** 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_script.color.text_tags]] *script.color.text_tags* -** description: pass:none[couleur du texte pour les étiquettes dans le tampon script] -** 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_script.color.text_tags_selected]] *script.color.text_tags_selected* -** description: pass:none[couleur du texte pour les étiquettes de la ligne sélectionnée dans le tampon script] -** 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_script.color.text_version]] *script.color.text_version* -** description: pass:none[couleur du texte pour la version dans le tampon script] -** 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_script.color.text_version_loaded]] *script.color.text_version_loaded* -** description: pass:none[couleur du texte pour la version chargée dans le tampon script] -** 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_script.color.text_version_loaded_selected]] *script.color.text_version_loaded_selected* -** description: pass:none[couleur du texte pour la version chargée de la ligne sélectionnée dans le tampon script] -** 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_script.color.text_version_selected]] *script.color.text_version_selected* -** description: pass:none[couleur du texte pour la version de la ligne sélectionnée dans le tampon script] -** 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_script.look.columns]] *script.look.columns* -** description: pass:none[format des colonnes affichées dans le tampon des scripts : les identifiants de colonne suivants sont remplacés par leurs valeurs : %a=auteur, %d=description, %D=date d'ajout, %e=extension, %l=langage, %L=licence, %n=nom avec extension, %N=nom, %r=dépendances, %s=statuts, %t=étiquettes, %u=date de mise à jour, %v=version, %V=version chargée, %w=min_weechat, %W=max_weechat] -** type: chaîne -** valeurs: toute chaîne -** valeur par défaut: `+"%s %n %V %v %u | %d | %t"+` - -* [[option_script.look.diff_color]] *script.look.diff_color* -** description: pass:none[colorie la sortie du diff] -** type: booléen -** valeurs: on, off -** valeur par défaut: `+on+` - -* [[option_script.look.diff_command]] *script.look.diff_command* -** description: pass:none[commande utilisée pour montrer les différences entre le script installé et la nouvelle version dans le dépôt ("auto" = détecter automatiquement la commande de diff (git ou diff), valeur vide = désactiver le diff, autre chaîne = nom de la commande, par exemple "diff")] -** type: chaîne -** valeurs: toute chaîne -** valeur par défaut: `+"auto"+` - -* [[option_script.look.display_source]] *script.look.display_source* -** description: pass:none[afficher le code source du script sur le tampon avec le détail sur le script (le script est téléchargé dans un fichier temporaire lorsque le détail du script est affiché)] -** type: booléen -** valeurs: on, off -** valeur par défaut: `+on+` - -* [[option_script.look.quiet_actions]] *script.look.quiet_actions* -** description: pass:none[actions silencieuses sur le tampon script : ne pas afficher de messages sur le tampon "core" quand les scripts sont installés/supprimés/chargés/déchargés (seules les erreurs sont affichées)] -** type: booléen -** valeurs: on, off -** valeur par défaut: `+on+` - -* [[option_script.look.sort]] *script.look.sort* -** description: pass:none[tri par défaut des scripts : liste d'identifiants séparés par des virgules : a=auteur, A=chargé auto, d=date d'ajout, e=extension, i=installé, l=langage, n=nom, o=obsolète, p=populaire, r=chargé, u=date de mise à jour ; le caractère "-" peut être utilisé avant l'identifiant pour inverser l'ordre ; exemple : "i,u" : scripts installés en premier, triés par date de mise à jour] -** type: chaîne -** valeurs: toute chaîne -** valeur par défaut: `+"i,p,n"+` - -* [[option_script.look.translate_description]] *script.look.translate_description* -** description: pass:none[traduire la description des scripts (si une traduction est disponible dans votre langue, sinon la version anglaise est utilisée)] -** type: booléen -** valeurs: on, off -** valeur par défaut: `+on+` - -* [[option_script.look.use_keys]] *script.look.use_keys* -** description: pass:none[utiliser les touches alt+X sur le tampon script pour effectuer les actions sur les scripts (alt+i = installer, alt+r = supprimer, ...) ; si désactivé, seule l'entrée est autorisée : i, r, ...] -** type: booléen -** valeurs: on, off -** valeur par défaut: `+on+` - -* [[option_script.scripts.autoload]] *script.scripts.autoload* -** description: pass:none[charger automatiquement les scripts installés (faire un lien dans le répertoire "autoload" vers le script dans le répertoire parent)] -** type: booléen -** valeurs: on, off -** valeur par défaut: `+on+` - -* [[option_script.scripts.cache_expire]] *script.scripts.cache_expire* -** description: pass:none[temps d'expiration du cache local, en minutes (-1 = n'expire jamais, 0 = expire toujours)] -** type: entier -** valeurs: -1 .. 525600 -** valeur par défaut: `+1440+` - -* [[option_script.scripts.download_enabled]] *script.scripts.download_enabled* -** description: pass:none[activer le téléchargement des fichiers depuis le dépôt des scripts lorsque la commande /script est utilisée (liste des scripts et les scripts eux-mêmes) ; la liste des scripts est téléchargée depuis l'URL spécifiée dans l'option script.scripts.url ; WeeChat téléchargera parfois à nouveau la liste des scripts quand vous utilisez la commande /script, même si vous n'installez pas un script] -** type: booléen -** valeurs: on, off -** valeur par défaut: `+off+` - -* [[option_script.scripts.download_timeout]] *script.scripts.download_timeout* -** description: pass:none[délai d'attente maximum (en secondes) pour le téléchargement des scripts et de la liste des scripts] -** type: entier -** valeurs: 1 .. 3600 -** valeur par défaut: `+30+` - -* [[option_script.scripts.hold]] *script.scripts.hold* -** description: pass:none[scripts à "figer" : liste de scripts séparés par des virgules qui ne seront jamais mis à jour et ne peuvent pas être supprimés, par exemple : "go.py,urlserver.py"] -** type: chaîne -** valeurs: toute chaîne -** valeur par défaut: `+""+` - -* [[option_script.scripts.path]] *script.scripts.path* -** description: pass:none[répertoire du cache local pour les scripts (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_cache_dir}/script"+` - -* [[option_script.scripts.url]] *script.scripts.url* -** description: pass:none[URL pour le fichier avec la liste des scripts] -** type: chaîne -** valeurs: toute chaîne -** 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+` - -* [[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_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: `+default+` - -* [[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_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_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: `+brown+` - -* [[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: `+yellow+` - -* [[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: `+white+` - -* [[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: `+white+` - -* [[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: `+default+` - -* [[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: `+white+` - -* [[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: `+darkgray+` - -* [[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_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: `+cyan+` - -* [[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: `+lightcyan+` - -* [[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: `+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)] -** 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)] -** 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+` - -* [[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: `+red+` - -* [[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: `+brown+` - -* [[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_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: `+default+` - -* [[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: `+white+` - -* [[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: `+default+` - -* [[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: `+white+` - -* [[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: `+default+` - -* [[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: `+brown+` - -* [[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: `+yellow+` - -* [[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: `+white+` - -* [[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: `+default+` - -* [[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: `+brown+` - -* [[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: `+yellow+` - -* [[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: `+white+` - -* [[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: `+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] -** 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_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: `+cyan+` - -* [[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: `+lightcyan+` - -* [[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: `+darkgray+` - -* [[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: `+default+` - -* [[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_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: `+default+` - -* [[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_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: `+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] -** 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] -** 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.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_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: `+white+` - -* [[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: `+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] -** 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_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_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: `+lightgreen+` - -* [[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: `+white+` - -* [[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: `+green+` - -* [[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: `+lightgreen+` - -* [[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: `+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] -** 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.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: `+cyan+` - -* [[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: `+brown+` - -* [[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: `+yellow+` - -* [[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: `+lightcyan+` - -* [[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: `+magenta+` - -* [[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: `+lightmagenta+` - -* [[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: `+"# ${description2}"+` - -* [[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: `+"/set ${name} ${quoted_value}"+` - -* [[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: `+"/unset ${name}"+` - -* [[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: `+""+` - -* [[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: `+"${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* -** 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: `+"*"+` - -* [[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: `+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] -** type: chaîne -** valeurs: toute chaîne -** valeur par défaut: `+"${count} >= 1"+` - -* [[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_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 .. 2 -** valeur par défaut: `+1+` - -* [[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: `+"*"+` - -* [[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 .. 100 -** 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.*)] -** 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_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: `+" "+` - -* [[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_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_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: `+off+` -// end::fset_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 [[;...]] addcompletion [[;...]] del [...] + rename 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,6 +3,2264 @@ // DO NOT EDIT BY HAND! // +// 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},"+` + +* [[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+` + +* [[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_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_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+` + +* [[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_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] +** tipo: intero +** valori: 1 .. 3 +** valore predefinito: `+1+` +// end::buflist_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[] + +// 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: `+lightred+` + +* [[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: `+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[] + +// 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)] +** tipo: stringa +** valori: qualsiasi stringa +** valore predefinito: `+"${weechat_runtime_dir}/weechat_fifo_${info:pid}"+` +// end::fifo_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+` + +* [[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_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: `+default+` + +* [[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_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_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: `+brown+` + +* [[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: `+yellow+` + +* [[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: `+white+` + +* [[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: `+white+` + +* [[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: `+default+` + +* [[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: `+white+` + +* [[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: `+darkgray+` + +* [[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_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: `+cyan+` + +* [[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: `+lightcyan+` + +* [[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: `+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)] +** 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)] +** 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+` + +* [[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: `+red+` + +* [[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: `+brown+` + +* [[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_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: `+default+` + +* [[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: `+white+` + +* [[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: `+default+` + +* [[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: `+white+` + +* [[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: `+default+` + +* [[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: `+brown+` + +* [[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: `+yellow+` + +* [[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: `+white+` + +* [[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: `+default+` + +* [[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: `+brown+` + +* [[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: `+yellow+` + +* [[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: `+white+` + +* [[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: `+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] +** 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_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: `+cyan+` + +* [[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: `+lightcyan+` + +* [[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: `+darkgray+` + +* [[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: `+default+` + +* [[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_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: `+default+` + +* [[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_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: `+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] +** 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] +** 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.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_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: `+white+` + +* [[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: `+cyan+` + +* [[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: `+lightcyan+` + +* [[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_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: `+lightgreen+` + +* [[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: `+white+` + +* [[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: `+green+` + +* [[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: `+lightgreen+` + +* [[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: `+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] +** 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.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: `+cyan+` + +* [[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: `+brown+` + +* [[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: `+yellow+` + +* [[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: `+lightcyan+` + +* [[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: `+magenta+` + +* [[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: `+lightmagenta+` + +* [[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: `+"# ${description2}"+` + +* [[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: `+"/set ${name} ${quoted_value}"+` + +* [[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: `+"/unset ${name}"+` + +* [[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: `+""+` + +* [[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: `+"${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* +** 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: `+"*"+` + +* [[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: `+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] +** tipo: stringa +** valori: qualsiasi stringa +** valore predefinito: `+"${count} >= 1"+` + +* [[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_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 .. 2 +** valore predefinito: `+1+` + +* [[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: `+"*"+` + +* [[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 .. 100 +** valore predefinito: `+10+` + +* [[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_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_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: `+" "+` + +* [[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_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_fset.look.use_mute]] *fset.look.use_mute* +** descrizione: pass:none[use /mute command to set options] +** tipo: bool +** valori: on, off +** valore predefinito: `+off+` +// end::fset_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::irc_options[] +* [[option_irc.color.input_nick]] *irc.color.input_nick* +** descrizione: pass:none[colore per il nick 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: `+lightcyan+` + +* [[option_irc.color.item_channel_modes]] *irc.color.item_channel_modes* +** descrizione: pass:none[colore per le modalità dei canali, vicino ai 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: `+default+` + +* [[option_irc.color.item_lag_counting]] *irc.color.item_lag_counting* +** descrizione: pass:none[colore per l'indicatore del lag, durante il conteggio (pong non ricevuto dal server, lag in aumento)] +** 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_irc.color.item_lag_finished]] *irc.color.item_lag_finished* +** descrizione: pass:none[colore per l'indicatore di ritardo, quando il pong viene ricevuto dal 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: `+yellow+` + +* [[option_irc.color.item_nick_modes]] *irc.color.item_nick_modes* +** descrizione: pass:none[color for nick modes in bar item "input_prompt"] +** 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_irc.color.item_tls_version_deprecated]] *irc.color.item_tls_version_deprecated* +** descrizione: pass:none[color for deprecated TLS versions in bar item "tls_version"] +** 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_irc.color.item_tls_version_insecure]] *irc.color.item_tls_version_insecure* +** descrizione: pass:none[color for insecure TLS versions in bar item "tls_version"] +** 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_irc.color.item_tls_version_ok]] *irc.color.item_tls_version_ok* +** descrizione: pass:none[color for higher supported TLS version in bar item "tls_version"] +** 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_irc.color.message_account]] *irc.color.message_account* +** descrizione: pass:none[color for text in account messages] +** 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_irc.color.message_chghost]] *irc.color.message_chghost* +** descrizione: pass:none[color for text in "chghost" messages] +** 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_irc.color.message_join]] *irc.color.message_join* +** descrizione: pass:none[colore per il testo nei messaggi 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: `+green+` + +* [[option_irc.color.message_kick]] *irc.color.message_kick* +** descrizione: pass:none[color for text in kick/kill messages] +** 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_irc.color.message_quit]] *irc.color.message_quit* +** descrizione: pass:none[colore per il testo nei messaggi di uscita/abbandono] +** 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_irc.color.message_setname]] *irc.color.message_setname* +** descrizione: pass:none[color for text in "setname" messages] +** 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_irc.color.mirc_remap]] *irc.color.mirc_remap* +** descrizione: pass:none[remap mirc colors in messages using a hashtable: keys are "fg,bg" as integers between -1 (not specified) and 15, values are WeeChat color names or numbers (format is: "1,-1:color1;2,7:color2"), example: "1,-1:darkgray;1,2:white,blue" to remap black to "darkgray" and black on blue to "white,blue"; default WeeChat colors for IRC codes: 0=white, 1=black, 2=blue, 3=green, 4=lightred, 5=red, 6=magenta, 7=brown, 8=yellow, 9=lightgreen, 10=cyan, 11=lightcyan, 12=lightblue, 13=lightmagenta, 14=darkgray, 15=gray] +** tipo: stringa +** valori: qualsiasi stringa +** valore predefinito: `+"1,-1:darkgray"+` + +* [[option_irc.color.nick_prefixes]] *irc.color.nick_prefixes* +** descrizione: pass:none[colore per i prefissi dei nick usando il carattere di modalità (o=operatore, h=halfop, v=voice, ..), il formato è: "o:colore1;h:colore2;v:colore3" (se una modalità non viene trovata, WeeChat proverà con le modalità successive ricevute dal server ("PREFIX"); può essere usata una modalità speciale "*" come colore prefefinito se non viene trovata nessuna modalità nella lista)] +** tipo: stringa +** valori: qualsiasi stringa +** valore predefinito: `+"y:lightred;q:lightred;a:lightcyan;o:lightgreen;h:lightmagenta;v:yellow;*:lightblue"+` + +* [[option_irc.color.notice]] *irc.color.notice* +** descrizione: pass:none[colore per il testo "Notifica" nelle notifiche] +** 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_irc.color.reason_kick]] *irc.color.reason_kick* +** descrizione: pass:none[color for reason in kick/kill messages] +** 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_irc.color.reason_quit]] *irc.color.reason_quit* +** descrizione: pass:none[colore per il motivo nei messaggi di uscita/abbandono] +** 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_irc.color.topic_current]] *irc.color.topic_current* +** descrizione: pass:none[color for current channel topic (when joining a channel or using /topic)] +** 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_irc.color.topic_new]] *irc.color.topic_new* +** descrizione: pass:none[colore del nuovo argomento del canale (quando viene cambiato)] +** 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_irc.color.topic_old]] *irc.color.topic_old* +** descrizione: pass:none[colore del precedente argomento del canale (quando viene cambiato)] +** 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_irc.look.buffer_open_before_autojoin]] *irc.look.buffer_open_before_autojoin* +** descrizione: pass:none[open channel buffer before the JOIN is received from server when it is auto joined (with server option "autojoin"); this is useful to open channels with always the same buffer numbers on startup] +** tipo: bool +** valori: on, off +** valore predefinito: `+on+` + +* [[option_irc.look.buffer_open_before_join]] *irc.look.buffer_open_before_join* +** descrizione: pass:none[open channel buffer before the JOIN is received from server when it is manually joined (with /join command)] +** tipo: bool +** valori: on, off +** valore predefinito: `+off+` + +* [[option_irc.look.buffer_switch_autojoin]] *irc.look.buffer_switch_autojoin* +** descrizione: pass:none[passa automaticamente al buffer del canale con l'ingresso automatico abilitato (con l'opzione del server "autojoin")] +** tipo: bool +** valori: on, off +** valore predefinito: `+on+` + +* [[option_irc.look.buffer_switch_join]] *irc.look.buffer_switch_join* +** descrizione: pass:none[passa automaticamente al buffer del canale quando si entra manualmente (con il comando /join)] +** tipo: bool +** valori: on, off +** valore predefinito: `+on+` + +* [[option_irc.look.color_nicks_in_names]] *irc.look.color_nicks_in_names* +** descrizione: pass:none[usa colore nick nell'output di /names (o l'elenco di nick mostrati all'ingresso di un canale)] +** tipo: bool +** valori: on, off +** valore predefinito: `+off+` + +* [[option_irc.look.color_nicks_in_nicklist]] *irc.look.color_nicks_in_nicklist* +** descrizione: pass:none[usa il colore del nick nella lista nick] +** tipo: bool +** valori: on, off +** valore predefinito: `+off+` + +* [[option_irc.look.color_nicks_in_server_messages]] *irc.look.color_nicks_in_server_messages* +** descrizione: pass:none[usa i colori dei nick nei messaggi dal server] +** tipo: bool +** valori: on, off +** valore predefinito: `+on+` + +* [[option_irc.look.color_pv_nick_like_channel]] *irc.look.color_pv_nick_like_channel* +** descrizione: pass:none[usa lo stesso colore del nick per canale e privato] +** tipo: bool +** valori: on, off +** valore predefinito: `+on+` + +* [[option_irc.look.ctcp_time_format]] *irc.look.ctcp_time_format* +** descrizione: pass:none[formato dell'ora in risposta al messaggio CTCP TIME (consultare man strftime per i dettagli su data/ora)] +** tipo: stringa +** valori: qualsiasi stringa +** valore predefinito: `+"%a, %d %b %Y %T %z"+` + +* [[option_irc.look.display_account_message]] *irc.look.display_account_message* +** descrizione: pass:none[display ACCOUNT messages received when capability account-notify is enabled] +** tipo: bool +** valori: on, off +** valore predefinito: `+on+` + +* [[option_irc.look.display_away]] *irc.look.display_away* +** descrizione: pass:none[mostra messaggio quando (non) si risulta assenti (off: non mostra/invia nulla, local: mostra localmente, channel: invia azioni ai canali)] +** tipo: intero +** valori: off, local, channel +** valore predefinito: `+local+` + +* [[option_irc.look.display_ctcp_blocked]] *irc.look.display_ctcp_blocked* +** descrizione: pass:none[visualizza messaggio CTCP anche se bloccato] +** tipo: bool +** valori: on, off +** valore predefinito: `+on+` + +* [[option_irc.look.display_ctcp_reply]] *irc.look.display_ctcp_reply* +** descrizione: pass:none[visualizza risposta CTCP inviata da WeeChat] +** tipo: bool +** valori: on, off +** valore predefinito: `+on+` + +* [[option_irc.look.display_ctcp_unknown]] *irc.look.display_ctcp_unknown* +** descrizione: pass:none[visualizza messaggio CTCP anche se è CTCP sconosciuto] +** tipo: bool +** valori: on, off +** valore predefinito: `+on+` + +* [[option_irc.look.display_extended_join]] *irc.look.display_extended_join* +** descrizione: pass:none[display extra information in the JOIN messages: account name and real name (capability extended-join must be enabled)] +** tipo: bool +** valori: on, off +** valore predefinito: `+on+` + +* [[option_irc.look.display_host_join]] *irc.look.display_host_join* +** descrizione: pass:none[visualizza l'host nei messaggi di entrata] +** tipo: bool +** valori: on, off +** valore predefinito: `+on+` + +* [[option_irc.look.display_host_join_local]] *irc.look.display_host_join_local* +** descrizione: pass:none[visualizza l'host nei messaggi di entrata dal client locale] +** tipo: bool +** valori: on, off +** valore predefinito: `+on+` + +* [[option_irc.look.display_host_quit]] *irc.look.display_host_quit* +** descrizione: pass:none[visualizza host nei messaggi di uscita/abbandono] +** tipo: bool +** valori: on, off +** valore predefinito: `+on+` + +* [[option_irc.look.display_join_message]] *irc.look.display_join_message* +** descrizione: pass:none[comma-separated list of messages to display after joining a channel: 324 = channel modes, 329 = channel creation date, 332 = topic, 333 = nick/date for topic, 353 = names on channel, 366 = names count] +** tipo: stringa +** valori: qualsiasi stringa +** valore predefinito: `+"329,332,333,366"+` + +* [[option_irc.look.display_old_topic]] *irc.look.display_old_topic* +** descrizione: pass:none[visualizza l'argomento del canale precedente quando viene cambiato] +** tipo: bool +** valori: on, off +** valore predefinito: `+on+` + +* [[option_irc.look.display_pv_away_once]] *irc.look.display_pv_away_once* +** descrizione: pass:none[mostra il messaggio di assenza remota una sola volta in privato] +** tipo: bool +** valori: on, off +** valore predefinito: `+on+` + +* [[option_irc.look.display_pv_back]] *irc.look.display_pv_back* +** descrizione: pass:none[mostra un messaggio in privato quando l'utente è tornato (dopo l'uscita dal server)] +** tipo: bool +** valori: on, off +** valore predefinito: `+on+` + +* [[option_irc.look.display_pv_nick_change]] *irc.look.display_pv_nick_change* +** descrizione: pass:none[display nick change in private] +** tipo: bool +** valori: on, off +** valore predefinito: `+on+` + +* [[option_irc.look.display_pv_warning_address]] *irc.look.display_pv_warning_address* +** descrizione: pass:none[display a warning in private buffer if the address of remote nick has changed; this option is disabled by default because servers like bitlbee are causing this warning to be displayed when it is not expected (the address of remote nick changes multiple times on login)] +** tipo: bool +** valori: on, off +** valore predefinito: `+off+` + +* [[option_irc.look.highlight_channel]] *irc.look.highlight_channel* +** descrizione: pass:none[comma separated list of words to highlight in channel buffers (case insensitive, use "(?-i)" at beginning of words to make them case sensitive; special variables $nick, $channel and $server are replaced by their values), these words are added to buffer property "highlight_words" only when buffer is created (it does not affect current buffers), an empty string disables default highlight on nick, examples: "$nick", "(?-i)$nick"] +** tipo: stringa +** valori: qualsiasi stringa +** valore predefinito: `+"$nick"+` + +* [[option_irc.look.highlight_pv]] *irc.look.highlight_pv* +** descrizione: pass:none[comma separated list of words to highlight in private buffers (case insensitive, use "(?-i)" at beginning of words to make them case sensitive; special variables $nick, $channel and $server are replaced by their values), these words are added to buffer property "highlight_words" only when buffer is created (it does not affect current buffers), an empty string disables default highlight on nick, examples: "$nick", "(?-i)$nick"] +** tipo: stringa +** valori: qualsiasi stringa +** valore predefinito: `+"$nick"+` + +* [[option_irc.look.highlight_server]] *irc.look.highlight_server* +** descrizione: pass:none[comma separated list of words to highlight in server buffers (case insensitive, use "(?-i)" at beginning of words to make them case sensitive; special variables $nick, $channel and $server are replaced by their values), these words are added to buffer property "highlight_words" only when buffer is created (it does not affect current buffers), an empty string disables default highlight on nick, examples: "$nick", "(?-i)$nick"] +** tipo: stringa +** valori: qualsiasi stringa +** valore predefinito: `+"$nick"+` + +* [[option_irc.look.highlight_tags_restrict]] *irc.look.highlight_tags_restrict* +** descrizione: pass:none[restrict highlights to these tags on irc buffers (to have highlight on user messages but not server messages); tags must be separated by a comma and "+" can be used to make a logical "and" between tags; wildcard "*" is allowed in tags; an empty value allows highlight on any tag] +** tipo: stringa +** valori: qualsiasi stringa +** valore predefinito: `+"irc_privmsg,irc_notice"+` + +* [[option_irc.look.item_channel_modes_hide_args]] *irc.look.item_channel_modes_hide_args* +** descrizione: pass:none[hide channel modes arguments if at least one of these modes is in channel modes ("*" to always hide all arguments, empty value to never hide arguments); example: "kf" to hide arguments if "k" or "f" are in channel modes] +** tipo: stringa +** valori: qualsiasi stringa +** valore predefinito: `+"k"+` + +* [[option_irc.look.item_display_server]] *irc.look.item_display_server* +** descrizione: pass:none[nome dell'elemento barra dove è mostrato il server IRC (per la barra di stato)] +** tipo: intero +** valori: buffer_plugin, buffer_name +** valore predefinito: `+buffer_plugin+` + +* [[option_irc.look.item_nick_modes]] *irc.look.item_nick_modes* +** descrizione: pass:none[display nick modes in bar item "input_prompt"] +** tipo: bool +** valori: on, off +** valore predefinito: `+on+` + +* [[option_irc.look.item_nick_prefix]] *irc.look.item_nick_prefix* +** descrizione: pass:none[display nick prefix in bar item "input_prompt"] +** tipo: bool +** valori: on, off +** valore predefinito: `+on+` + +* [[option_irc.look.join_auto_add_chantype]] *irc.look.join_auto_add_chantype* +** descrizione: pass:none[automatically add channel type in front of channel name on command /join if the channel name does not start with a valid channel type for the server; for example: "/join weechat" will in fact send: "/join #weechat"] +** tipo: bool +** valori: on, off +** valore predefinito: `+off+` + +* [[option_irc.look.msgbuffer_fallback]] *irc.look.msgbuffer_fallback* +** descrizione: pass:none[buffer di destinazione predefinito per le opzioni di msgbuffer quando la destinazione è privata ed il buffer privato non viene trovato] +** tipo: intero +** valori: current, server +** valore predefinito: `+current+` + +* [[option_irc.look.new_channel_position]] *irc.look.new_channel_position* +** descrizione: pass:none[forza la posizione del nuovo canale nell'elenco dei buffer (none = posizione predefinita (dovrebbe essere l'ultimo buffer), next = buffer corrente + 1, near_server = dopo l'ultimo canale/privato del server)] +** tipo: intero +** valori: none, next, near_server +** valore predefinito: `+none+` + +* [[option_irc.look.new_pv_position]] *irc.look.new_pv_position* +** descrizione: pass:none[forza la posizione del nuovo buffer privato nell'elenco dei buffer (none = posizione predefinita (dovrebbe essere l'ultimo buffer), next = buffer corrente + 1, near_server = dopo l'ultimo canale/privato del server)] +** tipo: intero +** valori: none, next, near_server +** valore predefinito: `+none+` + +* [[option_irc.look.nick_completion_smart]] *irc.look.nick_completion_smart* +** descrizione: pass:none[completamento intelligente per i nick (completa il primo con gli ultimi a parlare sul canale): speakers = tutti i nick (notifiche comprese), speakers_highlight = solo i nick con le notifiche] +** tipo: intero +** valori: off, speakers, speakers_highlights +** valore predefinito: `+speakers+` + +* [[option_irc.look.nick_mode]] *irc.look.nick_mode* +** descrizione: pass:none[display nick mode (op, voice, ...) before nick (none = never, prefix = in prefix only (default), action = in action messages only, both = prefix + action messages)] +** tipo: intero +** valori: none, prefix, action, both +** valore predefinito: `+prefix+` + +* [[option_irc.look.nick_mode_empty]] *irc.look.nick_mode_empty* +** descrizione: pass:none[display a space if nick mode is enabled but nick has no mode (not op, voice, ...)] +** tipo: bool +** valori: on, off +** valore predefinito: `+off+` + +* [[option_irc.look.nicks_hide_password]] *irc.look.nicks_hide_password* +** descrizione: pass:none[comma separated list of nicks for which passwords will be hidden when a message is sent, for example to hide password in message displayed by "/msg nickserv identify password", example: "nickserv,nickbot"] +** tipo: stringa +** valori: qualsiasi stringa +** valore predefinito: `+"nickserv"+` + +* [[option_irc.look.notice_as_pv]] *irc.look.notice_as_pv* +** descrizione: pass:none[visualizza notifiche come messaggi privati (se automatico, usa il buffer privato se viene trovato)] +** tipo: intero +** valori: auto, never, always +** valore predefinito: `+auto+` + +* [[option_irc.look.notice_welcome_redirect]] *irc.look.notice_welcome_redirect* +** descrizione: pass:none[automatically redirect channel welcome notices to the channel buffer; such notices have the nick as target but a channel name in beginning of notice message, for example the ENTRYMSG notices sent by Atheme IRC Services which look like: "[#channel\] Welcome to this channel..."] +** tipo: bool +** valori: on, off +** valore predefinito: `+on+` + +* [[option_irc.look.notice_welcome_tags]] *irc.look.notice_welcome_tags* +** descrizione: pass:none[comma separated list of tags used in a welcome notices redirected to a channel, for example: "notify_private"] +** tipo: stringa +** valori: qualsiasi stringa +** valore predefinito: `+""+` + +* [[option_irc.look.notify_tags_ison]] *irc.look.notify_tags_ison* +** descrizione: pass:none[comma separated list of tags used in messages displayed by notify when a nick joins or quits server (result of command ison or monitor), for example: "notify_message", "notify_private" or "notify_highlight"] +** tipo: stringa +** valori: qualsiasi stringa +** valore predefinito: `+"notify_message"+` + +* [[option_irc.look.notify_tags_whois]] *irc.look.notify_tags_whois* +** descrizione: pass:none[elenco separato da virgole di tag usati nei messaggi stampati dalle notifiche quando un nick cambia lo stato di assenza (risultato del comando whois), ad esempio: "notify_message", "notify_private" o "notify_highlight"] +** tipo: stringa +** valori: qualsiasi stringa +** valore predefinito: `+"notify_message"+` + +* [[option_irc.look.part_closes_buffer]] *irc.look.part_closes_buffer* +** descrizione: pass:none[chiude buffer quando viene digitato /part nel canale] +** tipo: bool +** valori: on, off +** valore predefinito: `+off+` + +* [[option_irc.look.pv_buffer]] *irc.look.pv_buffer* +** descrizione: pass:none[unisci i buffer privati] +** tipo: intero +** valori: independent, merge_by_server, merge_all +** valore predefinito: `+independent+` + +* [[option_irc.look.pv_tags]] *irc.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_irc.look.raw_messages]] *irc.look.raw_messages* +** descrizione: pass:none[numero di messaggi raw da salvare in memoria quando il buffer dei dati raw viene chiuso (i messaggi verranno visualizzati all'apertura del buffer dei dati raw)] +** tipo: intero +** valori: 0 .. 65535 +** valore predefinito: `+256+` + +* [[option_irc.look.server_buffer]] *irc.look.server_buffer* +** descrizione: pass:none[merge server buffers; this option has no effect if a layout is saved and is conflicting with this value (see /help layout)] +** tipo: intero +** valori: merge_with_core, merge_without_core, independent +** valore predefinito: `+merge_with_core+` + +* [[option_irc.look.smart_filter]] *irc.look.smart_filter* +** descrizione: pass:none[filter join/part/quit/nick messages for a nick if not speaking for some minutes on channel (you must create a filter on tag "irc_smart_filter", see /help filter)] +** tipo: bool +** valori: on, off +** valore predefinito: `+on+` + +* [[option_irc.look.smart_filter_account]] *irc.look.smart_filter_account* +** descrizione: pass:none[enable smart filter for "account" messages] +** tipo: bool +** valori: on, off +** valore predefinito: `+on+` + +* [[option_irc.look.smart_filter_chghost]] *irc.look.smart_filter_chghost* +** descrizione: pass:none[enable smart filter for "chghost" messages] +** tipo: bool +** valori: on, off +** valore predefinito: `+on+` + +* [[option_irc.look.smart_filter_delay]] *irc.look.smart_filter_delay* +** descrizione: pass:none[delay for filtering join/part/quit messages (in minutes): if the nick did not speak during the last N minutes, the join/part/quit is filtered] +** tipo: intero +** valori: 1 .. 10080 +** valore predefinito: `+5+` + +* [[option_irc.look.smart_filter_join]] *irc.look.smart_filter_join* +** descrizione: pass:none[abilita filtro smart per i messaggi "join" (entrata)] +** tipo: bool +** valori: on, off +** valore predefinito: `+on+` + +* [[option_irc.look.smart_filter_join_unmask]] *irc.look.smart_filter_join_unmask* +** descrizione: pass:none[delay for unmasking a join message that was filtered with tag "irc_smart_filter" (in minutes): if a nick has joined max N minutes ago and then says something on channel (message, notice or update on topic), the join is unmasked, as well as nick changes after this join (0 = disable: never unmask a join)] +** tipo: intero +** valori: 0 .. 10080 +** valore predefinito: `+30+` + +* [[option_irc.look.smart_filter_mode]] *irc.look.smart_filter_mode* +** descrizione: pass:none[enable smart filter for "mode" messages: "*" to filter all modes, "+" to filter all modes in server prefixes (for example "ovh"), "xyz" to filter only modes x/y/z, "-xyz" to filter all modes but not x/y/z; examples: "ovh": filter modes o/v/h, "-bkl": filter all modes but not b/k/l] +** tipo: stringa +** valori: qualsiasi stringa +** valore predefinito: `+"+"+` + +* [[option_irc.look.smart_filter_nick]] *irc.look.smart_filter_nick* +** descrizione: pass:none[abilita filtro smart per i messaggi "nick" (cambio nick)] +** tipo: bool +** valori: on, off +** valore predefinito: `+on+` + +* [[option_irc.look.smart_filter_quit]] *irc.look.smart_filter_quit* +** descrizione: pass:none[abilita filtro smart per i messaggi "part" (uscita) e "quit (disconnessione)] +** tipo: bool +** valori: on, off +** valore predefinito: `+on+` + +* [[option_irc.look.smart_filter_setname]] *irc.look.smart_filter_setname* +** descrizione: pass:none[enable smart filter for "setname" messages] +** tipo: bool +** valori: on, off +** valore predefinito: `+on+` + +* [[option_irc.look.temporary_servers]] *irc.look.temporary_servers* +** descrizione: pass:none[enable automatic addition of temporary servers with command /connect] +** tipo: bool +** valori: on, off +** valore predefinito: `+off+` + +* [[option_irc.look.topic_strip_colors]] *irc.look.topic_strip_colors* +** descrizione: pass:none[elimina colori nell'argomento (usato solo quando mostrato il titolo del buffer)] +** tipo: bool +** valori: on, off +** valore predefinito: `+off+` + +* [[option_irc.look.typing_status_nicks]] *irc.look.typing_status_nicks* +** descrizione: pass:none[display nicks typing on the channel in bar item "typing" (option typing.look.enabled_nicks must be enabled and capability "message-tags" must be enabled on the server)] +** tipo: bool +** valori: on, off +** valore predefinito: `+off+` + +* [[option_irc.look.typing_status_self]] *irc.look.typing_status_self* +** descrizione: pass:none[send self typing status to channels so that other users see when you are typing a message (option typing.look.enabled_self must be enabled and capability "message-tags" must be enabled on the server)] +** tipo: bool +** valori: on, off +** valore predefinito: `+off+` + +* [[option_irc.network.autoreconnect_delay_growing]] *irc.network.autoreconnect_delay_growing* +** descrizione: pass:none[growing factor for autoreconnect delay to server (1 = always same delay, 2 = delay*2 for each retry, etc.)] +** tipo: intero +** valori: 1 .. 100 +** valore predefinito: `+2+` + +* [[option_irc.network.autoreconnect_delay_max]] *irc.network.autoreconnect_delay_max* +** descrizione: pass:none[ritardo massimo per la riconnessione automatica al server (in secondi, 0 = nessun massimo)] +** tipo: intero +** valori: 0 .. 604800 +** valore predefinito: `+600+` + +* [[option_irc.network.ban_mask_default]] *irc.network.ban_mask_default* +** descrizione: pass:none[default ban mask for commands /ban, /unban and /kickban; variables $nick, $user, $ident and $host are replaced by their values (extracted from "nick!user@host"); $ident is the same as $user if $user does not start with "~", otherwise it is set to "*"; this default mask is used only if WeeChat knows the host for the nick] +** tipo: stringa +** valori: qualsiasi stringa +** valore predefinito: `+"*!$ident@$host"+` + +* [[option_irc.network.colors_receive]] *irc.network.colors_receive* +** descrizione: pass:none[se disabilitato, i codici colori vengono ignorati nei messaggi in entrata] +** tipo: bool +** valori: on, off +** valore predefinito: `+on+` + +* [[option_irc.network.colors_send]] *irc.network.colors_send* +** descrizione: pass:none[allow user to send colors with special codes (ctrl-c + a code and optional color: b=bold, cxx=color, cxx,yy=color+background, i=italic, o=disable color/attributes, r=reverse, u=underline)] +** tipo: bool +** valori: on, off +** valore predefinito: `+on+` + +* [[option_irc.network.lag_check]] *irc.network.lag_check* +** descrizione: pass:none[intervallo tra due controlli per il ritardo (in secondi, 0 = nessun controllo)] +** tipo: intero +** valori: 0 .. 604800 +** valore predefinito: `+60+` + +* [[option_irc.network.lag_max]] *irc.network.lag_max* +** descrizione: pass:none[maximum lag (in seconds): if this lag is reached, WeeChat will consider that the answer from server (pong) will never be received and will give up counting the lag (0 = never give up)] +** tipo: intero +** valori: 0 .. 604800 +** valore predefinito: `+1800+` + +* [[option_irc.network.lag_min_show]] *irc.network.lag_min_show* +** descrizione: pass:none[ritardo minimo da visualizzare (in millisecondi)] +** tipo: intero +** valori: 0 .. 86400000 +** valore predefinito: `+500+` + +* [[option_irc.network.lag_reconnect]] *irc.network.lag_reconnect* +** descrizione: pass:none[reconnect to server if lag is greater than or equal to this value (in seconds, 0 = never reconnect); this value must be less than or equal to irc.network.lag_max] +** tipo: intero +** valori: 0 .. 604800 +** valore predefinito: `+300+` + +* [[option_irc.network.lag_refresh_interval]] *irc.network.lag_refresh_interval* +** descrizione: pass:none[interval between two refreshes of lag item, when lag is increasing (in seconds)] +** tipo: intero +** valori: 1 .. 3600 +** valore predefinito: `+1+` + +* [[option_irc.network.notify_check_ison]] *irc.network.notify_check_ison* +** descrizione: pass:none[intervallo tra due verifiche per la notifica con il comando IRC "ison" (in minuti)] +** tipo: intero +** valori: 1 .. 10080 +** valore predefinito: `+1+` + +* [[option_irc.network.notify_check_whois]] *irc.network.notify_check_whois* +** descrizione: pass:none[intervallo tra due verifiche per la notifica con il comando IRC "whois" (in minuti)] +** tipo: intero +** valori: 1 .. 10080 +** valore predefinito: `+5+` + +* [[option_irc.network.sasl_fail_unavailable]] *irc.network.sasl_fail_unavailable* +** descrizione: pass:none[cause SASL authentication failure when SASL is requested but unavailable on the server; when this option is enabled, it has effect only if option "sasl_fail" is set to "reconnect" or "disconnect" in the server] +** tipo: bool +** valori: on, off +** valore predefinito: `+on+` + +* [[option_irc.network.send_unknown_commands]] *irc.network.send_unknown_commands* +** descrizione: pass:none[invia comandi sconosciuti al server] +** tipo: bool +** valori: on, off +** valore predefinito: `+off+` + +* [[option_irc.network.whois_double_nick]] *irc.network.whois_double_nick* +** descrizione: pass:none[double the nick in /whois command (if only one nick is given), to get idle time in answer; for example: "/whois nick" will send "whois nick nick"] +** tipo: bool +** valori: on, off +** valore predefinito: `+off+` + +* [[option_irc.server_default.addresses]] *irc.server_default.addresses* +** descrizione: pass:none[list of hostname/port or IP/port for server (separated by comma) (note: content is evaluated, see /help eval; server options are evaluated with ${irc_server.xxx} and ${server} is replaced by the server name)] +** tipo: stringa +** valori: qualsiasi stringa +** valore predefinito: `+""+` + +* [[option_irc.server_default.anti_flood_prio_high]] *irc.server_default.anti_flood_prio_high* +** descrizione: pass:none[anti-flood per coda ad alta priorità: numero di secondi tra due messaggi utente o comandi inviati al server IRC (0 = nessun anti-flood)] +** tipo: intero +** valori: 0 .. 60 +** valore predefinito: `+2+` + +* [[option_irc.server_default.anti_flood_prio_low]] *irc.server_default.anti_flood_prio_low* +** descrizione: pass:none[anti-flood per coda a bassa priorità: numero di secondi tra due messaggi inviati al server IRC (messaggi come risposte CTCP automatiche) (0 = nessun anti-flood)] +** tipo: intero +** valori: 0 .. 60 +** valore predefinito: `+2+` + +* [[option_irc.server_default.autoconnect]] *irc.server_default.autoconnect* +** descrizione: pass:none[connette automaticamente ai server all'avvio di WeeChat] +** tipo: bool +** valori: on, off +** valore predefinito: `+off+` + +* [[option_irc.server_default.autojoin]] *irc.server_default.autojoin* +** descrizione: pass:none[comma separated list of channels to join after connection to server (and after executing command + delay if they are set); the channels that require a key must be at beginning of the list, and all the keys must be given after the channels (separated by a space) (example: "#channel1,#channel2,#channel3 key1,key2" where #channel1 and #channel2 are protected by key1 and key2) (note: content is evaluated, see /help eval; server options are evaluated with ${irc_server.xxx} and ${server} is replaced by the server name)] +** tipo: stringa +** valori: qualsiasi stringa +** valore predefinito: `+""+` + +* [[option_irc.server_default.autojoin_dynamic]] *irc.server_default.autojoin_dynamic* +** descrizione: pass:none[set automatically the "autojoin" option according to the channels you manually join and part with commands /join and /part] +** tipo: bool +** valori: on, off +** valore predefinito: `+off+` + +* [[option_irc.server_default.autoreconnect]] *irc.server_default.autoreconnect* +** descrizione: pass:none[riconnette automaticamente al server alla disconnessione] +** tipo: bool +** valori: on, off +** valore predefinito: `+on+` + +* [[option_irc.server_default.autoreconnect_delay]] *irc.server_default.autoreconnect_delay* +** descrizione: pass:none[ritardo (in secondi) prima di riprovare a riconnettersi al server] +** tipo: intero +** valori: 1 .. 65535 +** valore predefinito: `+10+` + +* [[option_irc.server_default.autorejoin]] *irc.server_default.autorejoin* +** descrizione: pass:none[automatically rejoin channels after kick; you can define a buffer local variable on a channel to override this value (name of variable: "autorejoin", value: "on" or "off")] +** tipo: bool +** valori: on, off +** valore predefinito: `+off+` + +* [[option_irc.server_default.autorejoin_delay]] *irc.server_default.autorejoin_delay* +** descrizione: pass:none[ritardo (in secondi) prima di rientrare automaticamente (dopo il kick)] +** tipo: intero +** valori: 0 .. 86400 +** valore predefinito: `+30+` + +* [[option_irc.server_default.away_check]] *irc.server_default.away_check* +** descrizione: pass:none[intervallo tra le due verifiche per l'assenza (in minuti, 0 = nessun check)] +** tipo: intero +** valori: 0 .. 10080 +** valore predefinito: `+0+` + +* [[option_irc.server_default.away_check_max_nicks]] *irc.server_default.away_check_max_nicks* +** descrizione: pass:none[non verificare l'assenza su canali con un elevato numero di nick (0 = illimitato)] +** tipo: intero +** valori: 0 .. 1000000 +** valore predefinito: `+25+` + +* [[option_irc.server_default.capabilities]] *irc.server_default.capabilities* +** descrizione: pass:none[comma-separated list of client capabilities to enable for server if they are available (see /help cap for a list of capabilities supported by WeeChat); "*" enables all capabilities by default (supported by both server and WeeChat); wildcard "*" is allowed; a capability beginning with "!" is excluded (example: "*,!account-*,!extended-join")] +** tipo: stringa +** valori: qualsiasi stringa +** valore predefinito: `+"*"+` + +* [[option_irc.server_default.charset_message]] *irc.server_default.charset_message* +** descrizione: pass:none[part of the IRC message (received or sent) which is decoded/encoded to the target charset; message = the whole IRC message (default), channel = starting from the channel name only (if found, with fallback on text), text = starting from the text only (you should try this value if you have issues with the channel name encoding)] +** tipo: intero +** valori: message, channel, text +** valore predefinito: `+message+` + +* [[option_irc.server_default.command]] *irc.server_default.command* +** descrizione: pass:none[command(s) to run after connection to server and before auto-join of channels (many commands can be separated by ";", use "\;" for a semicolon, special variables $nick, $channel and $server are replaced by their values) (note: commands are evaluated, see /help eval; server options are evaluated with ${irc_server.xxx} and ${server} is replaced by the server name)] +** tipo: stringa +** valori: qualsiasi stringa +** valore predefinito: `+""+` + +* [[option_irc.server_default.command_delay]] *irc.server_default.command_delay* +** descrizione: pass:none[delay (in seconds) after execution of command and before auto-join of channels (example: give some time for authentication before joining channels)] +** tipo: intero +** valori: 0 .. 3600 +** valore predefinito: `+0+` + +* [[option_irc.server_default.connection_timeout]] *irc.server_default.connection_timeout* +** descrizione: pass:none[timeout (in secondi) tra la connessione TCP al server ed il messaggio 001 ricevuto, se questo timeout viene raggiunto prima della ricezione del messaggio 001, WeeChat effettuerà la disconnessione] +** tipo: intero +** valori: 1 .. 3600 +** valore predefinito: `+60+` + +* [[option_irc.server_default.default_chantypes]] *irc.server_default.default_chantypes* +** descrizione: pass:none[channel type prefixes to use if the server does not send them in message 005 (default is "#&")] +** tipo: stringa +** valori: qualsiasi stringa +** valore predefinito: `+"#&"+` + +* [[option_irc.server_default.ipv6]] *irc.server_default.ipv6* +** descrizione: pass:none[usa il protocollo IPv6 per le comunicazioni con il server (prova con IPv6, se non disponibile usa IPv4); se disabilitato, viene usato solo IPv4] +** tipo: bool +** valori: on, off +** valore predefinito: `+on+` + +* [[option_irc.server_default.local_hostname]] *irc.server_default.local_hostname* +** descrizione: pass:none[nome host/IP locale definito per il server (opzionale, se vuoto viene usato il nome host locale)] +** tipo: stringa +** valori: qualsiasi stringa +** valore predefinito: `+""+` + +* [[option_irc.server_default.msg_kick]] *irc.server_default.msg_kick* +** descrizione: pass:none[default kick message used by commands "/kick" and "/kickban" (note: content is evaluated, see /help eval; special variables ${nick} (self nick), ${target} (target nick), ${channel} and ${server} are replaced by their values)] +** tipo: stringa +** valori: qualsiasi stringa +** valore predefinito: `+""+` + +* [[option_irc.server_default.msg_part]] *irc.server_default.msg_part* +** descrizione: pass:none[default part message (leaving channel) (note: content is evaluated, see /help eval; special variables ${nick}, ${channel} and ${server} are replaced by their values; "%v" is replaced by WeeChat version if there is no ${...} in string)] +** tipo: stringa +** valori: qualsiasi stringa +** valore predefinito: `+"WeeChat ${info:version}"+` + +* [[option_irc.server_default.msg_quit]] *irc.server_default.msg_quit* +** descrizione: pass:none[default quit message (disconnecting from server) (note: content is evaluated, see /help eval; special variables ${nick}, ${channel} and ${server} are replaced by their values; "%v" is replaced by WeeChat version if there is no ${...} in string)] +** tipo: stringa +** valori: qualsiasi stringa +** valore predefinito: `+"WeeChat ${info:version}"+` + +* [[option_irc.server_default.nicks]] *irc.server_default.nicks* +** descrizione: pass:none[nicknames to use on server (separated by comma) (note: content is evaluated, see /help eval; server options are evaluated with ${irc_server.xxx} and ${server} is replaced by the server name)] +** tipo: stringa +** valori: qualsiasi stringa +** valore predefinito: `+""+` + +* [[option_irc.server_default.nicks_alternate]] *irc.server_default.nicks_alternate* +** descrizione: pass:none[get an alternate nick when all the declared nicks are already used on server: add some "_" until the nick has a length of 9, and then replace last char (or the two last chars) by a number from 1 to 99, until we find a nick not used on server] +** tipo: bool +** valori: on, off +** valore predefinito: `+on+` + +* [[option_irc.server_default.notify]] *irc.server_default.notify* +** descrizione: pass:none[elenco notifiche per il server (si consiglia di non cambiare questa opzione ma di usare il comando /notify)] +** tipo: stringa +** valori: qualsiasi stringa +** valore predefinito: `+""+` + +* [[option_irc.server_default.password]] *irc.server_default.password* +** descrizione: pass:none[password for server (note: content is evaluated, see /help eval; server options are evaluated with ${irc_server.xxx} and ${server} is replaced by the server name)] +** tipo: stringa +** valori: qualsiasi stringa +** valore predefinito: `+""+` + +* [[option_irc.server_default.proxy]] *irc.server_default.proxy* +** descrizione: pass:none[nome del proxy usato per questo server (opzionale, il proxy deve essere definito con il comando /proxy)] +** tipo: stringa +** valori: qualsiasi stringa +** valore predefinito: `+""+` + +* [[option_irc.server_default.realname]] *irc.server_default.realname* +** descrizione: pass:none[real name to use on server (note: content is evaluated, see /help eval; server options are evaluated with ${irc_server.xxx} and ${server} is replaced by the server name)] +** tipo: stringa +** valori: qualsiasi stringa +** valore predefinito: `+""+` + +* [[option_irc.server_default.sasl_fail]] *irc.server_default.sasl_fail* +** descrizione: pass:none[action to perform if SASL authentication fails: "continue" to ignore the authentication problem, "reconnect" to schedule a reconnection to the server, "disconnect" to disconnect from server (see also option irc.network.sasl_fail_unavailable)] +** tipo: intero +** valori: continue, reconnect, disconnect +** valore predefinito: `+reconnect+` + +* [[option_irc.server_default.sasl_key]] *irc.server_default.sasl_key* +** descrizione: pass:none[file with ECC private key for mechanism "ecdsa-nist256p-challenge" (path is evaluated, see function string_eval_path_home in plugin API reference)] +** tipo: stringa +** valori: qualsiasi stringa +** valore predefinito: `+""+` + +* [[option_irc.server_default.sasl_mechanism]] *irc.server_default.sasl_mechanism* +** descrizione: pass:none[mechanism for SASL authentication: "plain" for plain text password, "scram-sha-1" for SCRAM authentication with SHA-1 digest algorithm, "scram-sha-256" for SCRAM authentication with SHA-256 digest algorithm, "scram-sha-512" for SCRAM authentication with SHA-512 digest algorithm, "ecdsa-nist256p-challenge" for key-based challenge authentication, "external" for authentication using client side SSL certificate] +** tipo: intero +** valori: plain, scram-sha-1, scram-sha-256, scram-sha-512, ecdsa-nist256p-challenge, external +** valore predefinito: `+plain+` + +* [[option_irc.server_default.sasl_password]] *irc.server_default.sasl_password* +** descrizione: pass:none[password for SASL authentication; this option is not used for mechanisms "ecdsa-nist256p-challenge" and "external" (note: content is evaluated, see /help eval; server options are evaluated with ${irc_server.xxx} and ${server} is replaced by the server name)] +** tipo: stringa +** valori: qualsiasi stringa +** valore predefinito: `+""+` + +* [[option_irc.server_default.sasl_timeout]] *irc.server_default.sasl_timeout* +** descrizione: pass:none[timeout (in secondi) prima di annullare l'autenticazione SASL] +** tipo: intero +** valori: 1 .. 3600 +** valore predefinito: `+15+` + +* [[option_irc.server_default.sasl_username]] *irc.server_default.sasl_username* +** descrizione: pass:none[username for SASL authentication; this option is not used for mechanism "external" (note: content is evaluated, see /help eval; server options are evaluated with ${irc_server.xxx} and ${server} is replaced by the server name)] +** tipo: stringa +** valori: qualsiasi stringa +** valore predefinito: `+""+` + +* [[option_irc.server_default.split_msg_max_length]] *irc.server_default.split_msg_max_length* +** descrizione: pass:none[split outgoing IRC messages to fit in this number of chars; the default value is 512, this is a safe and recommended value; value 0 disables the split (not recommended, unless you know what you do); allowed values are 0 or any integer between 128 and 4096; this option should be changed only on non-standard IRC servers, for example gateways like bitlbee] +** tipo: intero +** valori: 0 .. 4096 +** valore predefinito: `+512+` + +* [[option_irc.server_default.ssl]] *irc.server_default.ssl* +** descrizione: pass:none[usa SSL per le comunicazioni col server] +** tipo: bool +** valori: on, off +** valore predefinito: `+off+` + +* [[option_irc.server_default.ssl_cert]] *irc.server_default.ssl_cert* +** descrizione: pass:none[SSL certificate file used to automatically identify your nick (path is evaluated, see function string_eval_path_home in plugin API reference)] +** tipo: stringa +** valori: qualsiasi stringa +** valore predefinito: `+""+` + +* [[option_irc.server_default.ssl_dhkey_size]] *irc.server_default.ssl_dhkey_size* +** descrizione: pass:none[dimensione della chiave usata durante lo Scambio Chiavi Diffie-Hellman] +** tipo: intero +** valori: 0 .. 2147483647 +** valore predefinito: `+2048+` + +* [[option_irc.server_default.ssl_fingerprint]] *irc.server_default.ssl_fingerprint* +** descrizione: pass:none[fingerprint of certificate which is trusted and accepted for the server; only hexadecimal digits are allowed (0-9, a-f): 128 chars for SHA-512, 64 chars for SHA-256, 40 chars for SHA-1 (insecure, not recommended); many fingerprints can be separated by commas; if this option is set, the other checks on certificates are NOT performed (option "ssl_verify") (note: content is evaluated, see /help eval; server options are evaluated with ${irc_server.xxx} and ${server} is replaced by the server name)] +** tipo: stringa +** valori: qualsiasi stringa +** valore predefinito: `+""+` + +* [[option_irc.server_default.ssl_password]] *irc.server_default.ssl_password* +** descrizione: pass:none[password for SSL certificate's private key; only used with gnutls version >= 3.1.0 (note: content is evaluated, see /help eval; server options are evaluated with ${irc_server.xxx} and ${server} is replaced by the server name)] +** tipo: stringa +** valori: qualsiasi stringa +** valore predefinito: `+""+` + +* [[option_irc.server_default.ssl_priorities]] *irc.server_default.ssl_priorities* +** descrizione: pass:none[stringa con le priorità per gnutls (per la sintassi, consultare la documentazione per la funzione gnutls_priority_init nel manuale di gnutls, stringhe comuni sono: "PERFORMANCE", "NORMAL", "SECURE128", "SECURE256", "EXPORT", "NONE")] +** tipo: stringa +** valori: qualsiasi stringa +** valore predefinito: `+"NORMAL:-VERS-SSL3.0"+` + +* [[option_irc.server_default.ssl_verify]] *irc.server_default.ssl_verify* +** descrizione: pass:none[verifica che la connessione SSL sia totalmente fidata] +** tipo: bool +** valori: on, off +** valore predefinito: `+on+` + +* [[option_irc.server_default.usermode]] *irc.server_default.usermode* +** descrizione: pass:none[user mode(s) to set after connection to server and before executing command and the auto-join of channels; examples: "+R" (to set mode "R"), "+R-i" (to set mode "R" and remove "i"); see /help mode for the complete mode syntax (note: content is evaluated, see /help eval; server options are evaluated with ${irc_server.xxx} and ${server} is replaced by the server name)] +** tipo: stringa +** valori: qualsiasi stringa +** valore predefinito: `+""+` + +* [[option_irc.server_default.username]] *irc.server_default.username* +** descrizione: pass:none[user name to use on server (note: content is evaluated, see /help eval; server options are evaluated with ${irc_server.xxx} and ${server} is replaced by the server name)] +** tipo: stringa +** valori: qualsiasi stringa +** 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] +** 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_relay.color.status_active]] *relay.color.status_active* +** descrizione: pass:none[colore del testo per lo status "connesso"] +** 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_relay.color.status_auth_failed]] *relay.color.status_auth_failed* +** descrizione: pass:none[colore del testo per lo status "autenticazione fallita"] +** 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_relay.color.status_connecting]] *relay.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: `+white+` + +* [[option_relay.color.status_disconnected]] *relay.color.status_disconnected* +** descrizione: pass:none[colore del testo per lo status "disconnesso"] +** 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_relay.color.status_waiting_auth]] *relay.color.status_waiting_auth* +** descrizione: pass:none[colore del testo per lo status "in attesa dell'autenticazione"] +** 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_relay.color.text]] *relay.color.text* +** descrizione: pass:none[colore del testo nei buffer relay] +** 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_relay.color.text_bg]] *relay.color.text_bg* +** descrizione: pass:none[colore di sfondo nel buffer relay] +** 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_relay.color.text_selected]] *relay.color.text_selected* +** descrizione: pass:none[colore del testo della riga selezionata nel buffer relay] +** 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_relay.irc.backlog_max_minutes]] *relay.irc.backlog_max_minutes* +** descrizione: pass:none[numero massimo di minuti nella cronologia per canale IRC (0 = nessun limite, esempi: 1440 = un giorno, 10000 = una settimana; 43200 = un mese, 525600 = un anno)] +** tipo: intero +** valori: 0 .. 2147483647 +** valore predefinito: `+0+` + +* [[option_relay.irc.backlog_max_number]] *relay.irc.backlog_max_number* +** descrizione: pass:none[numero massimo di righe nella cronologia per canale IRC (0 = nessun limite)] +** tipo: intero +** valori: 0 .. 2147483647 +** valore predefinito: `+1024+` + +* [[option_relay.irc.backlog_since_last_disconnect]] *relay.irc.backlog_since_last_disconnect* +** descrizione: pass:none[mostra la cronologia a partire dall'ultima disconnessione del client] +** tipo: bool +** valori: on, off +** valore predefinito: `+on+` + +* [[option_relay.irc.backlog_since_last_message]] *relay.irc.backlog_since_last_message* +** descrizione: pass:none[display backlog starting from your last message] +** tipo: bool +** valori: on, off +** valore predefinito: `+off+` + +* [[option_relay.irc.backlog_tags]] *relay.irc.backlog_tags* +** descrizione: pass:none[comma-separated list of messages tags which are displayed in backlog per IRC channel (supported tags: "irc_join", "irc_part", "irc_quit", "irc_nick", "irc_privmsg"), "*" = all supported tags] +** tipo: stringa +** valori: qualsiasi stringa +** valore predefinito: `+"irc_privmsg"+` + +* [[option_relay.irc.backlog_time_format]] *relay.irc.backlog_time_format* +** descrizione: pass:none[format for time in backlog messages (see man strftime for format) (not used if server capability "server-time" was enabled by client, because time is sent as irc tag); empty string = disable time in backlog messages] +** tipo: stringa +** valori: qualsiasi stringa +** valore predefinito: `+"[%H:%M] "+` + +* [[option_relay.look.auto_open_buffer]] *relay.look.auto_open_buffer* +** descrizione: pass:none[apre automaticamente il buffer relay alla connessione di un nuovo client] +** tipo: bool +** valori: on, off +** valore predefinito: `+on+` + +* [[option_relay.look.raw_messages]] *relay.look.raw_messages* +** descrizione: pass:none[numero di messaggi raw da salvare in memoria quando il buffer dei dati raw viene chiuso (i messaggi verranno visualizzati all'apertura del buffer dei dati raw)] +** tipo: intero +** valori: 0 .. 65535 +** valore predefinito: `+256+` + +* [[option_relay.network.allow_empty_password]] *relay.network.allow_empty_password* +** descrizione: pass:none[allow empty password in relay (it should be enabled only for tests or local network)] +** tipo: bool +** valori: on, off +** valore predefinito: `+off+` + +* [[option_relay.network.allowed_ips]] *relay.network.allowed_ips* +** descrizione: pass:none[POSIX extended regular expression with IPs allowed to use relay (case insensitive, use "(?-i)" at beginning to make it case sensitive), example: "^(123\.45\.67\.89|192\.160\..*)$"] +** tipo: stringa +** valori: qualsiasi stringa +** valore predefinito: `+""+` + +* [[option_relay.network.auth_timeout]] *relay.network.auth_timeout* +** descrizione: pass:none[timeout (in seconds) for client authentication: connection is closed if the client is still not authenticated after this delay and the client status is set to "authentication failed" (0 = wait forever)] +** tipo: intero +** valori: 0 .. 2147483647 +** valore predefinito: `+60+` + +* [[option_relay.network.bind_address]] *relay.network.bind_address* +** descrizione: pass:none[indirizzo per l'associazione (se vuoto, la connessione è possibile su tutte le interfacce, usare "127.0.0.1" per consentire le connessioni solo dalla macchina locale)] +** tipo: stringa +** valori: qualsiasi stringa +** valore predefinito: `+""+` + +* [[option_relay.network.clients_purge_delay]] *relay.network.clients_purge_delay* +** descrizione: pass:none[delay for purging disconnected clients (in minutes, 0 = purge clients immediately, -1 = never purge)] +** tipo: intero +** valori: -1 .. 43200 +** valore predefinito: `+0+` + +* [[option_relay.network.compression]] *relay.network.compression* +** descrizione: pass:none[compression of messages sent to clients with "weechat" protocol: 0 = disable compression, 1 = low compression / fast ... 100 = best compression / slow; the value is a percentage converted to 1-9 for zlib and 1-19 for zstd; the default value is recommended, it offers a good compromise between compression and speed] +** tipo: intero +** valori: 0 .. 100 +** valore predefinito: `+20+` + +* [[option_relay.network.ipv6]] *relay.network.ipv6* +** descrizione: pass:none[listen on IPv6 socket by default (in addition to IPv4 which is default); protocols IPv4 and IPv6 can be forced (individually or together) in the protocol name (see /help relay)] +** tipo: bool +** valori: on, off +** valore predefinito: `+on+` + +* [[option_relay.network.max_clients]] *relay.network.max_clients* +** descrizione: pass:none[maximum number of clients connecting to a port (0 = no limit)] +** tipo: intero +** valori: 0 .. 2147483647 +** valore predefinito: `+5+` + +* [[option_relay.network.nonce_size]] *relay.network.nonce_size* +** descrizione: pass:none[size of nonce (in bytes), generated when a client connects; the client must use this nonce, concatenated to the client nonce and the password when hashing the password in the "init" command of the weechat protocol] +** tipo: intero +** valori: 8 .. 128 +** valore predefinito: `+16+` + +* [[option_relay.network.password]] *relay.network.password* +** descrizione: pass:none[password required by clients to access this relay (empty value means no password required, see option relay.network.allow_empty_password) (note: content is evaluated, see /help eval)] +** tipo: stringa +** valori: qualsiasi stringa +** valore predefinito: `+""+` + +* [[option_relay.network.password_hash_algo]] *relay.network.password_hash_algo* +** descrizione: pass:none[comma separated list of hash algorithms used for password authentication in weechat protocol, among these values: "plain" (password in plain text, not hashed), "sha256", "sha512", "pbkdf2+sha256", "pbkdf2+sha512"), "*" means all algorithms, a name beginning with "!" is a negative value to prevent an algorithm from being used, wildcard "*" is allowed in names (examples: "*", "pbkdf2*", "*,!plain")] +** tipo: stringa +** valori: qualsiasi stringa +** valore predefinito: `+"*"+` + +* [[option_relay.network.password_hash_iterations]] *relay.network.password_hash_iterations* +** descrizione: pass:none[number of iterations asked to the client in weechat protocol when a hashed password with algorithm PBKDF2 is used for authentication; more iterations is better in term of security but is slower to compute; this number should not be too high if your CPU is slow] +** tipo: intero +** valori: 1 .. 1000000 +** valore predefinito: `+100000+` + +* [[option_relay.network.ssl_cert_key]] *relay.network.ssl_cert_key* +** descrizione: pass:none[file with SSL certificate and private key (for serving clients with SSL) (path is evaluated, see function string_eval_path_home in plugin API reference)] +** tipo: stringa +** valori: qualsiasi stringa +** valore predefinito: `+"${weechat_config_dir}/ssl/relay.pem"+` + +* [[option_relay.network.ssl_priorities]] *relay.network.ssl_priorities* +** descrizione: pass:none[stringa con le priorità per gnutls (per la sintassi, consultare la documentazione per la funzione gnutls_priority_init nel manuale di gnutls, stringhe comuni sono: "PERFORMANCE", "NORMAL", "SECURE128", "SECURE256", "EXPORT", "NONE")] +** tipo: stringa +** valori: qualsiasi stringa +** valore predefinito: `+"NORMAL:-VERS-SSL3.0"+` + +* [[option_relay.network.totp_secret]] *relay.network.totp_secret* +** descrizione: pass:none[secret for the generation of the Time-based One-Time Password (TOTP), encoded in base32 (only letters and digits from 2 to 7); it is used as second factor in weechat protocol, in addition to the password, which must not be empty (empty value means no TOTP is required) (note: content is evaluated, see /help eval)] +** tipo: stringa +** valori: qualsiasi stringa +** valore predefinito: `+""+` + +* [[option_relay.network.totp_window]] *relay.network.totp_window* +** descrizione: pass:none[number of Time-based One-Time Passwords to accept before and after the current one: 0 = accept only the current password, 1 = accept one password before, the current, and one after, 2 = accept two passwords before, the current, and two after, ...; a high number reduces the security level (0 or 1 are recommended values)] +** tipo: intero +** valori: 0 .. 256 +** valore predefinito: `+0+` + +* [[option_relay.network.websocket_allowed_origins]] *relay.network.websocket_allowed_origins* +** descrizione: pass:none[POSIX extended regular expression with origins allowed in websockets (case insensitive, use "(?-i)" at beginning to make it case sensitive), example: "^https?://(www\.)?example\.(com|org)"] +** tipo: stringa +** valori: qualsiasi stringa +** valore predefinito: `+""+` + +* [[option_relay.weechat.commands]] *relay.weechat.commands* +** descrizione: pass:none[comma-separated list of commands allowed/denied when input data (text or command) is received from a client; "*" means any command, a name beginning with "!" is a negative value to prevent a command from being executed, wildcard "*" is allowed in names; this option should be set if the relay client is not safe (someone could use it to run commands); for example "*,!exec,!quit" allows any command except /exec and /quit] +** tipo: stringa +** valori: qualsiasi stringa +** valore predefinito: `+""+` +// end::relay_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] +** tipo: bool +** valori: on, off +** valore predefinito: `+off+` + +* [[option_ruby.look.eval_keep_context]] *ruby.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::ruby_options[] + +// tag::script_options[] +* [[option_script.color.status_autoloaded]] *script.color.status_autoloaded* +** descrizione: pass:none[colore per lo status "caricato automaticamente" ("a")] +** 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_script.color.status_held]] *script.color.status_held* +** descrizione: pass:none[colore per lo status "bloccato" ("H")] +** 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_script.color.status_installed]] *script.color.status_installed* +** descrizione: pass:none[colore per lo status "installato" ("i")] +** 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_script.color.status_obsolete]] *script.color.status_obsolete* +** descrizione: pass:none[colore per lo status "obsoleto" ("N")] +** 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_script.color.status_popular]] *script.color.status_popular* +** descrizione: pass:none[colore per lo status "popolare" ("*")] +** 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_script.color.status_running]] *script.color.status_running* +** descrizione: pass:none[colore per lo status "in esecuzione" ("r")] +** 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_script.color.status_unknown]] *script.color.status_unknown* +** descrizione: pass:none[colore per lo status "sconosciuto" ("?")] +** 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_script.color.text]] *script.color.text* +** descrizione: pass:none[colore del testo nel buffer degli script] +** 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_script.color.text_bg]] *script.color.text_bg* +** descrizione: pass:none[colore di sfondo nel buffer degli script] +** 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_script.color.text_bg_selected]] *script.color.text_bg_selected* +** descrizione: pass:none[colore di sfondo per la riga selezionata nel buffer degli script] +** 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_script.color.text_date]] *script.color.text_date* +** descrizione: pass:none[colore del testo delle date nel buffer degli script] +** 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_script.color.text_date_selected]] *script.color.text_date_selected* +** descrizione: pass:none[colore del testo delle date per la riga selezionata nel buffer degli script] +** 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_script.color.text_delimiters]] *script.color.text_delimiters* +** descrizione: pass:none[colore del testo dei delimitatori nel buffer degli script] +** 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_script.color.text_description]] *script.color.text_description* +** descrizione: pass:none[colore del testo della descrizione nel buffer degli script] +** 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_script.color.text_description_selected]] *script.color.text_description_selected* +** descrizione: pass:none[colore del testo della descrizione per la riga selezionata nel buffer degli script] +** 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_script.color.text_extension]] *script.color.text_extension* +** descrizione: pass:none[colore del testo dell'estensione nel buffer degli script] +** 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_script.color.text_extension_selected]] *script.color.text_extension_selected* +** descrizione: pass:none[colore del testo dell'estensione per la riga selezionata nel buffer degli script] +** 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_script.color.text_name]] *script.color.text_name* +** descrizione: pass:none[colore del testo del nome dello script nel buffer degli script] +** 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_script.color.text_name_selected]] *script.color.text_name_selected* +** descrizione: pass:none[colore del testo del nome dello script per la riga selezionata nel buffer degli script] +** 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_script.color.text_selected]] *script.color.text_selected* +** descrizione: pass:none[colore del testo della riga selezionata nel buffer degli script] +** 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_script.color.text_tags]] *script.color.text_tags* +** descrizione: pass:none[colore del testo dei tag nel buffer degli script] +** 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_script.color.text_tags_selected]] *script.color.text_tags_selected* +** descrizione: pass:none[colore del testo dei tag per la riga selezionata nel buffer degli script] +** 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_script.color.text_version]] *script.color.text_version* +** descrizione: pass:none[colore del testo della versione nel buffer degli script] +** 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_script.color.text_version_loaded]] *script.color.text_version_loaded* +** descrizione: pass:none[colore del testo della versione caricata nel buffer degli script] +** 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_script.color.text_version_loaded_selected]] *script.color.text_version_loaded_selected* +** descrizione: pass:none[colore del testo della versione attiva per la riga selezionata nel buffer degli script] +** 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_script.color.text_version_selected]] *script.color.text_version_selected* +** descrizione: pass:none[colore del testo della versione per la riga selezionata nel buffer degli script] +** 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_script.look.columns]] *script.look.columns* +** descrizione: pass:none[format of columns displayed in script buffer: following column identifiers are replaced by their values: %a=author, %d=description, %D=date added, %e=extension, %l=language, %L=license, %n=name with extension, %N=name, %r=requirements, %s=status, %t=tags, %u=date updated, %v=version, %V=version loaded, %w=min_weechat, %W=max_weechat)] +** tipo: stringa +** valori: qualsiasi stringa +** valore predefinito: `+"%s %n %V %v %u | %d | %t"+` + +* [[option_script.look.diff_color]] *script.look.diff_color* +** descrizione: pass:none[colora l'output di diff] +** tipo: bool +** valori: on, off +** valore predefinito: `+on+` + +* [[option_script.look.diff_command]] *script.look.diff_command* +** descrizione: pass:none[comando usato per mostrare le differenze tra lo script installato e la nuova versione nel repository ("auto" = rileva automaticamente il comando diff (git o diff), valore vuoto = disabilita diff, altra stringa = nome del comando, ad esempio "diff")] +** tipo: stringa +** valori: qualsiasi stringa +** valore predefinito: `+"auto"+` + +* [[option_script.look.display_source]] *script.look.display_source* +** descrizione: pass:none[mostra il codice sorgente dello script sul buffer ed i relativi dettagli (lo script viene scaricato in un file temporaneo)] +** tipo: bool +** valori: on, off +** valore predefinito: `+on+` + +* [[option_script.look.quiet_actions]] *script.look.quiet_actions* +** descrizione: pass:none[quiet actions on script buffer: do not display messages on core buffer when scripts are installed/removed/loaded/unloaded (only errors are displayed)] +** tipo: bool +** valori: on, off +** valore predefinito: `+on+` + +* [[option_script.look.sort]] *script.look.sort* +** descrizione: pass:none[default sort keys for scripts: comma-separated list of identifiers: a=author, A=autoloaded, d=date added, e=extension, i=installed, l=language, n=name, o=obsolete, p=popularity, r=running, u=date updated; char "-" can be used before identifier to reverse order; example: "i,u": installed scripts first, sorted by update date] +** tipo: stringa +** valori: qualsiasi stringa +** valore predefinito: `+"i,p,n"+` + +* [[option_script.look.translate_description]] *script.look.translate_description* +** descrizione: pass:none[translate description of scripts (if translation is available in your language, otherwise English version is used)] +** tipo: bool +** valori: on, off +** valore predefinito: `+on+` + +* [[option_script.look.use_keys]] *script.look.use_keys* +** descrizione: pass:none[use keys alt+X in script buffer to do actions on scripts (alt+i = install, alt+r = remove, ...); if disabled, only the input is allowed: i, r, ...] +** tipo: bool +** valori: on, off +** valore predefinito: `+on+` + +* [[option_script.scripts.autoload]] *script.scripts.autoload* +** descrizione: pass:none[autoload scripts installed (make a link in "autoload" directory to script in parent directory)] +** tipo: bool +** valori: on, off +** valore predefinito: `+on+` + +* [[option_script.scripts.cache_expire]] *script.scripts.cache_expire* +** descrizione: pass:none[local cache expiration time, in minutes (-1 = never expires, 0 = always expire)] +** tipo: intero +** valori: -1 .. 525600 +** valore predefinito: `+1440+` + +* [[option_script.scripts.download_enabled]] *script.scripts.download_enabled* +** descrizione: pass:none[enable download of files from the scripts repository when the /script command is used (list of scripts and scripts themselves); the list of scripts is downloaded from the URL specified in the option script.scripts.url; WeeChat will sometimes download again the list of scripts when you use the /script command, even if you don't install a script] +** tipo: bool +** valori: on, off +** valore predefinito: `+off+` + +* [[option_script.scripts.download_timeout]] *script.scripts.download_timeout* +** descrizione: pass:none[timeout (in seconds) for download of scripts and list of scripts] +** tipo: intero +** valori: 1 .. 3600 +** valore predefinito: `+30+` + +* [[option_script.scripts.hold]] *script.scripts.hold* +** descrizione: pass:none[scripts to "hold": comma-separated list of scripts which will never been upgraded and can not be removed, for example: "go.py,urlserver.py"] +** tipo: stringa +** valori: qualsiasi stringa +** valore predefinito: `+""+` + +* [[option_script.scripts.path]] *script.scripts.path* +** descrizione: pass:none[local cache directory for scripts (path is evaluated, see function string_eval_path_home in plugin API reference)] +** tipo: stringa +** valori: qualsiasi stringa +** valore predefinito: `+"${weechat_cache_dir}/script"+` + +* [[option_script.scripts.url]] *script.scripts.url* +** descrizione: pass:none[URL for file with list of scripts] +** tipo: stringa +** valori: qualsiasi stringa +** valore predefinito: `+"https://weechat.org/files/plugins.xml.gz"+` +// end::script_options[] + // 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)] @@ -29,6 +2287,218 @@ ** 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: `+lightred+` + +* [[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_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: `+cyan+` + +* [[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: `+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::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: `+lightgreen+` + +* [[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_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: `+lightblue+` + +* [[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: `+lightcyan+` + +* [[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: `+lightmagenta+` + +* [[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_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: `+cyan+` + +* [[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: `+green+` + +* [[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: `+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::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] @@ -1381,544 +3851,6 @@ ** 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[] - -// 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::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: `+lightred+` - -* [[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: `+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[] - -// 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: `+lightgreen+` - -* [[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_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: `+lightblue+` - -* [[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: `+lightcyan+` - -* [[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: `+lightmagenta+` - -* [[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_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: `+cyan+` - -* [[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: `+green+` - -* [[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: `+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+` - -* [[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: `+lightred+` - -* [[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_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: `+cyan+` - -* [[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: `+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},"+` - -* [[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+` - -* [[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_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_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+` - -* [[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_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] -** tipo: intero -** valori: 1 .. 3 -** 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)] -** 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+` - -* [[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::xfer_options[] * [[option_xfer.color.status_aborted]] *xfer.color.status_aborted* ** descrizione: pass:none[colore del testo per lo status "annullato"] @@ -2106,1935 +4038,3 @@ ** valori: 5 .. 2147483647 ** valore predefinito: `+300+` // end::xfer_options[] - -// tag::irc_options[] -* [[option_irc.color.input_nick]] *irc.color.input_nick* -** descrizione: pass:none[colore per il nick 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: `+lightcyan+` - -* [[option_irc.color.item_channel_modes]] *irc.color.item_channel_modes* -** descrizione: pass:none[colore per le modalità dei canali, vicino ai 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: `+default+` - -* [[option_irc.color.item_lag_counting]] *irc.color.item_lag_counting* -** descrizione: pass:none[colore per l'indicatore del lag, durante il conteggio (pong non ricevuto dal server, lag in aumento)] -** 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_irc.color.item_lag_finished]] *irc.color.item_lag_finished* -** descrizione: pass:none[colore per l'indicatore di ritardo, quando il pong viene ricevuto dal 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: `+yellow+` - -* [[option_irc.color.item_nick_modes]] *irc.color.item_nick_modes* -** descrizione: pass:none[color for nick modes in bar item "input_prompt"] -** 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_irc.color.item_tls_version_deprecated]] *irc.color.item_tls_version_deprecated* -** descrizione: pass:none[color for deprecated TLS versions in bar item "tls_version"] -** 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_irc.color.item_tls_version_insecure]] *irc.color.item_tls_version_insecure* -** descrizione: pass:none[color for insecure TLS versions in bar item "tls_version"] -** 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_irc.color.item_tls_version_ok]] *irc.color.item_tls_version_ok* -** descrizione: pass:none[color for higher supported TLS version in bar item "tls_version"] -** 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_irc.color.message_account]] *irc.color.message_account* -** descrizione: pass:none[color for text in account messages] -** 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_irc.color.message_chghost]] *irc.color.message_chghost* -** descrizione: pass:none[color for text in "chghost" messages] -** 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_irc.color.message_join]] *irc.color.message_join* -** descrizione: pass:none[colore per il testo nei messaggi 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: `+green+` - -* [[option_irc.color.message_kick]] *irc.color.message_kick* -** descrizione: pass:none[color for text in kick/kill messages] -** 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_irc.color.message_quit]] *irc.color.message_quit* -** descrizione: pass:none[colore per il testo nei messaggi di uscita/abbandono] -** 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_irc.color.message_setname]] *irc.color.message_setname* -** descrizione: pass:none[color for text in "setname" messages] -** 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_irc.color.mirc_remap]] *irc.color.mirc_remap* -** descrizione: pass:none[remap mirc colors in messages using a hashtable: keys are "fg,bg" as integers between -1 (not specified) and 15, values are WeeChat color names or numbers (format is: "1,-1:color1;2,7:color2"), example: "1,-1:darkgray;1,2:white,blue" to remap black to "darkgray" and black on blue to "white,blue"; default WeeChat colors for IRC codes: 0=white, 1=black, 2=blue, 3=green, 4=lightred, 5=red, 6=magenta, 7=brown, 8=yellow, 9=lightgreen, 10=cyan, 11=lightcyan, 12=lightblue, 13=lightmagenta, 14=darkgray, 15=gray] -** tipo: stringa -** valori: qualsiasi stringa -** valore predefinito: `+"1,-1:darkgray"+` - -* [[option_irc.color.nick_prefixes]] *irc.color.nick_prefixes* -** descrizione: pass:none[colore per i prefissi dei nick usando il carattere di modalità (o=operatore, h=halfop, v=voice, ..), il formato è: "o:colore1;h:colore2;v:colore3" (se una modalità non viene trovata, WeeChat proverà con le modalità successive ricevute dal server ("PREFIX"); può essere usata una modalità speciale "*" come colore prefefinito se non viene trovata nessuna modalità nella lista)] -** tipo: stringa -** valori: qualsiasi stringa -** valore predefinito: `+"y:lightred;q:lightred;a:lightcyan;o:lightgreen;h:lightmagenta;v:yellow;*:lightblue"+` - -* [[option_irc.color.notice]] *irc.color.notice* -** descrizione: pass:none[colore per il testo "Notifica" nelle notifiche] -** 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_irc.color.reason_kick]] *irc.color.reason_kick* -** descrizione: pass:none[color for reason in kick/kill messages] -** 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_irc.color.reason_quit]] *irc.color.reason_quit* -** descrizione: pass:none[colore per il motivo nei messaggi di uscita/abbandono] -** 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_irc.color.topic_current]] *irc.color.topic_current* -** descrizione: pass:none[color for current channel topic (when joining a channel or using /topic)] -** 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_irc.color.topic_new]] *irc.color.topic_new* -** descrizione: pass:none[colore del nuovo argomento del canale (quando viene cambiato)] -** 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_irc.color.topic_old]] *irc.color.topic_old* -** descrizione: pass:none[colore del precedente argomento del canale (quando viene cambiato)] -** 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_irc.look.buffer_open_before_autojoin]] *irc.look.buffer_open_before_autojoin* -** descrizione: pass:none[open channel buffer before the JOIN is received from server when it is auto joined (with server option "autojoin"); this is useful to open channels with always the same buffer numbers on startup] -** tipo: bool -** valori: on, off -** valore predefinito: `+on+` - -* [[option_irc.look.buffer_open_before_join]] *irc.look.buffer_open_before_join* -** descrizione: pass:none[open channel buffer before the JOIN is received from server when it is manually joined (with /join command)] -** tipo: bool -** valori: on, off -** valore predefinito: `+off+` - -* [[option_irc.look.buffer_switch_autojoin]] *irc.look.buffer_switch_autojoin* -** descrizione: pass:none[passa automaticamente al buffer del canale con l'ingresso automatico abilitato (con l'opzione del server "autojoin")] -** tipo: bool -** valori: on, off -** valore predefinito: `+on+` - -* [[option_irc.look.buffer_switch_join]] *irc.look.buffer_switch_join* -** descrizione: pass:none[passa automaticamente al buffer del canale quando si entra manualmente (con il comando /join)] -** tipo: bool -** valori: on, off -** valore predefinito: `+on+` - -* [[option_irc.look.color_nicks_in_names]] *irc.look.color_nicks_in_names* -** descrizione: pass:none[usa colore nick nell'output di /names (o l'elenco di nick mostrati all'ingresso di un canale)] -** tipo: bool -** valori: on, off -** valore predefinito: `+off+` - -* [[option_irc.look.color_nicks_in_nicklist]] *irc.look.color_nicks_in_nicklist* -** descrizione: pass:none[usa il colore del nick nella lista nick] -** tipo: bool -** valori: on, off -** valore predefinito: `+off+` - -* [[option_irc.look.color_nicks_in_server_messages]] *irc.look.color_nicks_in_server_messages* -** descrizione: pass:none[usa i colori dei nick nei messaggi dal server] -** tipo: bool -** valori: on, off -** valore predefinito: `+on+` - -* [[option_irc.look.color_pv_nick_like_channel]] *irc.look.color_pv_nick_like_channel* -** descrizione: pass:none[usa lo stesso colore del nick per canale e privato] -** tipo: bool -** valori: on, off -** valore predefinito: `+on+` - -* [[option_irc.look.ctcp_time_format]] *irc.look.ctcp_time_format* -** descrizione: pass:none[formato dell'ora in risposta al messaggio CTCP TIME (consultare man strftime per i dettagli su data/ora)] -** tipo: stringa -** valori: qualsiasi stringa -** valore predefinito: `+"%a, %d %b %Y %T %z"+` - -* [[option_irc.look.display_account_message]] *irc.look.display_account_message* -** descrizione: pass:none[display ACCOUNT messages received when capability account-notify is enabled] -** tipo: bool -** valori: on, off -** valore predefinito: `+on+` - -* [[option_irc.look.display_away]] *irc.look.display_away* -** descrizione: pass:none[mostra messaggio quando (non) si risulta assenti (off: non mostra/invia nulla, local: mostra localmente, channel: invia azioni ai canali)] -** tipo: intero -** valori: off, local, channel -** valore predefinito: `+local+` - -* [[option_irc.look.display_ctcp_blocked]] *irc.look.display_ctcp_blocked* -** descrizione: pass:none[visualizza messaggio CTCP anche se bloccato] -** tipo: bool -** valori: on, off -** valore predefinito: `+on+` - -* [[option_irc.look.display_ctcp_reply]] *irc.look.display_ctcp_reply* -** descrizione: pass:none[visualizza risposta CTCP inviata da WeeChat] -** tipo: bool -** valori: on, off -** valore predefinito: `+on+` - -* [[option_irc.look.display_ctcp_unknown]] *irc.look.display_ctcp_unknown* -** descrizione: pass:none[visualizza messaggio CTCP anche se è CTCP sconosciuto] -** tipo: bool -** valori: on, off -** valore predefinito: `+on+` - -* [[option_irc.look.display_extended_join]] *irc.look.display_extended_join* -** descrizione: pass:none[display extra information in the JOIN messages: account name and real name (capability extended-join must be enabled)] -** tipo: bool -** valori: on, off -** valore predefinito: `+on+` - -* [[option_irc.look.display_host_join]] *irc.look.display_host_join* -** descrizione: pass:none[visualizza l'host nei messaggi di entrata] -** tipo: bool -** valori: on, off -** valore predefinito: `+on+` - -* [[option_irc.look.display_host_join_local]] *irc.look.display_host_join_local* -** descrizione: pass:none[visualizza l'host nei messaggi di entrata dal client locale] -** tipo: bool -** valori: on, off -** valore predefinito: `+on+` - -* [[option_irc.look.display_host_quit]] *irc.look.display_host_quit* -** descrizione: pass:none[visualizza host nei messaggi di uscita/abbandono] -** tipo: bool -** valori: on, off -** valore predefinito: `+on+` - -* [[option_irc.look.display_join_message]] *irc.look.display_join_message* -** descrizione: pass:none[comma-separated list of messages to display after joining a channel: 324 = channel modes, 329 = channel creation date, 332 = topic, 333 = nick/date for topic, 353 = names on channel, 366 = names count] -** tipo: stringa -** valori: qualsiasi stringa -** valore predefinito: `+"329,332,333,366"+` - -* [[option_irc.look.display_old_topic]] *irc.look.display_old_topic* -** descrizione: pass:none[visualizza l'argomento del canale precedente quando viene cambiato] -** tipo: bool -** valori: on, off -** valore predefinito: `+on+` - -* [[option_irc.look.display_pv_away_once]] *irc.look.display_pv_away_once* -** descrizione: pass:none[mostra il messaggio di assenza remota una sola volta in privato] -** tipo: bool -** valori: on, off -** valore predefinito: `+on+` - -* [[option_irc.look.display_pv_back]] *irc.look.display_pv_back* -** descrizione: pass:none[mostra un messaggio in privato quando l'utente è tornato (dopo l'uscita dal server)] -** tipo: bool -** valori: on, off -** valore predefinito: `+on+` - -* [[option_irc.look.display_pv_nick_change]] *irc.look.display_pv_nick_change* -** descrizione: pass:none[display nick change in private] -** tipo: bool -** valori: on, off -** valore predefinito: `+on+` - -* [[option_irc.look.display_pv_warning_address]] *irc.look.display_pv_warning_address* -** descrizione: pass:none[display a warning in private buffer if the address of remote nick has changed; this option is disabled by default because servers like bitlbee are causing this warning to be displayed when it is not expected (the address of remote nick changes multiple times on login)] -** tipo: bool -** valori: on, off -** valore predefinito: `+off+` - -* [[option_irc.look.highlight_channel]] *irc.look.highlight_channel* -** descrizione: pass:none[comma separated list of words to highlight in channel buffers (case insensitive, use "(?-i)" at beginning of words to make them case sensitive; special variables $nick, $channel and $server are replaced by their values), these words are added to buffer property "highlight_words" only when buffer is created (it does not affect current buffers), an empty string disables default highlight on nick, examples: "$nick", "(?-i)$nick"] -** tipo: stringa -** valori: qualsiasi stringa -** valore predefinito: `+"$nick"+` - -* [[option_irc.look.highlight_pv]] *irc.look.highlight_pv* -** descrizione: pass:none[comma separated list of words to highlight in private buffers (case insensitive, use "(?-i)" at beginning of words to make them case sensitive; special variables $nick, $channel and $server are replaced by their values), these words are added to buffer property "highlight_words" only when buffer is created (it does not affect current buffers), an empty string disables default highlight on nick, examples: "$nick", "(?-i)$nick"] -** tipo: stringa -** valori: qualsiasi stringa -** valore predefinito: `+"$nick"+` - -* [[option_irc.look.highlight_server]] *irc.look.highlight_server* -** descrizione: pass:none[comma separated list of words to highlight in server buffers (case insensitive, use "(?-i)" at beginning of words to make them case sensitive; special variables $nick, $channel and $server are replaced by their values), these words are added to buffer property "highlight_words" only when buffer is created (it does not affect current buffers), an empty string disables default highlight on nick, examples: "$nick", "(?-i)$nick"] -** tipo: stringa -** valori: qualsiasi stringa -** valore predefinito: `+"$nick"+` - -* [[option_irc.look.highlight_tags_restrict]] *irc.look.highlight_tags_restrict* -** descrizione: pass:none[restrict highlights to these tags on irc buffers (to have highlight on user messages but not server messages); tags must be separated by a comma and "+" can be used to make a logical "and" between tags; wildcard "*" is allowed in tags; an empty value allows highlight on any tag] -** tipo: stringa -** valori: qualsiasi stringa -** valore predefinito: `+"irc_privmsg,irc_notice"+` - -* [[option_irc.look.item_channel_modes_hide_args]] *irc.look.item_channel_modes_hide_args* -** descrizione: pass:none[hide channel modes arguments if at least one of these modes is in channel modes ("*" to always hide all arguments, empty value to never hide arguments); example: "kf" to hide arguments if "k" or "f" are in channel modes] -** tipo: stringa -** valori: qualsiasi stringa -** valore predefinito: `+"k"+` - -* [[option_irc.look.item_display_server]] *irc.look.item_display_server* -** descrizione: pass:none[nome dell'elemento barra dove è mostrato il server IRC (per la barra di stato)] -** tipo: intero -** valori: buffer_plugin, buffer_name -** valore predefinito: `+buffer_plugin+` - -* [[option_irc.look.item_nick_modes]] *irc.look.item_nick_modes* -** descrizione: pass:none[display nick modes in bar item "input_prompt"] -** tipo: bool -** valori: on, off -** valore predefinito: `+on+` - -* [[option_irc.look.item_nick_prefix]] *irc.look.item_nick_prefix* -** descrizione: pass:none[display nick prefix in bar item "input_prompt"] -** tipo: bool -** valori: on, off -** valore predefinito: `+on+` - -* [[option_irc.look.join_auto_add_chantype]] *irc.look.join_auto_add_chantype* -** descrizione: pass:none[automatically add channel type in front of channel name on command /join if the channel name does not start with a valid channel type for the server; for example: "/join weechat" will in fact send: "/join #weechat"] -** tipo: bool -** valori: on, off -** valore predefinito: `+off+` - -* [[option_irc.look.msgbuffer_fallback]] *irc.look.msgbuffer_fallback* -** descrizione: pass:none[buffer di destinazione predefinito per le opzioni di msgbuffer quando la destinazione è privata ed il buffer privato non viene trovato] -** tipo: intero -** valori: current, server -** valore predefinito: `+current+` - -* [[option_irc.look.new_channel_position]] *irc.look.new_channel_position* -** descrizione: pass:none[forza la posizione del nuovo canale nell'elenco dei buffer (none = posizione predefinita (dovrebbe essere l'ultimo buffer), next = buffer corrente + 1, near_server = dopo l'ultimo canale/privato del server)] -** tipo: intero -** valori: none, next, near_server -** valore predefinito: `+none+` - -* [[option_irc.look.new_pv_position]] *irc.look.new_pv_position* -** descrizione: pass:none[forza la posizione del nuovo buffer privato nell'elenco dei buffer (none = posizione predefinita (dovrebbe essere l'ultimo buffer), next = buffer corrente + 1, near_server = dopo l'ultimo canale/privato del server)] -** tipo: intero -** valori: none, next, near_server -** valore predefinito: `+none+` - -* [[option_irc.look.nick_completion_smart]] *irc.look.nick_completion_smart* -** descrizione: pass:none[completamento intelligente per i nick (completa il primo con gli ultimi a parlare sul canale): speakers = tutti i nick (notifiche comprese), speakers_highlight = solo i nick con le notifiche] -** tipo: intero -** valori: off, speakers, speakers_highlights -** valore predefinito: `+speakers+` - -* [[option_irc.look.nick_mode]] *irc.look.nick_mode* -** descrizione: pass:none[display nick mode (op, voice, ...) before nick (none = never, prefix = in prefix only (default), action = in action messages only, both = prefix + action messages)] -** tipo: intero -** valori: none, prefix, action, both -** valore predefinito: `+prefix+` - -* [[option_irc.look.nick_mode_empty]] *irc.look.nick_mode_empty* -** descrizione: pass:none[display a space if nick mode is enabled but nick has no mode (not op, voice, ...)] -** tipo: bool -** valori: on, off -** valore predefinito: `+off+` - -* [[option_irc.look.nicks_hide_password]] *irc.look.nicks_hide_password* -** descrizione: pass:none[comma separated list of nicks for which passwords will be hidden when a message is sent, for example to hide password in message displayed by "/msg nickserv identify password", example: "nickserv,nickbot"] -** tipo: stringa -** valori: qualsiasi stringa -** valore predefinito: `+"nickserv"+` - -* [[option_irc.look.notice_as_pv]] *irc.look.notice_as_pv* -** descrizione: pass:none[visualizza notifiche come messaggi privati (se automatico, usa il buffer privato se viene trovato)] -** tipo: intero -** valori: auto, never, always -** valore predefinito: `+auto+` - -* [[option_irc.look.notice_welcome_redirect]] *irc.look.notice_welcome_redirect* -** descrizione: pass:none[automatically redirect channel welcome notices to the channel buffer; such notices have the nick as target but a channel name in beginning of notice message, for example the ENTRYMSG notices sent by Atheme IRC Services which look like: "[#channel\] Welcome to this channel..."] -** tipo: bool -** valori: on, off -** valore predefinito: `+on+` - -* [[option_irc.look.notice_welcome_tags]] *irc.look.notice_welcome_tags* -** descrizione: pass:none[comma separated list of tags used in a welcome notices redirected to a channel, for example: "notify_private"] -** tipo: stringa -** valori: qualsiasi stringa -** valore predefinito: `+""+` - -* [[option_irc.look.notify_tags_ison]] *irc.look.notify_tags_ison* -** descrizione: pass:none[comma separated list of tags used in messages displayed by notify when a nick joins or quits server (result of command ison or monitor), for example: "notify_message", "notify_private" or "notify_highlight"] -** tipo: stringa -** valori: qualsiasi stringa -** valore predefinito: `+"notify_message"+` - -* [[option_irc.look.notify_tags_whois]] *irc.look.notify_tags_whois* -** descrizione: pass:none[elenco separato da virgole di tag usati nei messaggi stampati dalle notifiche quando un nick cambia lo stato di assenza (risultato del comando whois), ad esempio: "notify_message", "notify_private" o "notify_highlight"] -** tipo: stringa -** valori: qualsiasi stringa -** valore predefinito: `+"notify_message"+` - -* [[option_irc.look.part_closes_buffer]] *irc.look.part_closes_buffer* -** descrizione: pass:none[chiude buffer quando viene digitato /part nel canale] -** tipo: bool -** valori: on, off -** valore predefinito: `+off+` - -* [[option_irc.look.pv_buffer]] *irc.look.pv_buffer* -** descrizione: pass:none[unisci i buffer privati] -** tipo: intero -** valori: independent, merge_by_server, merge_all -** valore predefinito: `+independent+` - -* [[option_irc.look.pv_tags]] *irc.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_irc.look.raw_messages]] *irc.look.raw_messages* -** descrizione: pass:none[numero di messaggi raw da salvare in memoria quando il buffer dei dati raw viene chiuso (i messaggi verranno visualizzati all'apertura del buffer dei dati raw)] -** tipo: intero -** valori: 0 .. 65535 -** valore predefinito: `+256+` - -* [[option_irc.look.server_buffer]] *irc.look.server_buffer* -** descrizione: pass:none[merge server buffers; this option has no effect if a layout is saved and is conflicting with this value (see /help layout)] -** tipo: intero -** valori: merge_with_core, merge_without_core, independent -** valore predefinito: `+merge_with_core+` - -* [[option_irc.look.smart_filter]] *irc.look.smart_filter* -** descrizione: pass:none[filter join/part/quit/nick messages for a nick if not speaking for some minutes on channel (you must create a filter on tag "irc_smart_filter", see /help filter)] -** tipo: bool -** valori: on, off -** valore predefinito: `+on+` - -* [[option_irc.look.smart_filter_account]] *irc.look.smart_filter_account* -** descrizione: pass:none[enable smart filter for "account" messages] -** tipo: bool -** valori: on, off -** valore predefinito: `+on+` - -* [[option_irc.look.smart_filter_chghost]] *irc.look.smart_filter_chghost* -** descrizione: pass:none[enable smart filter for "chghost" messages] -** tipo: bool -** valori: on, off -** valore predefinito: `+on+` - -* [[option_irc.look.smart_filter_delay]] *irc.look.smart_filter_delay* -** descrizione: pass:none[delay for filtering join/part/quit messages (in minutes): if the nick did not speak during the last N minutes, the join/part/quit is filtered] -** tipo: intero -** valori: 1 .. 10080 -** valore predefinito: `+5+` - -* [[option_irc.look.smart_filter_join]] *irc.look.smart_filter_join* -** descrizione: pass:none[abilita filtro smart per i messaggi "join" (entrata)] -** tipo: bool -** valori: on, off -** valore predefinito: `+on+` - -* [[option_irc.look.smart_filter_join_unmask]] *irc.look.smart_filter_join_unmask* -** descrizione: pass:none[delay for unmasking a join message that was filtered with tag "irc_smart_filter" (in minutes): if a nick has joined max N minutes ago and then says something on channel (message, notice or update on topic), the join is unmasked, as well as nick changes after this join (0 = disable: never unmask a join)] -** tipo: intero -** valori: 0 .. 10080 -** valore predefinito: `+30+` - -* [[option_irc.look.smart_filter_mode]] *irc.look.smart_filter_mode* -** descrizione: pass:none[enable smart filter for "mode" messages: "*" to filter all modes, "+" to filter all modes in server prefixes (for example "ovh"), "xyz" to filter only modes x/y/z, "-xyz" to filter all modes but not x/y/z; examples: "ovh": filter modes o/v/h, "-bkl": filter all modes but not b/k/l] -** tipo: stringa -** valori: qualsiasi stringa -** valore predefinito: `+"+"+` - -* [[option_irc.look.smart_filter_nick]] *irc.look.smart_filter_nick* -** descrizione: pass:none[abilita filtro smart per i messaggi "nick" (cambio nick)] -** tipo: bool -** valori: on, off -** valore predefinito: `+on+` - -* [[option_irc.look.smart_filter_quit]] *irc.look.smart_filter_quit* -** descrizione: pass:none[abilita filtro smart per i messaggi "part" (uscita) e "quit (disconnessione)] -** tipo: bool -** valori: on, off -** valore predefinito: `+on+` - -* [[option_irc.look.smart_filter_setname]] *irc.look.smart_filter_setname* -** descrizione: pass:none[enable smart filter for "setname" messages] -** tipo: bool -** valori: on, off -** valore predefinito: `+on+` - -* [[option_irc.look.temporary_servers]] *irc.look.temporary_servers* -** descrizione: pass:none[enable automatic addition of temporary servers with command /connect] -** tipo: bool -** valori: on, off -** valore predefinito: `+off+` - -* [[option_irc.look.topic_strip_colors]] *irc.look.topic_strip_colors* -** descrizione: pass:none[elimina colori nell'argomento (usato solo quando mostrato il titolo del buffer)] -** tipo: bool -** valori: on, off -** valore predefinito: `+off+` - -* [[option_irc.look.typing_status_nicks]] *irc.look.typing_status_nicks* -** descrizione: pass:none[display nicks typing on the channel in bar item "typing" (option typing.look.enabled_nicks must be enabled and capability "message-tags" must be enabled on the server)] -** tipo: bool -** valori: on, off -** valore predefinito: `+off+` - -* [[option_irc.look.typing_status_self]] *irc.look.typing_status_self* -** descrizione: pass:none[send self typing status to channels so that other users see when you are typing a message (option typing.look.enabled_self must be enabled and capability "message-tags" must be enabled on the server)] -** tipo: bool -** valori: on, off -** valore predefinito: `+off+` - -* [[option_irc.network.autoreconnect_delay_growing]] *irc.network.autoreconnect_delay_growing* -** descrizione: pass:none[growing factor for autoreconnect delay to server (1 = always same delay, 2 = delay*2 for each retry, etc.)] -** tipo: intero -** valori: 1 .. 100 -** valore predefinito: `+2+` - -* [[option_irc.network.autoreconnect_delay_max]] *irc.network.autoreconnect_delay_max* -** descrizione: pass:none[ritardo massimo per la riconnessione automatica al server (in secondi, 0 = nessun massimo)] -** tipo: intero -** valori: 0 .. 604800 -** valore predefinito: `+600+` - -* [[option_irc.network.ban_mask_default]] *irc.network.ban_mask_default* -** descrizione: pass:none[default ban mask for commands /ban, /unban and /kickban; variables $nick, $user, $ident and $host are replaced by their values (extracted from "nick!user@host"); $ident is the same as $user if $user does not start with "~", otherwise it is set to "*"; this default mask is used only if WeeChat knows the host for the nick] -** tipo: stringa -** valori: qualsiasi stringa -** valore predefinito: `+"*!$ident@$host"+` - -* [[option_irc.network.colors_receive]] *irc.network.colors_receive* -** descrizione: pass:none[se disabilitato, i codici colori vengono ignorati nei messaggi in entrata] -** tipo: bool -** valori: on, off -** valore predefinito: `+on+` - -* [[option_irc.network.colors_send]] *irc.network.colors_send* -** descrizione: pass:none[allow user to send colors with special codes (ctrl-c + a code and optional color: b=bold, cxx=color, cxx,yy=color+background, i=italic, o=disable color/attributes, r=reverse, u=underline)] -** tipo: bool -** valori: on, off -** valore predefinito: `+on+` - -* [[option_irc.network.lag_check]] *irc.network.lag_check* -** descrizione: pass:none[intervallo tra due controlli per il ritardo (in secondi, 0 = nessun controllo)] -** tipo: intero -** valori: 0 .. 604800 -** valore predefinito: `+60+` - -* [[option_irc.network.lag_max]] *irc.network.lag_max* -** descrizione: pass:none[maximum lag (in seconds): if this lag is reached, WeeChat will consider that the answer from server (pong) will never be received and will give up counting the lag (0 = never give up)] -** tipo: intero -** valori: 0 .. 604800 -** valore predefinito: `+1800+` - -* [[option_irc.network.lag_min_show]] *irc.network.lag_min_show* -** descrizione: pass:none[ritardo minimo da visualizzare (in millisecondi)] -** tipo: intero -** valori: 0 .. 86400000 -** valore predefinito: `+500+` - -* [[option_irc.network.lag_reconnect]] *irc.network.lag_reconnect* -** descrizione: pass:none[reconnect to server if lag is greater than or equal to this value (in seconds, 0 = never reconnect); this value must be less than or equal to irc.network.lag_max] -** tipo: intero -** valori: 0 .. 604800 -** valore predefinito: `+300+` - -* [[option_irc.network.lag_refresh_interval]] *irc.network.lag_refresh_interval* -** descrizione: pass:none[interval between two refreshes of lag item, when lag is increasing (in seconds)] -** tipo: intero -** valori: 1 .. 3600 -** valore predefinito: `+1+` - -* [[option_irc.network.notify_check_ison]] *irc.network.notify_check_ison* -** descrizione: pass:none[intervallo tra due verifiche per la notifica con il comando IRC "ison" (in minuti)] -** tipo: intero -** valori: 1 .. 10080 -** valore predefinito: `+1+` - -* [[option_irc.network.notify_check_whois]] *irc.network.notify_check_whois* -** descrizione: pass:none[intervallo tra due verifiche per la notifica con il comando IRC "whois" (in minuti)] -** tipo: intero -** valori: 1 .. 10080 -** valore predefinito: `+5+` - -* [[option_irc.network.sasl_fail_unavailable]] *irc.network.sasl_fail_unavailable* -** descrizione: pass:none[cause SASL authentication failure when SASL is requested but unavailable on the server; when this option is enabled, it has effect only if option "sasl_fail" is set to "reconnect" or "disconnect" in the server] -** tipo: bool -** valori: on, off -** valore predefinito: `+on+` - -* [[option_irc.network.send_unknown_commands]] *irc.network.send_unknown_commands* -** descrizione: pass:none[invia comandi sconosciuti al server] -** tipo: bool -** valori: on, off -** valore predefinito: `+off+` - -* [[option_irc.network.whois_double_nick]] *irc.network.whois_double_nick* -** descrizione: pass:none[double the nick in /whois command (if only one nick is given), to get idle time in answer; for example: "/whois nick" will send "whois nick nick"] -** tipo: bool -** valori: on, off -** valore predefinito: `+off+` - -* [[option_irc.server_default.addresses]] *irc.server_default.addresses* -** descrizione: pass:none[list of hostname/port or IP/port for server (separated by comma) (note: content is evaluated, see /help eval; server options are evaluated with ${irc_server.xxx} and ${server} is replaced by the server name)] -** tipo: stringa -** valori: qualsiasi stringa -** valore predefinito: `+""+` - -* [[option_irc.server_default.anti_flood_prio_high]] *irc.server_default.anti_flood_prio_high* -** descrizione: pass:none[anti-flood per coda ad alta priorità: numero di secondi tra due messaggi utente o comandi inviati al server IRC (0 = nessun anti-flood)] -** tipo: intero -** valori: 0 .. 60 -** valore predefinito: `+2+` - -* [[option_irc.server_default.anti_flood_prio_low]] *irc.server_default.anti_flood_prio_low* -** descrizione: pass:none[anti-flood per coda a bassa priorità: numero di secondi tra due messaggi inviati al server IRC (messaggi come risposte CTCP automatiche) (0 = nessun anti-flood)] -** tipo: intero -** valori: 0 .. 60 -** valore predefinito: `+2+` - -* [[option_irc.server_default.autoconnect]] *irc.server_default.autoconnect* -** descrizione: pass:none[connette automaticamente ai server all'avvio di WeeChat] -** tipo: bool -** valori: on, off -** valore predefinito: `+off+` - -* [[option_irc.server_default.autojoin]] *irc.server_default.autojoin* -** descrizione: pass:none[comma separated list of channels to join after connection to server (and after executing command + delay if they are set); the channels that require a key must be at beginning of the list, and all the keys must be given after the channels (separated by a space) (example: "#channel1,#channel2,#channel3 key1,key2" where #channel1 and #channel2 are protected by key1 and key2) (note: content is evaluated, see /help eval; server options are evaluated with ${irc_server.xxx} and ${server} is replaced by the server name)] -** tipo: stringa -** valori: qualsiasi stringa -** valore predefinito: `+""+` - -* [[option_irc.server_default.autojoin_dynamic]] *irc.server_default.autojoin_dynamic* -** descrizione: pass:none[set automatically the "autojoin" option according to the channels you manually join and part with commands /join and /part] -** tipo: bool -** valori: on, off -** valore predefinito: `+off+` - -* [[option_irc.server_default.autoreconnect]] *irc.server_default.autoreconnect* -** descrizione: pass:none[riconnette automaticamente al server alla disconnessione] -** tipo: bool -** valori: on, off -** valore predefinito: `+on+` - -* [[option_irc.server_default.autoreconnect_delay]] *irc.server_default.autoreconnect_delay* -** descrizione: pass:none[ritardo (in secondi) prima di riprovare a riconnettersi al server] -** tipo: intero -** valori: 1 .. 65535 -** valore predefinito: `+10+` - -* [[option_irc.server_default.autorejoin]] *irc.server_default.autorejoin* -** descrizione: pass:none[automatically rejoin channels after kick; you can define a buffer local variable on a channel to override this value (name of variable: "autorejoin", value: "on" or "off")] -** tipo: bool -** valori: on, off -** valore predefinito: `+off+` - -* [[option_irc.server_default.autorejoin_delay]] *irc.server_default.autorejoin_delay* -** descrizione: pass:none[ritardo (in secondi) prima di rientrare automaticamente (dopo il kick)] -** tipo: intero -** valori: 0 .. 86400 -** valore predefinito: `+30+` - -* [[option_irc.server_default.away_check]] *irc.server_default.away_check* -** descrizione: pass:none[intervallo tra le due verifiche per l'assenza (in minuti, 0 = nessun check)] -** tipo: intero -** valori: 0 .. 10080 -** valore predefinito: `+0+` - -* [[option_irc.server_default.away_check_max_nicks]] *irc.server_default.away_check_max_nicks* -** descrizione: pass:none[non verificare l'assenza su canali con un elevato numero di nick (0 = illimitato)] -** tipo: intero -** valori: 0 .. 1000000 -** valore predefinito: `+25+` - -* [[option_irc.server_default.capabilities]] *irc.server_default.capabilities* -** descrizione: pass:none[comma-separated list of client capabilities to enable for server if they are available (see /help cap for a list of capabilities supported by WeeChat); "*" enables all capabilities by default (supported by both server and WeeChat); wildcard "*" is allowed; a capability beginning with "!" is excluded (example: "*,!account-*,!extended-join")] -** tipo: stringa -** valori: qualsiasi stringa -** valore predefinito: `+"*"+` - -* [[option_irc.server_default.charset_message]] *irc.server_default.charset_message* -** descrizione: pass:none[part of the IRC message (received or sent) which is decoded/encoded to the target charset; message = the whole IRC message (default), channel = starting from the channel name only (if found, with fallback on text), text = starting from the text only (you should try this value if you have issues with the channel name encoding)] -** tipo: intero -** valori: message, channel, text -** valore predefinito: `+message+` - -* [[option_irc.server_default.command]] *irc.server_default.command* -** descrizione: pass:none[command(s) to run after connection to server and before auto-join of channels (many commands can be separated by ";", use "\;" for a semicolon, special variables $nick, $channel and $server are replaced by their values) (note: commands are evaluated, see /help eval; server options are evaluated with ${irc_server.xxx} and ${server} is replaced by the server name)] -** tipo: stringa -** valori: qualsiasi stringa -** valore predefinito: `+""+` - -* [[option_irc.server_default.command_delay]] *irc.server_default.command_delay* -** descrizione: pass:none[delay (in seconds) after execution of command and before auto-join of channels (example: give some time for authentication before joining channels)] -** tipo: intero -** valori: 0 .. 3600 -** valore predefinito: `+0+` - -* [[option_irc.server_default.connection_timeout]] *irc.server_default.connection_timeout* -** descrizione: pass:none[timeout (in secondi) tra la connessione TCP al server ed il messaggio 001 ricevuto, se questo timeout viene raggiunto prima della ricezione del messaggio 001, WeeChat effettuerà la disconnessione] -** tipo: intero -** valori: 1 .. 3600 -** valore predefinito: `+60+` - -* [[option_irc.server_default.default_chantypes]] *irc.server_default.default_chantypes* -** descrizione: pass:none[channel type prefixes to use if the server does not send them in message 005 (default is "#&")] -** tipo: stringa -** valori: qualsiasi stringa -** valore predefinito: `+"#&"+` - -* [[option_irc.server_default.ipv6]] *irc.server_default.ipv6* -** descrizione: pass:none[usa il protocollo IPv6 per le comunicazioni con il server (prova con IPv6, se non disponibile usa IPv4); se disabilitato, viene usato solo IPv4] -** tipo: bool -** valori: on, off -** valore predefinito: `+on+` - -* [[option_irc.server_default.local_hostname]] *irc.server_default.local_hostname* -** descrizione: pass:none[nome host/IP locale definito per il server (opzionale, se vuoto viene usato il nome host locale)] -** tipo: stringa -** valori: qualsiasi stringa -** valore predefinito: `+""+` - -* [[option_irc.server_default.msg_kick]] *irc.server_default.msg_kick* -** descrizione: pass:none[default kick message used by commands "/kick" and "/kickban" (note: content is evaluated, see /help eval; special variables ${nick} (self nick), ${target} (target nick), ${channel} and ${server} are replaced by their values)] -** tipo: stringa -** valori: qualsiasi stringa -** valore predefinito: `+""+` - -* [[option_irc.server_default.msg_part]] *irc.server_default.msg_part* -** descrizione: pass:none[default part message (leaving channel) (note: content is evaluated, see /help eval; special variables ${nick}, ${channel} and ${server} are replaced by their values; "%v" is replaced by WeeChat version if there is no ${...} in string)] -** tipo: stringa -** valori: qualsiasi stringa -** valore predefinito: `+"WeeChat ${info:version}"+` - -* [[option_irc.server_default.msg_quit]] *irc.server_default.msg_quit* -** descrizione: pass:none[default quit message (disconnecting from server) (note: content is evaluated, see /help eval; special variables ${nick}, ${channel} and ${server} are replaced by their values; "%v" is replaced by WeeChat version if there is no ${...} in string)] -** tipo: stringa -** valori: qualsiasi stringa -** valore predefinito: `+"WeeChat ${info:version}"+` - -* [[option_irc.server_default.nicks]] *irc.server_default.nicks* -** descrizione: pass:none[nicknames to use on server (separated by comma) (note: content is evaluated, see /help eval; server options are evaluated with ${irc_server.xxx} and ${server} is replaced by the server name)] -** tipo: stringa -** valori: qualsiasi stringa -** valore predefinito: `+""+` - -* [[option_irc.server_default.nicks_alternate]] *irc.server_default.nicks_alternate* -** descrizione: pass:none[get an alternate nick when all the declared nicks are already used on server: add some "_" until the nick has a length of 9, and then replace last char (or the two last chars) by a number from 1 to 99, until we find a nick not used on server] -** tipo: bool -** valori: on, off -** valore predefinito: `+on+` - -* [[option_irc.server_default.notify]] *irc.server_default.notify* -** descrizione: pass:none[elenco notifiche per il server (si consiglia di non cambiare questa opzione ma di usare il comando /notify)] -** tipo: stringa -** valori: qualsiasi stringa -** valore predefinito: `+""+` - -* [[option_irc.server_default.password]] *irc.server_default.password* -** descrizione: pass:none[password for server (note: content is evaluated, see /help eval; server options are evaluated with ${irc_server.xxx} and ${server} is replaced by the server name)] -** tipo: stringa -** valori: qualsiasi stringa -** valore predefinito: `+""+` - -* [[option_irc.server_default.proxy]] *irc.server_default.proxy* -** descrizione: pass:none[nome del proxy usato per questo server (opzionale, il proxy deve essere definito con il comando /proxy)] -** tipo: stringa -** valori: qualsiasi stringa -** valore predefinito: `+""+` - -* [[option_irc.server_default.realname]] *irc.server_default.realname* -** descrizione: pass:none[real name to use on server (note: content is evaluated, see /help eval; server options are evaluated with ${irc_server.xxx} and ${server} is replaced by the server name)] -** tipo: stringa -** valori: qualsiasi stringa -** valore predefinito: `+""+` - -* [[option_irc.server_default.sasl_fail]] *irc.server_default.sasl_fail* -** descrizione: pass:none[action to perform if SASL authentication fails: "continue" to ignore the authentication problem, "reconnect" to schedule a reconnection to the server, "disconnect" to disconnect from server (see also option irc.network.sasl_fail_unavailable)] -** tipo: intero -** valori: continue, reconnect, disconnect -** valore predefinito: `+reconnect+` - -* [[option_irc.server_default.sasl_key]] *irc.server_default.sasl_key* -** descrizione: pass:none[file with ECC private key for mechanism "ecdsa-nist256p-challenge" (path is evaluated, see function string_eval_path_home in plugin API reference)] -** tipo: stringa -** valori: qualsiasi stringa -** valore predefinito: `+""+` - -* [[option_irc.server_default.sasl_mechanism]] *irc.server_default.sasl_mechanism* -** descrizione: pass:none[mechanism for SASL authentication: "plain" for plain text password, "scram-sha-1" for SCRAM authentication with SHA-1 digest algorithm, "scram-sha-256" for SCRAM authentication with SHA-256 digest algorithm, "scram-sha-512" for SCRAM authentication with SHA-512 digest algorithm, "ecdsa-nist256p-challenge" for key-based challenge authentication, "external" for authentication using client side SSL certificate] -** tipo: intero -** valori: plain, scram-sha-1, scram-sha-256, scram-sha-512, ecdsa-nist256p-challenge, external -** valore predefinito: `+plain+` - -* [[option_irc.server_default.sasl_password]] *irc.server_default.sasl_password* -** descrizione: pass:none[password for SASL authentication; this option is not used for mechanisms "ecdsa-nist256p-challenge" and "external" (note: content is evaluated, see /help eval; server options are evaluated with ${irc_server.xxx} and ${server} is replaced by the server name)] -** tipo: stringa -** valori: qualsiasi stringa -** valore predefinito: `+""+` - -* [[option_irc.server_default.sasl_timeout]] *irc.server_default.sasl_timeout* -** descrizione: pass:none[timeout (in secondi) prima di annullare l'autenticazione SASL] -** tipo: intero -** valori: 1 .. 3600 -** valore predefinito: `+15+` - -* [[option_irc.server_default.sasl_username]] *irc.server_default.sasl_username* -** descrizione: pass:none[username for SASL authentication; this option is not used for mechanism "external" (note: content is evaluated, see /help eval; server options are evaluated with ${irc_server.xxx} and ${server} is replaced by the server name)] -** tipo: stringa -** valori: qualsiasi stringa -** valore predefinito: `+""+` - -* [[option_irc.server_default.split_msg_max_length]] *irc.server_default.split_msg_max_length* -** descrizione: pass:none[split outgoing IRC messages to fit in this number of chars; the default value is 512, this is a safe and recommended value; value 0 disables the split (not recommended, unless you know what you do); allowed values are 0 or any integer between 128 and 4096; this option should be changed only on non-standard IRC servers, for example gateways like bitlbee] -** tipo: intero -** valori: 0 .. 4096 -** valore predefinito: `+512+` - -* [[option_irc.server_default.ssl]] *irc.server_default.ssl* -** descrizione: pass:none[usa SSL per le comunicazioni col server] -** tipo: bool -** valori: on, off -** valore predefinito: `+off+` - -* [[option_irc.server_default.ssl_cert]] *irc.server_default.ssl_cert* -** descrizione: pass:none[SSL certificate file used to automatically identify your nick (path is evaluated, see function string_eval_path_home in plugin API reference)] -** tipo: stringa -** valori: qualsiasi stringa -** valore predefinito: `+""+` - -* [[option_irc.server_default.ssl_dhkey_size]] *irc.server_default.ssl_dhkey_size* -** descrizione: pass:none[dimensione della chiave usata durante lo Scambio Chiavi Diffie-Hellman] -** tipo: intero -** valori: 0 .. 2147483647 -** valore predefinito: `+2048+` - -* [[option_irc.server_default.ssl_fingerprint]] *irc.server_default.ssl_fingerprint* -** descrizione: pass:none[fingerprint of certificate which is trusted and accepted for the server; only hexadecimal digits are allowed (0-9, a-f): 128 chars for SHA-512, 64 chars for SHA-256, 40 chars for SHA-1 (insecure, not recommended); many fingerprints can be separated by commas; if this option is set, the other checks on certificates are NOT performed (option "ssl_verify") (note: content is evaluated, see /help eval; server options are evaluated with ${irc_server.xxx} and ${server} is replaced by the server name)] -** tipo: stringa -** valori: qualsiasi stringa -** valore predefinito: `+""+` - -* [[option_irc.server_default.ssl_password]] *irc.server_default.ssl_password* -** descrizione: pass:none[password for SSL certificate's private key; only used with gnutls version >= 3.1.0 (note: content is evaluated, see /help eval; server options are evaluated with ${irc_server.xxx} and ${server} is replaced by the server name)] -** tipo: stringa -** valori: qualsiasi stringa -** valore predefinito: `+""+` - -* [[option_irc.server_default.ssl_priorities]] *irc.server_default.ssl_priorities* -** descrizione: pass:none[stringa con le priorità per gnutls (per la sintassi, consultare la documentazione per la funzione gnutls_priority_init nel manuale di gnutls, stringhe comuni sono: "PERFORMANCE", "NORMAL", "SECURE128", "SECURE256", "EXPORT", "NONE")] -** tipo: stringa -** valori: qualsiasi stringa -** valore predefinito: `+"NORMAL:-VERS-SSL3.0"+` - -* [[option_irc.server_default.ssl_verify]] *irc.server_default.ssl_verify* -** descrizione: pass:none[verifica che la connessione SSL sia totalmente fidata] -** tipo: bool -** valori: on, off -** valore predefinito: `+on+` - -* [[option_irc.server_default.usermode]] *irc.server_default.usermode* -** descrizione: pass:none[user mode(s) to set after connection to server and before executing command and the auto-join of channels; examples: "+R" (to set mode "R"), "+R-i" (to set mode "R" and remove "i"); see /help mode for the complete mode syntax (note: content is evaluated, see /help eval; server options are evaluated with ${irc_server.xxx} and ${server} is replaced by the server name)] -** tipo: stringa -** valori: qualsiasi stringa -** valore predefinito: `+""+` - -* [[option_irc.server_default.username]] *irc.server_default.username* -** descrizione: pass:none[user name to use on server (note: content is evaluated, see /help eval; server options are evaluated with ${irc_server.xxx} and ${server} is replaced by the server name)] -** tipo: stringa -** valori: qualsiasi stringa -** valore predefinito: `+""+` -// end::irc_options[] - -// tag::relay_options[] -* [[option_relay.color.client]] *relay.color.client* -** descrizione: pass:none[colore del testo per la descrizione del client] -** 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_relay.color.status_active]] *relay.color.status_active* -** descrizione: pass:none[colore del testo per lo status "connesso"] -** 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_relay.color.status_auth_failed]] *relay.color.status_auth_failed* -** descrizione: pass:none[colore del testo per lo status "autenticazione fallita"] -** 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_relay.color.status_connecting]] *relay.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: `+white+` - -* [[option_relay.color.status_disconnected]] *relay.color.status_disconnected* -** descrizione: pass:none[colore del testo per lo status "disconnesso"] -** 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_relay.color.status_waiting_auth]] *relay.color.status_waiting_auth* -** descrizione: pass:none[colore del testo per lo status "in attesa dell'autenticazione"] -** 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_relay.color.text]] *relay.color.text* -** descrizione: pass:none[colore del testo nei buffer relay] -** 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_relay.color.text_bg]] *relay.color.text_bg* -** descrizione: pass:none[colore di sfondo nel buffer relay] -** 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_relay.color.text_selected]] *relay.color.text_selected* -** descrizione: pass:none[colore del testo della riga selezionata nel buffer relay] -** 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_relay.irc.backlog_max_minutes]] *relay.irc.backlog_max_minutes* -** descrizione: pass:none[numero massimo di minuti nella cronologia per canale IRC (0 = nessun limite, esempi: 1440 = un giorno, 10000 = una settimana; 43200 = un mese, 525600 = un anno)] -** tipo: intero -** valori: 0 .. 2147483647 -** valore predefinito: `+0+` - -* [[option_relay.irc.backlog_max_number]] *relay.irc.backlog_max_number* -** descrizione: pass:none[numero massimo di righe nella cronologia per canale IRC (0 = nessun limite)] -** tipo: intero -** valori: 0 .. 2147483647 -** valore predefinito: `+1024+` - -* [[option_relay.irc.backlog_since_last_disconnect]] *relay.irc.backlog_since_last_disconnect* -** descrizione: pass:none[mostra la cronologia a partire dall'ultima disconnessione del client] -** tipo: bool -** valori: on, off -** valore predefinito: `+on+` - -* [[option_relay.irc.backlog_since_last_message]] *relay.irc.backlog_since_last_message* -** descrizione: pass:none[display backlog starting from your last message] -** tipo: bool -** valori: on, off -** valore predefinito: `+off+` - -* [[option_relay.irc.backlog_tags]] *relay.irc.backlog_tags* -** descrizione: pass:none[comma-separated list of messages tags which are displayed in backlog per IRC channel (supported tags: "irc_join", "irc_part", "irc_quit", "irc_nick", "irc_privmsg"), "*" = all supported tags] -** tipo: stringa -** valori: qualsiasi stringa -** valore predefinito: `+"irc_privmsg"+` - -* [[option_relay.irc.backlog_time_format]] *relay.irc.backlog_time_format* -** descrizione: pass:none[format for time in backlog messages (see man strftime for format) (not used if server capability "server-time" was enabled by client, because time is sent as irc tag); empty string = disable time in backlog messages] -** tipo: stringa -** valori: qualsiasi stringa -** valore predefinito: `+"[%H:%M] "+` - -* [[option_relay.look.auto_open_buffer]] *relay.look.auto_open_buffer* -** descrizione: pass:none[apre automaticamente il buffer relay alla connessione di un nuovo client] -** tipo: bool -** valori: on, off -** valore predefinito: `+on+` - -* [[option_relay.look.raw_messages]] *relay.look.raw_messages* -** descrizione: pass:none[numero di messaggi raw da salvare in memoria quando il buffer dei dati raw viene chiuso (i messaggi verranno visualizzati all'apertura del buffer dei dati raw)] -** tipo: intero -** valori: 0 .. 65535 -** valore predefinito: `+256+` - -* [[option_relay.network.allow_empty_password]] *relay.network.allow_empty_password* -** descrizione: pass:none[allow empty password in relay (it should be enabled only for tests or local network)] -** tipo: bool -** valori: on, off -** valore predefinito: `+off+` - -* [[option_relay.network.allowed_ips]] *relay.network.allowed_ips* -** descrizione: pass:none[POSIX extended regular expression with IPs allowed to use relay (case insensitive, use "(?-i)" at beginning to make it case sensitive), example: "^(123\.45\.67\.89|192\.160\..*)$"] -** tipo: stringa -** valori: qualsiasi stringa -** valore predefinito: `+""+` - -* [[option_relay.network.auth_timeout]] *relay.network.auth_timeout* -** descrizione: pass:none[timeout (in seconds) for client authentication: connection is closed if the client is still not authenticated after this delay and the client status is set to "authentication failed" (0 = wait forever)] -** tipo: intero -** valori: 0 .. 2147483647 -** valore predefinito: `+60+` - -* [[option_relay.network.bind_address]] *relay.network.bind_address* -** descrizione: pass:none[indirizzo per l'associazione (se vuoto, la connessione è possibile su tutte le interfacce, usare "127.0.0.1" per consentire le connessioni solo dalla macchina locale)] -** tipo: stringa -** valori: qualsiasi stringa -** valore predefinito: `+""+` - -* [[option_relay.network.clients_purge_delay]] *relay.network.clients_purge_delay* -** descrizione: pass:none[delay for purging disconnected clients (in minutes, 0 = purge clients immediately, -1 = never purge)] -** tipo: intero -** valori: -1 .. 43200 -** valore predefinito: `+0+` - -* [[option_relay.network.compression]] *relay.network.compression* -** descrizione: pass:none[compression of messages sent to clients with "weechat" protocol: 0 = disable compression, 1 = low compression / fast ... 100 = best compression / slow; the value is a percentage converted to 1-9 for zlib and 1-19 for zstd; the default value is recommended, it offers a good compromise between compression and speed] -** tipo: intero -** valori: 0 .. 100 -** valore predefinito: `+20+` - -* [[option_relay.network.ipv6]] *relay.network.ipv6* -** descrizione: pass:none[listen on IPv6 socket by default (in addition to IPv4 which is default); protocols IPv4 and IPv6 can be forced (individually or together) in the protocol name (see /help relay)] -** tipo: bool -** valori: on, off -** valore predefinito: `+on+` - -* [[option_relay.network.max_clients]] *relay.network.max_clients* -** descrizione: pass:none[maximum number of clients connecting to a port (0 = no limit)] -** tipo: intero -** valori: 0 .. 2147483647 -** valore predefinito: `+5+` - -* [[option_relay.network.nonce_size]] *relay.network.nonce_size* -** descrizione: pass:none[size of nonce (in bytes), generated when a client connects; the client must use this nonce, concatenated to the client nonce and the password when hashing the password in the "init" command of the weechat protocol] -** tipo: intero -** valori: 8 .. 128 -** valore predefinito: `+16+` - -* [[option_relay.network.password]] *relay.network.password* -** descrizione: pass:none[password required by clients to access this relay (empty value means no password required, see option relay.network.allow_empty_password) (note: content is evaluated, see /help eval)] -** tipo: stringa -** valori: qualsiasi stringa -** valore predefinito: `+""+` - -* [[option_relay.network.password_hash_algo]] *relay.network.password_hash_algo* -** descrizione: pass:none[comma separated list of hash algorithms used for password authentication in weechat protocol, among these values: "plain" (password in plain text, not hashed), "sha256", "sha512", "pbkdf2+sha256", "pbkdf2+sha512"), "*" means all algorithms, a name beginning with "!" is a negative value to prevent an algorithm from being used, wildcard "*" is allowed in names (examples: "*", "pbkdf2*", "*,!plain")] -** tipo: stringa -** valori: qualsiasi stringa -** valore predefinito: `+"*"+` - -* [[option_relay.network.password_hash_iterations]] *relay.network.password_hash_iterations* -** descrizione: pass:none[number of iterations asked to the client in weechat protocol when a hashed password with algorithm PBKDF2 is used for authentication; more iterations is better in term of security but is slower to compute; this number should not be too high if your CPU is slow] -** tipo: intero -** valori: 1 .. 1000000 -** valore predefinito: `+100000+` - -* [[option_relay.network.ssl_cert_key]] *relay.network.ssl_cert_key* -** descrizione: pass:none[file with SSL certificate and private key (for serving clients with SSL) (path is evaluated, see function string_eval_path_home in plugin API reference)] -** tipo: stringa -** valori: qualsiasi stringa -** valore predefinito: `+"${weechat_config_dir}/ssl/relay.pem"+` - -* [[option_relay.network.ssl_priorities]] *relay.network.ssl_priorities* -** descrizione: pass:none[stringa con le priorità per gnutls (per la sintassi, consultare la documentazione per la funzione gnutls_priority_init nel manuale di gnutls, stringhe comuni sono: "PERFORMANCE", "NORMAL", "SECURE128", "SECURE256", "EXPORT", "NONE")] -** tipo: stringa -** valori: qualsiasi stringa -** valore predefinito: `+"NORMAL:-VERS-SSL3.0"+` - -* [[option_relay.network.totp_secret]] *relay.network.totp_secret* -** descrizione: pass:none[secret for the generation of the Time-based One-Time Password (TOTP), encoded in base32 (only letters and digits from 2 to 7); it is used as second factor in weechat protocol, in addition to the password, which must not be empty (empty value means no TOTP is required) (note: content is evaluated, see /help eval)] -** tipo: stringa -** valori: qualsiasi stringa -** valore predefinito: `+""+` - -* [[option_relay.network.totp_window]] *relay.network.totp_window* -** descrizione: pass:none[number of Time-based One-Time Passwords to accept before and after the current one: 0 = accept only the current password, 1 = accept one password before, the current, and one after, 2 = accept two passwords before, the current, and two after, ...; a high number reduces the security level (0 or 1 are recommended values)] -** tipo: intero -** valori: 0 .. 256 -** valore predefinito: `+0+` - -* [[option_relay.network.websocket_allowed_origins]] *relay.network.websocket_allowed_origins* -** descrizione: pass:none[POSIX extended regular expression with origins allowed in websockets (case insensitive, use "(?-i)" at beginning to make it case sensitive), example: "^https?://(www\.)?example\.(com|org)"] -** tipo: stringa -** valori: qualsiasi stringa -** valore predefinito: `+""+` - -* [[option_relay.weechat.commands]] *relay.weechat.commands* -** descrizione: pass:none[comma-separated list of commands allowed/denied when input data (text or command) is received from a client; "*" means any command, a name beginning with "!" is a negative value to prevent a command from being executed, wildcard "*" is allowed in names; this option should be set if the relay client is not safe (someone could use it to run commands); for example "*,!exec,!quit" allows any command except /exec and /quit] -** tipo: stringa -** valori: qualsiasi stringa -** 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] -** tipo: bool -** valori: on, off -** valore predefinito: `+off+` - -* [[option_ruby.look.eval_keep_context]] *ruby.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::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")] -** 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_script.color.status_held]] *script.color.status_held* -** descrizione: pass:none[colore per lo status "bloccato" ("H")] -** 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_script.color.status_installed]] *script.color.status_installed* -** descrizione: pass:none[colore per lo status "installato" ("i")] -** 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_script.color.status_obsolete]] *script.color.status_obsolete* -** descrizione: pass:none[colore per lo status "obsoleto" ("N")] -** 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_script.color.status_popular]] *script.color.status_popular* -** descrizione: pass:none[colore per lo status "popolare" ("*")] -** 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_script.color.status_running]] *script.color.status_running* -** descrizione: pass:none[colore per lo status "in esecuzione" ("r")] -** 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_script.color.status_unknown]] *script.color.status_unknown* -** descrizione: pass:none[colore per lo status "sconosciuto" ("?")] -** 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_script.color.text]] *script.color.text* -** descrizione: pass:none[colore del testo nel buffer degli script] -** 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_script.color.text_bg]] *script.color.text_bg* -** descrizione: pass:none[colore di sfondo nel buffer degli script] -** 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_script.color.text_bg_selected]] *script.color.text_bg_selected* -** descrizione: pass:none[colore di sfondo per la riga selezionata nel buffer degli script] -** 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_script.color.text_date]] *script.color.text_date* -** descrizione: pass:none[colore del testo delle date nel buffer degli script] -** 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_script.color.text_date_selected]] *script.color.text_date_selected* -** descrizione: pass:none[colore del testo delle date per la riga selezionata nel buffer degli script] -** 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_script.color.text_delimiters]] *script.color.text_delimiters* -** descrizione: pass:none[colore del testo dei delimitatori nel buffer degli script] -** 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_script.color.text_description]] *script.color.text_description* -** descrizione: pass:none[colore del testo della descrizione nel buffer degli script] -** 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_script.color.text_description_selected]] *script.color.text_description_selected* -** descrizione: pass:none[colore del testo della descrizione per la riga selezionata nel buffer degli script] -** 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_script.color.text_extension]] *script.color.text_extension* -** descrizione: pass:none[colore del testo dell'estensione nel buffer degli script] -** 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_script.color.text_extension_selected]] *script.color.text_extension_selected* -** descrizione: pass:none[colore del testo dell'estensione per la riga selezionata nel buffer degli script] -** 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_script.color.text_name]] *script.color.text_name* -** descrizione: pass:none[colore del testo del nome dello script nel buffer degli script] -** 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_script.color.text_name_selected]] *script.color.text_name_selected* -** descrizione: pass:none[colore del testo del nome dello script per la riga selezionata nel buffer degli script] -** 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_script.color.text_selected]] *script.color.text_selected* -** descrizione: pass:none[colore del testo della riga selezionata nel buffer degli script] -** 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_script.color.text_tags]] *script.color.text_tags* -** descrizione: pass:none[colore del testo dei tag nel buffer degli script] -** 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_script.color.text_tags_selected]] *script.color.text_tags_selected* -** descrizione: pass:none[colore del testo dei tag per la riga selezionata nel buffer degli script] -** 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_script.color.text_version]] *script.color.text_version* -** descrizione: pass:none[colore del testo della versione nel buffer degli script] -** 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_script.color.text_version_loaded]] *script.color.text_version_loaded* -** descrizione: pass:none[colore del testo della versione caricata nel buffer degli script] -** 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_script.color.text_version_loaded_selected]] *script.color.text_version_loaded_selected* -** descrizione: pass:none[colore del testo della versione attiva per la riga selezionata nel buffer degli script] -** 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_script.color.text_version_selected]] *script.color.text_version_selected* -** descrizione: pass:none[colore del testo della versione per la riga selezionata nel buffer degli script] -** 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_script.look.columns]] *script.look.columns* -** descrizione: pass:none[format of columns displayed in script buffer: following column identifiers are replaced by their values: %a=author, %d=description, %D=date added, %e=extension, %l=language, %L=license, %n=name with extension, %N=name, %r=requirements, %s=status, %t=tags, %u=date updated, %v=version, %V=version loaded, %w=min_weechat, %W=max_weechat)] -** tipo: stringa -** valori: qualsiasi stringa -** valore predefinito: `+"%s %n %V %v %u | %d | %t"+` - -* [[option_script.look.diff_color]] *script.look.diff_color* -** descrizione: pass:none[colora l'output di diff] -** tipo: bool -** valori: on, off -** valore predefinito: `+on+` - -* [[option_script.look.diff_command]] *script.look.diff_command* -** descrizione: pass:none[comando usato per mostrare le differenze tra lo script installato e la nuova versione nel repository ("auto" = rileva automaticamente il comando diff (git o diff), valore vuoto = disabilita diff, altra stringa = nome del comando, ad esempio "diff")] -** tipo: stringa -** valori: qualsiasi stringa -** valore predefinito: `+"auto"+` - -* [[option_script.look.display_source]] *script.look.display_source* -** descrizione: pass:none[mostra il codice sorgente dello script sul buffer ed i relativi dettagli (lo script viene scaricato in un file temporaneo)] -** tipo: bool -** valori: on, off -** valore predefinito: `+on+` - -* [[option_script.look.quiet_actions]] *script.look.quiet_actions* -** descrizione: pass:none[quiet actions on script buffer: do not display messages on core buffer when scripts are installed/removed/loaded/unloaded (only errors are displayed)] -** tipo: bool -** valori: on, off -** valore predefinito: `+on+` - -* [[option_script.look.sort]] *script.look.sort* -** descrizione: pass:none[default sort keys for scripts: comma-separated list of identifiers: a=author, A=autoloaded, d=date added, e=extension, i=installed, l=language, n=name, o=obsolete, p=popularity, r=running, u=date updated; char "-" can be used before identifier to reverse order; example: "i,u": installed scripts first, sorted by update date] -** tipo: stringa -** valori: qualsiasi stringa -** valore predefinito: `+"i,p,n"+` - -* [[option_script.look.translate_description]] *script.look.translate_description* -** descrizione: pass:none[translate description of scripts (if translation is available in your language, otherwise English version is used)] -** tipo: bool -** valori: on, off -** valore predefinito: `+on+` - -* [[option_script.look.use_keys]] *script.look.use_keys* -** descrizione: pass:none[use keys alt+X in script buffer to do actions on scripts (alt+i = install, alt+r = remove, ...); if disabled, only the input is allowed: i, r, ...] -** tipo: bool -** valori: on, off -** valore predefinito: `+on+` - -* [[option_script.scripts.autoload]] *script.scripts.autoload* -** descrizione: pass:none[autoload scripts installed (make a link in "autoload" directory to script in parent directory)] -** tipo: bool -** valori: on, off -** valore predefinito: `+on+` - -* [[option_script.scripts.cache_expire]] *script.scripts.cache_expire* -** descrizione: pass:none[local cache expiration time, in minutes (-1 = never expires, 0 = always expire)] -** tipo: intero -** valori: -1 .. 525600 -** valore predefinito: `+1440+` - -* [[option_script.scripts.download_enabled]] *script.scripts.download_enabled* -** descrizione: pass:none[enable download of files from the scripts repository when the /script command is used (list of scripts and scripts themselves); the list of scripts is downloaded from the URL specified in the option script.scripts.url; WeeChat will sometimes download again the list of scripts when you use the /script command, even if you don't install a script] -** tipo: bool -** valori: on, off -** valore predefinito: `+off+` - -* [[option_script.scripts.download_timeout]] *script.scripts.download_timeout* -** descrizione: pass:none[timeout (in seconds) for download of scripts and list of scripts] -** tipo: intero -** valori: 1 .. 3600 -** valore predefinito: `+30+` - -* [[option_script.scripts.hold]] *script.scripts.hold* -** descrizione: pass:none[scripts to "hold": comma-separated list of scripts which will never been upgraded and can not be removed, for example: "go.py,urlserver.py"] -** tipo: stringa -** valori: qualsiasi stringa -** valore predefinito: `+""+` - -* [[option_script.scripts.path]] *script.scripts.path* -** descrizione: pass:none[local cache directory for scripts (path is evaluated, see function string_eval_path_home in plugin API reference)] -** tipo: stringa -** valori: qualsiasi stringa -** valore predefinito: `+"${weechat_cache_dir}/script"+` - -* [[option_script.scripts.url]] *script.scripts.url* -** descrizione: pass:none[URL for file with list of scripts] -** tipo: stringa -** valori: qualsiasi stringa -** 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+` - -* [[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_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: `+default+` - -* [[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_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_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: `+brown+` - -* [[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: `+yellow+` - -* [[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: `+white+` - -* [[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: `+white+` - -* [[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: `+default+` - -* [[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: `+white+` - -* [[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: `+darkgray+` - -* [[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_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: `+cyan+` - -* [[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: `+lightcyan+` - -* [[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: `+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)] -** 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)] -** 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+` - -* [[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: `+red+` - -* [[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: `+brown+` - -* [[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_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: `+default+` - -* [[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: `+white+` - -* [[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: `+default+` - -* [[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: `+white+` - -* [[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: `+default+` - -* [[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: `+brown+` - -* [[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: `+yellow+` - -* [[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: `+white+` - -* [[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: `+default+` - -* [[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: `+brown+` - -* [[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: `+yellow+` - -* [[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: `+white+` - -* [[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: `+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] -** 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_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: `+cyan+` - -* [[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: `+lightcyan+` - -* [[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: `+darkgray+` - -* [[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: `+default+` - -* [[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_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: `+default+` - -* [[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_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: `+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] -** 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] -** 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.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_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: `+white+` - -* [[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: `+cyan+` - -* [[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: `+lightcyan+` - -* [[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_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: `+lightgreen+` - -* [[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: `+white+` - -* [[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: `+green+` - -* [[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: `+lightgreen+` - -* [[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: `+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] -** 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.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: `+cyan+` - -* [[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: `+brown+` - -* [[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: `+yellow+` - -* [[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: `+lightcyan+` - -* [[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: `+magenta+` - -* [[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: `+lightmagenta+` - -* [[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: `+"# ${description2}"+` - -* [[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: `+"/set ${name} ${quoted_value}"+` - -* [[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: `+"/unset ${name}"+` - -* [[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: `+""+` - -* [[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: `+"${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* -** 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: `+"*"+` - -* [[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: `+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] -** tipo: stringa -** valori: qualsiasi stringa -** valore predefinito: `+"${count} >= 1"+` - -* [[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_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 .. 2 -** valore predefinito: `+1+` - -* [[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: `+"*"+` - -* [[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 .. 100 -** valore predefinito: `+10+` - -* [[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_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_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: `+" "+` - -* [[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_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_fset.look.use_mute]] *fset.look.use_mute* -** descrizione: pass:none[use /mute command to set options] -** tipo: bool -** valori: on, off -** valore predefinito: `+off+` -// end::fset_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 [[;...]] addcompletion [[;...]] del [...] + rename 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,6 +3,2264 @@ // DO NOT EDIT BY HAND! // +// 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},"+` + +* [[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+` + +* [[option_buflist.look.auto_scroll]] *buflist.look.auto_scroll* +** 説明: pass:none[現在のバッファが常にバーの中に表示されるように自動的にバッファリストバーをスクロールします (この機能はフィリングが "vertical" に設定された左右にあるバーでのみ機能します); 設定値は現在のバーよりも前に表示される行数のパーセント値です (-1 = 自動スクロールを無効化); 例えば値を 50 に設定した場合、現在のバッファがバーの中央に位置するように自動スクロールされます。0 に設定した場合はバーの最初、100 に設定した場合はバーの最後を意味します] +** タイプ: 整数 +** 値: -1 .. 100 +** デフォルト値: `+50+` + +* [[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_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+` + +* [[option_buflist.look.nick_prefix_empty]] *buflist.look.nick_prefix_empty* +** 説明: pass:none[ニックネームプレフィックスが有効化された状態で、そのバッファで対象のニックネームにプレフィックスが付かない場合に、プレフィックスの代わりに空白を表示します] +** タイプ: ブール +** 値: 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] +** タイプ: 整数 +** 値: 1 .. 3 +** デフォルト値: `+1+` +// end::buflist_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[] + +// 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 +** デフォルト値: `+lightred+` + +* [[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 +** デフォルト値: `+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[] + +// 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)] +** タイプ: 文字列 +** 値: 未制約文字列 +** デフォルト値: `+"${weechat_runtime_dir}/weechat_fifo_${info:pid}"+` +// end::fifo_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+` + +* [[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_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 +** デフォルト値: `+default+` + +* [[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_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_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 +** デフォルト値: `+brown+` + +* [[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 +** デフォルト値: `+yellow+` + +* [[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 +** デフォルト値: `+white+` + +* [[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 +** デフォルト値: `+white+` + +* [[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 +** デフォルト値: `+default+` + +* [[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 +** デフォルト値: `+white+` + +* [[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 +** デフォルト値: `+darkgray+` + +* [[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_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 +** デフォルト値: `+cyan+` + +* [[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 +** デフォルト値: `+lightcyan+` + +* [[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 +** デフォルト値: `+default+` + +* [[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_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 +** デフォルト値: `+blue+` + +* [[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 +** デフォルト値: `+red+` + +* [[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 +** デフォルト値: `+brown+` + +* [[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_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 +** デフォルト値: `+default+` + +* [[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 +** デフォルト値: `+white+` + +* [[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 +** デフォルト値: `+default+` + +* [[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 +** デフォルト値: `+white+` + +* [[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 +** デフォルト値: `+default+` + +* [[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 +** デフォルト値: `+brown+` + +* [[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 +** デフォルト値: `+yellow+` + +* [[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 +** デフォルト値: `+white+` + +* [[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 +** デフォルト値: `+default+` + +* [[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 +** デフォルト値: `+brown+` + +* [[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 +** デフォルト値: `+yellow+` + +* [[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 +** デフォルト値: `+white+` + +* [[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 +** デフォルト値: `+default+` + +* [[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 +** デフォルト値: `+white+` + +* [[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 +** デフォルト値: `+cyan+` + +* [[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 +** デフォルト値: `+lightcyan+` + +* [[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 +** デフォルト値: `+darkgray+` + +* [[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 +** デフォルト値: `+default+` + +* [[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_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 +** デフォルト値: `+default+` + +* [[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_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 +** デフォルト値: `+brown+` + +* [[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 +** デフォルト値: `+yellow+` + +* [[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 +** デフォルト値: `+white+` + +* [[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_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 +** デフォルト値: `+white+` + +* [[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 +** デフォルト値: `+cyan+` + +* [[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 +** デフォルト値: `+lightcyan+` + +* [[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_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 +** デフォルト値: `+lightgreen+` + +* [[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 +** デフォルト値: `+white+` + +* [[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 +** デフォルト値: `+green+` + +* [[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 +** デフォルト値: `+lightgreen+` + +* [[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 +** デフォルト値: `+default+` + +* [[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 +** デフォルト値: `+white+` + +* [[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 +** デフォルト値: `+cyan+` + +* [[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 +** デフォルト値: `+brown+` + +* [[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 +** デフォルト値: `+yellow+` + +* [[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 +** デフォルト値: `+lightcyan+` + +* [[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 +** デフォルト値: `+magenta+` + +* [[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 +** デフォルト値: `+lightmagenta+` + +* [[option_fset.format.export_help]] *fset.format.export_help* +** 説明: pass:none[オプションをファイルへエクスポートする際に使うヘルプ行の書式 (注意: 値は評価されます、/help fset を参照してください)] +** タイプ: 文字列 +** 値: 未制約文字列 +** デフォルト値: `+"# ${description2}"+` + +* [[option_fset.format.export_option]] *fset.format.export_option* +** 説明: pass:none[オプションをファイルへエクスポートする際に使うオプションの書式 (注意: 値は評価されます、/help fset を参照してください)] +** タイプ: 文字列 +** 値: 未制約文字列 +** デフォルト値: `+"/set ${name} ${quoted_value}"+` + +* [[option_fset.format.export_option_null]] *fset.format.export_option_null* +** 説明: pass:none[オプション値が "null" の場合に、そのオプションをファイルへエクスポートする際に使うオプションの書式 (注意: 値は評価されます、/help fset を参照してください)] +** タイプ: 文字列 +** 値: 未制約文字列 +** デフォルト値: `+"/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_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] +** タイプ: 文字列 +** 値: 未制約文字列 +** デフォルト値: `+"${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_fset.look.auto_unmark]] *fset.look.auto_unmark* +** 説明: pass:none[マーク済みオプションに対する操作の後または再読込の後に自動的にすべてのオプションをアンマーク] +** タイプ: ブール +** 値: 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 コマンドと一緒に使われます] +** タイプ: 文字列 +** 値: 未制約文字列 +** デフォルト値: `+"${count} >= 1"+` + +* [[option_fset.look.export_help_default]] *fset.look.export_help_default* +** 説明: pass:none[デフォルトでエクスポートされた各オプションのヘルプを書き込む (コマンド /fset -export の引数 "-help" と "-nohelp" を使えばこの設定を上書きできます)] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+on+` + +* [[option_fset.look.format_number]] *fset.look.format_number* +** 説明: pass:none[オプションを表示する際に使う書式番号; この値は fset バッファで ctrl-X キーを押すことで動的に変化します] +** タイプ: 整数 +** 値: 1 .. 2 +** デフォルト値: `+1+` + +* [[option_fset.look.marked_string]] *fset.look.marked_string* +** 説明: pass:none[オプションをマークする際に表示される文字列 (マークは何らかの操作を複数のオプションに対して行う際に用います)] +** タイプ: 文字列 +** 値: 未制約文字列 +** デフォルト値: `+"*"+` + +* [[option_fset.look.scroll_horizontal]] *fset.look.scroll_horizontal* +** 説明: pass:none[fset バッファの左右スクロール量 (横幅の割合)] +** タイプ: 整数 +** 値: 1 .. 100 +** デフォルト値: `+10+` + +* [[option_fset.look.show_plugins_desc]] *fset.look.show_plugins_desc* +** 説明: pass:none[プラグイン説明オプションを表示 (plugins.desc.*)] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+off+` + +* [[option_fset.look.sort]] *fset.look.sort* +** 説明: pass:none[ソートオプションのコンマ区切りリスト (フィールドのリストは /help fset を参照してください); フィールドの先頭に "-" 文字を付けることでソート順を逆にすることも可能です。大文字小文字を区別せずに比較を行うには "~" 文字を使います; 例: "-~name" オプション名を基準に大文字小文字を区別せずにソートして、順番を逆にします] +** タイプ: 文字列 +** 値: 未制約文字列 +** デフォルト値: `+"~name"+` + +* [[option_fset.look.unmarked_string]] *fset.look.unmarked_string* +** 説明: pass:none[オプションがマークされていない場合に表示される文字列] +** タイプ: 文字列 +** 値: 未制約文字列 +** デフォルト値: `+" "+` + +* [[option_fset.look.use_color_value]] *fset.look.use_color_value* +** 説明: pass:none[色オプションの値を表示する際に使う色] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+off+` + +* [[option_fset.look.use_keys]] *fset.look.use_keys* +** 説明: pass:none[fset バッファ内でオプションに対する操作を行う際に alt+X を使う; これを無効化する場合、操作時にコマンド入力が必要になります] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+on+` + +* [[option_fset.look.use_mute]] *fset.look.use_mute* +** 説明: pass:none[オプション設定時に /mute コマンドを使う] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+off+` +// end::fset_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::irc_options[] +* [[option_irc.color.input_nick]] *irc.color.input_nick* +** 説明: pass:none[インプットバーのニックネームに使う色] +** タイプ: 色 +** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_irc.color.item_channel_modes]] *irc.color.item_channel_modes* +** 説明: pass:none[チャンネル名付近のチャンネルモードに使う色] +** タイプ: 色 +** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are 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_irc.color.item_lag_counting]] *irc.color.item_lag_counting* +** 説明: pass:none[カウント中の遅延インジケータの色 (pong がサーバから返らない場合、遅延は増加する)] +** タイプ: 色 +** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are 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_irc.color.item_lag_finished]] *irc.color.item_lag_finished* +** 説明: pass:none[pong がサーバから返った場合の、遅延インジケータの色] +** タイプ: 色 +** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_irc.color.item_nick_modes]] *irc.color.item_nick_modes* +** 説明: pass:none["input_prompt" バー要素内のニックネームモードに付ける色] +** タイプ: 色 +** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are 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_irc.color.item_tls_version_deprecated]] *irc.color.item_tls_version_deprecated* +** 説明: pass:none[color for deprecated TLS versions in bar item "tls_version"] +** タイプ: 色 +** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_irc.color.item_tls_version_insecure]] *irc.color.item_tls_version_insecure* +** 説明: pass:none[color for insecure TLS versions in bar item "tls_version"] +** タイプ: 色 +** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_irc.color.item_tls_version_ok]] *irc.color.item_tls_version_ok* +** 説明: pass:none[color for higher supported TLS version in bar item "tls_version"] +** タイプ: 色 +** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_irc.color.message_account]] *irc.color.message_account* +** 説明: pass:none[color for text in account messages] +** タイプ: 色 +** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_irc.color.message_chghost]] *irc.color.message_chghost* +** 説明: pass:none[color for text in "chghost" messages] +** タイプ: 色 +** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_irc.color.message_join]] *irc.color.message_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 +** デフォルト値: `+green+` + +* [[option_irc.color.message_kick]] *irc.color.message_kick* +** 説明: pass:none[color for text in kick/kill messages] +** タイプ: 色 +** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_irc.color.message_quit]] *irc.color.message_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 +** デフォルト値: `+red+` + +* [[option_irc.color.message_setname]] *irc.color.message_setname* +** 説明: pass:none[color for text in "setname" messages] +** タイプ: 色 +** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_irc.color.mirc_remap]] *irc.color.mirc_remap* +** 説明: pass:none[メッセージに含まれる mirc の定義する色に対するマッピングをハッシュテーブルで変更: キーは "fg,bg" で -1 (指定無し) から 15 までの整数、値は WeeChat 色名か色番号 (書式: "1,-1:color1;2,7:color2")、例: "1,-1:darkgray;1,2:white,blue" はテキスト色が黒のものを "darkgray" に、背景色が青でテキスト色が黒のものを "white,blue" に変更; IRC コードに対するデフォルトの WeeChat 色は、0=白、1=黒、2=青、3=緑、4=ライトレッド、5=赤、6=赤紫、7=茶色、8=黄色、9=ライトグリーン、10=シアン、11=ライトシアン、12=ライトブルー、13=ライトマゼンタ、14=暗い灰色、15=灰色] +** タイプ: 文字列 +** 値: 未制約文字列 +** デフォルト値: `+"1,-1:darkgray"+` + +* [[option_irc.color.nick_prefixes]] *irc.color.nick_prefixes* +** 説明: pass:none[モード文字を用いたニックネームプレフィックスの色 (o=オペレータ、h=halfop、v=発言、..)、書式: "o:color1;h:color2;v:color3" (モードが見つからない場合、WeeChat はサーバから受け取ったモードの次のものを試す ("PREFIX"); モードが見つからなかった場合は、特殊なモード "*" がデフォルト色として使えます)] +** タイプ: 文字列 +** 値: 未制約文字列 +** デフォルト値: `+"y:lightred;q:lightred;a:lightcyan;o:lightgreen;h:lightmagenta;v:yellow;*:lightblue"+` + +* [[option_irc.color.notice]] *irc.color.notice* +** 説明: pass:none[notices に含まれるテキスト "Notice" の色] +** タイプ: 色 +** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_irc.color.reason_kick]] *irc.color.reason_kick* +** 説明: pass:none[color for reason in kick/kill messages] +** タイプ: 色 +** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are 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_irc.color.reason_quit]] *irc.color.reason_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+` + +* [[option_irc.color.topic_current]] *irc.color.topic_current* +** 説明: pass:none[現在のチャンネルトピックの色 (チャンネルに参加または /topic を使ったときに使われます)] +** タイプ: 色 +** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are 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_irc.color.topic_new]] *irc.color.topic_new* +** 説明: pass:none[新しいチャンネルトピックの色 (トピックが変更されたときに使われます)] +** タイプ: 色 +** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_irc.color.topic_old]] *irc.color.topic_old* +** 説明: pass:none[古いチャンネルトピックの色 (トピックが変更されたときに使われます)] +** タイプ: 色 +** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are 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_irc.look.buffer_open_before_autojoin]] *irc.look.buffer_open_before_autojoin* +** 説明: pass:none[自動で参加した場合 ("autojoin" オプションで参加した場合) に、サーバから JOIN を受信する前にチャンネルバッファを開く; チャンネルとバッファ番号の対応を常に一致させたい場合に便利です] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+on+` + +* [[option_irc.look.buffer_open_before_join]] *irc.look.buffer_open_before_join* +** 説明: pass:none[手動で参加した場合 (/join コマンドを実行した場合) に、サーバから JOIN を受信する前にチャンネルバッファを開く] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+off+` + +* [[option_irc.look.buffer_switch_autojoin]] *irc.look.buffer_switch_autojoin* +** 説明: pass:none[自動で参加した場合に、自動的にチャンネルバッファを移動 (サーバオプション "autojoin" と共に使用)] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+on+` + +* [[option_irc.look.buffer_switch_join]] *irc.look.buffer_switch_join* +** 説明: pass:none[手動で参加した場合に、自動的にチャンネルバッファを移動 (/join コマンドを実行したとき)] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+on+` + +* [[option_irc.look.color_nicks_in_names]] *irc.look.color_nicks_in_names* +** 説明: pass:none[/names の出力にニックネーム色を使用 (またはチャンネル参加時に表示されるニックネームのリスト)] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+off+` + +* [[option_irc.look.color_nicks_in_nicklist]] *irc.look.color_nicks_in_nicklist* +** 説明: pass:none[ニックネームリストでニックネーム色を利用] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+off+` + +* [[option_irc.look.color_nicks_in_server_messages]] *irc.look.color_nicks_in_server_messages* +** 説明: pass:none[サーバからのメッセージにニックネーム色を利用] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+on+` + +* [[option_irc.look.color_pv_nick_like_channel]] *irc.look.color_pv_nick_like_channel* +** 説明: pass:none[チャンネルとプライベートバッファで同じニックネーム色を利用] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+on+` + +* [[option_irc.look.ctcp_time_format]] *irc.look.ctcp_time_format* +** 説明: pass:none[CTCP TIME メッセージに対する応答に利用される時間書式 (日付/時間指定子は strftime の man を参照してください)] +** タイプ: 文字列 +** 値: 未制約文字列 +** デフォルト値: `+"%a, %d %b %Y %T %z"+` + +* [[option_irc.look.display_account_message]] *irc.look.display_account_message* +** 説明: pass:none[display ACCOUNT messages received when capability account-notify is enabled] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+on+` + +* [[option_irc.look.display_away]] *irc.look.display_away* +** 説明: pass:none[離席状態が変更されたらメッセージを表示 (off: 何も表示/送信しない、local: ローカルに表示、channel: チャンネルにアクションを送信)] +** タイプ: 整数 +** 値: off, local, channel +** デフォルト値: `+local+` + +* [[option_irc.look.display_ctcp_blocked]] *irc.look.display_ctcp_blocked* +** 説明: pass:none[ブロックした場合でも CTCP メッセージを表示] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+on+` + +* [[option_irc.look.display_ctcp_reply]] *irc.look.display_ctcp_reply* +** 説明: pass:none[WeeChat が返信した CTCP メッセージを表示] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+on+` + +* [[option_irc.look.display_ctcp_unknown]] *irc.look.display_ctcp_unknown* +** 説明: pass:none[解釈できない CTCP の場合も CTCP メッセージを表示] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+on+` + +* [[option_irc.look.display_extended_join]] *irc.look.display_extended_join* +** 説明: pass:none[display extra information in the JOIN messages: account name and real name (capability extended-join must be enabled)] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+on+` + +* [[option_irc.look.display_host_join]] *irc.look.display_host_join* +** 説明: pass:none[参加メッセージにホスト名を表示] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+on+` + +* [[option_irc.look.display_host_join_local]] *irc.look.display_host_join_local* +** 説明: pass:none[ローカルクライアントからの参加メッセージにホスト名を表示] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+on+` + +* [[option_irc.look.display_host_quit]] *irc.look.display_host_quit* +** 説明: pass:none[退出/終了 メッセージにホスト名を表示] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+on+` + +* [[option_irc.look.display_join_message]] *irc.look.display_join_message* +** 説明: pass:none[チャンネルに参加した後に表示するメッセージのコンマ区切りリスト: 324 = チャンネルモード、329 = チャンネル作成日、332 = トピック、333 = トピックを作成したニックネームおよび日付、353 = チャンネル参加者リスト、366 = 参加人数] +** タイプ: 文字列 +** 値: 未制約文字列 +** デフォルト値: `+"329,332,333,366"+` + +* [[option_irc.look.display_old_topic]] *irc.look.display_old_topic* +** 説明: pass:none[チャンネルトピックが変更された場合に、古いトピックを表示] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+on+` + +* [[option_irc.look.display_pv_away_once]] *irc.look.display_pv_away_once* +** 説明: pass:none[プライベートでは離席状態の変更を 1 回以上表示しない] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+on+` + +* [[option_irc.look.display_pv_back]] *irc.look.display_pv_back* +** 説明: pass:none[ユーザが戻ったら、プライベートウィンドウにメッセージを表示 (サーバとの切断を挟んで)] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+on+` + +* [[option_irc.look.display_pv_nick_change]] *irc.look.display_pv_nick_change* +** 説明: pass:none[display nick change in private] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+on+` + +* [[option_irc.look.display_pv_warning_address]] *irc.look.display_pv_warning_address* +** 説明: pass:none[display a warning in private buffer if the address of remote nick has changed; this option is disabled by default because servers like bitlbee are causing this warning to be displayed when it is not expected (the address of remote nick changes multiple times on login)] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+off+` + +* [[option_irc.look.highlight_channel]] *irc.look.highlight_channel* +** 説明: pass:none[comma separated list of words to highlight in channel buffers (case insensitive, use "(?-i)" at beginning of words to make them case sensitive; special variables $nick, $channel and $server are replaced by their values), these words are added to buffer property "highlight_words" only when buffer is created (it does not affect current buffers), an empty string disables default highlight on nick, examples: "$nick", "(?-i)$nick"] +** タイプ: 文字列 +** 値: 未制約文字列 +** デフォルト値: `+"$nick"+` + +* [[option_irc.look.highlight_pv]] *irc.look.highlight_pv* +** 説明: pass:none[comma separated list of words to highlight in private buffers (case insensitive, use "(?-i)" at beginning of words to make them case sensitive; special variables $nick, $channel and $server are replaced by their values), these words are added to buffer property "highlight_words" only when buffer is created (it does not affect current buffers), an empty string disables default highlight on nick, examples: "$nick", "(?-i)$nick"] +** タイプ: 文字列 +** 値: 未制約文字列 +** デフォルト値: `+"$nick"+` + +* [[option_irc.look.highlight_server]] *irc.look.highlight_server* +** 説明: pass:none[comma separated list of words to highlight in server buffers (case insensitive, use "(?-i)" at beginning of words to make them case sensitive; special variables $nick, $channel and $server are replaced by their values), these words are added to buffer property "highlight_words" only when buffer is created (it does not affect current buffers), an empty string disables default highlight on nick, examples: "$nick", "(?-i)$nick"] +** タイプ: 文字列 +** 値: 未制約文字列 +** デフォルト値: `+"$nick"+` + +* [[option_irc.look.highlight_tags_restrict]] *irc.look.highlight_tags_restrict* +** 説明: pass:none[irc バッファでハイライトを禁止するタグ (ユーザメッセージをハイライトして、サーバメッセージをハイライトしない); タグの区切り文字はコンマ、論理積を取る場合には "+" 使ってください; ワイルドカード "*" を使うことができます; 任意のタグをハイライトさせるには空値を指定してください] +** タイプ: 文字列 +** 値: 未制約文字列 +** デフォルト値: `+"irc_privmsg,irc_notice"+` + +* [[option_irc.look.item_channel_modes_hide_args]] *irc.look.item_channel_modes_hide_args* +** 説明: pass:none[設定したモードのうち少なくとも 1 つがチャンネルモードに設定されていた場合、チャンネルモード引数を隠す (全ての引数を隠すには "*" を使ってください、値が空の場合は全てのチャンネルモード引数が表示されます); 例: チャンネルモードに "k" または "f" が設定されていた場合にチャンネルモード引数を隠すには "kf" と設定してください] +** タイプ: 文字列 +** 値: 未制約文字列 +** デフォルト値: `+"k"+` + +* [[option_irc.look.item_display_server]] *irc.look.item_display_server* +** 説明: pass:none[IRC サーバが表示されるバー要素の名前 (ステータスバー用)] +** タイプ: 整数 +** 値: buffer_plugin, buffer_name +** デフォルト値: `+buffer_plugin+` + +* [[option_irc.look.item_nick_modes]] *irc.look.item_nick_modes* +** 説明: pass:none["input_prompt" バー要素ではニックネームモードを表示] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+on+` + +* [[option_irc.look.item_nick_prefix]] *irc.look.item_nick_prefix* +** 説明: pass:none["input_prompt" バー要素ではニックネームプレフィックスを表示] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+on+` + +* [[option_irc.look.join_auto_add_chantype]] *irc.look.join_auto_add_chantype* +** 説明: pass:none[/join コマンドに与えたチャンネル名の最初にそのサーバで有効なチャンネルタイプが付けられていなかった場合、チャンネル名の前にチャンネルタイプを自動追加する; 例: "/join weechat" とした場合、実際に送信されるコマンドは "/join #weechat" になります] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+off+` + +* [[option_irc.look.msgbuffer_fallback]] *irc.look.msgbuffer_fallback* +** 説明: pass:none[ターゲットがプライベートでプライベートバッファが見つからない場合の msgbuffer オプション用のデフォルトのターゲットバッファ] +** タイプ: 整数 +** 値: current, server +** デフォルト値: `+current+` + +* [[option_irc.look.new_channel_position]] *irc.look.new_channel_position* +** 説明: pass:none[バッファリスト内で新しいチャンネルの位置を固定 (none = デフォルトの位置 (一番後ろのバッファ)、next = 現在のバッファ番号 + 1、near_server = サーバの一番後ろのチャンネル/プライベートバッファ)] +** タイプ: 整数 +** 値: none, next, near_server +** デフォルト値: `+none+` + +* [[option_irc.look.new_pv_position]] *irc.look.new_pv_position* +** 説明: pass:none[バッファリスト内で新しいプライベートバッファの位置を固定 (none = デフォルトの位置 (一番後ろのバッファ)、next = 現在のバッファ番号 + 1、near_server = サーバの一番後ろのチャンネル/プライベートバッファ)] +** タイプ: 整数 +** 値: none, next, near_server +** デフォルト値: `+none+` + +* [[option_irc.look.nick_completion_smart]] *irc.look.nick_completion_smart* +** 説明: pass:none[ニックネームのスマート補完 (発言日時の新しいものから順にニックネームを補完): speakers = すべてのニックネーム (ハイライトされたニックネームを含む)、speakers_highlights = ハイライトされたニックネームのみ] +** タイプ: 整数 +** 値: off, speakers, speakers_highlights +** デフォルト値: `+speakers+` + +* [[option_irc.look.nick_mode]] *irc.look.nick_mode* +** 説明: pass:none[ニックネームの前にニックネームモード (オペレータ、voice 権) を表示する (none = 表示しない、prefix = プレフィックスだけに表示 (デフォルト)、action = アクションメッセージだけに表示、both = プレフィックスとアクションメッセージの両方に表示)] +** タイプ: 整数 +** 値: none, prefix, action, both +** デフォルト値: `+prefix+` + +* [[option_irc.look.nick_mode_empty]] *irc.look.nick_mode_empty* +** 説明: pass:none[ニックネームモードが有効でニックネームモードを持っていない (オペレータでない、voice 権がない) 場合にはこれを空白で表示する] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+off+` + +* [[option_irc.look.nicks_hide_password]] *irc.look.nicks_hide_password* +** 説明: pass:none[メッセージを送信する際にパスワードを隠すニックネームのコンマ区切りリスト、例えば "/msg nickserv identify password" で表示されるメッセージに含まれるパスワードを隠すために使います、例: "nickserv,nickbot"] +** タイプ: 文字列 +** 値: 未制約文字列 +** デフォルト値: `+"nickserv"+` + +* [[option_irc.look.notice_as_pv]] *irc.look.notice_as_pv* +** 説明: pass:none[notice をプライベートメッセージとして表示 (auto の場合、プライベートバッファが見つかればそれを使用する)] +** タイプ: 整数 +** 値: auto, never, always +** デフォルト値: `+auto+` + +* [[option_irc.look.notice_welcome_redirect]] *irc.look.notice_welcome_redirect* +** 説明: pass:none[チャンネルからの歓迎メッセージをチャンネルを表示するバッファへ自動リダイレクト; 歓迎メッセージの宛先はニックネームですが、メッセージの先頭に含まれるチャンネル名をもとに、そのチャンネルを表示するバッファへメッセージをリダイレクトします。Atheme IRC サービスが送信する ENTRYMSG 通知の例: "[#channel\] Welcome to this channel..."] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+on+` + +* [[option_irc.look.notice_welcome_tags]] *irc.look.notice_welcome_tags* +** 説明: pass:none[ようこそ通知に使われ、チャンネルに転送するタグのコンマ区切りリスト、例: "notify_private"] +** タイプ: 文字列 +** 値: 未制約文字列 +** デフォルト値: `+""+` + +* [[option_irc.look.notify_tags_ison]] *irc.look.notify_tags_ison* +** 説明: pass:none[あるニックネームが参加またはサーバから切断した際の (ison または monitor コマンドの結果) notify が表示するメッセージで使うタグのコンマ区切りリスト、例えば: "notify_message"、"notify_highlight"、"notify_private"] +** タイプ: 文字列 +** 値: 未制約文字列 +** デフォルト値: `+"notify_message"+` + +* [[option_irc.look.notify_tags_whois]] *irc.look.notify_tags_whois* +** 説明: pass:none[ニックネームの離席状態に変化があった場合の (whois コマンドの結果)、notify によって表示されたメッセージに使われたタグのコンマ区切りリスト、例: "notify_message"、"notify_private"、"notify_highlight"] +** タイプ: 文字列 +** 値: 未制約文字列 +** デフォルト値: `+"notify_message"+` + +* [[option_irc.look.part_closes_buffer]] *irc.look.part_closes_buffer* +** 説明: pass:none[/part を実行した場合にバッファを閉じる] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+off+` + +* [[option_irc.look.pv_buffer]] *irc.look.pv_buffer* +** 説明: pass:none[プライベートバッファをマージ] +** タイプ: 整数 +** 値: independent, merge_by_server, merge_all +** デフォルト値: `+independent+` + +* [[option_irc.look.pv_tags]] *irc.look.pv_tags* +** 説明: pass:none[プライベートメッセージに使われたタグのコンマ区切りリスト、例: "notify_message"、"notify_private"、"notify_highlight"] +** タイプ: 文字列 +** 値: 未制約文字列 +** デフォルト値: `+"notify_private"+` + +* [[option_irc.look.raw_messages]] *irc.look.raw_messages* +** 説明: pass:none[生データバッファが閉じられた時にメモリに保存する生メッセージの数 (生データバッファを開いたときに表示されるメッセージ)] +** タイプ: 整数 +** 値: 0 .. 65535 +** デフォルト値: `+256+` + +* [[option_irc.look.server_buffer]] *irc.look.server_buffer* +** 説明: pass:none[サーババッファをマージ; レイアウトが保存され、それがこのオプションと矛盾する場合 (/help layout を参照してください)、このオプションは何もしません] +** タイプ: 整数 +** 値: merge_with_core, merge_without_core, independent +** デフォルト値: `+merge_with_core+` + +* [[option_irc.look.smart_filter]] *irc.look.smart_filter* +** 説明: pass:none[filter join/part/quit/nick messages for a nick if not speaking for some minutes on channel (you must create a filter on tag "irc_smart_filter", see /help filter)] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+on+` + +* [[option_irc.look.smart_filter_account]] *irc.look.smart_filter_account* +** 説明: pass:none[enable smart filter for "account" messages] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+on+` + +* [[option_irc.look.smart_filter_chghost]] *irc.look.smart_filter_chghost* +** 説明: pass:none["chghost" メッセージのスマートフィルタを有効化] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+on+` + +* [[option_irc.look.smart_filter_delay]] *irc.look.smart_filter_delay* +** 説明: pass:none[参加/退出/終了メッセージをフィルタするまでの遅延時間 (分単位): ニックネームが N 分以上発言しなかった場合、参加/退出/終了メッセージをフィルタする] +** タイプ: 整数 +** 値: 1 .. 10080 +** デフォルト値: `+5+` + +* [[option_irc.look.smart_filter_join]] *irc.look.smart_filter_join* +** 説明: pass:none["join" メッセージのスマートフィルタを有効化] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+on+` + +* [[option_irc.look.smart_filter_join_unmask]] *irc.look.smart_filter_join_unmask* +** 説明: pass:none["irc_smart_filter" タグでフィルタリングされる参加メッセージのマスクを外すまでの遅延時間 (分単位): 最長 N 分前にあるニックネームがあるチャンネルに参加し、そこで何か喋るか (メッセージ、通知、トピックのアップデートなど) 参加後にニックネームを変更したら、参加メッセージのマスクが外れます (0 = 無効: 参加メッセージは必ずマスクされます)] +** タイプ: 整数 +** 値: 0 .. 10080 +** デフォルト値: `+30+` + +* [[option_irc.look.smart_filter_mode]] *irc.look.smart_filter_mode* +** 説明: pass:none["mode" メッセージに対するスマートフィルタを有効化する: すべてのモード変更メッセージをフィルタするには "*"、サーバプレフィックス (例えば "ovh") モードの変更メッセージをフィルタするには "+"、x/y/z モードの変更メッセージをフィルタするには "xyz"、x/y/z モード以外のモード変更メッセージをフィルタするには "-xyz"; 例: "ovh": o/v/h モードの変更メッセージをフィルタする、"-bkl": b/k/l モード以外のモード変更メッセージをフィルタ] +** タイプ: 文字列 +** 値: 未制約文字列 +** デフォルト値: `+"+"+` + +* [[option_irc.look.smart_filter_nick]] *irc.look.smart_filter_nick* +** 説明: pass:none["nick" メッセージに対するスマートフィルタを有効化 (ニックネームの変更通知)] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+on+` + +* [[option_irc.look.smart_filter_quit]] *irc.look.smart_filter_quit* +** 説明: pass:none["part" と "quit" メッセージのスマートフィルタを有効化] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+on+` + +* [[option_irc.look.smart_filter_setname]] *irc.look.smart_filter_setname* +** 説明: pass:none[enable smart filter for "setname" messages] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+on+` + +* [[option_irc.look.temporary_servers]] *irc.look.temporary_servers* +** 説明: pass:none[/connect コマンドによる一時的なサーバの自動追加を有効化する] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+off+` + +* [[option_irc.look.topic_strip_colors]] *irc.look.topic_strip_colors* +** 説明: pass:none[トピックにつけられた色を無効化 (バッファタイルに表示される場合のみ利用)] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+off+` + +* [[option_irc.look.typing_status_nicks]] *irc.look.typing_status_nicks* +** 説明: pass:none[display nicks typing on the channel in bar item "typing" (option typing.look.enabled_nicks must be enabled and capability "message-tags" must be enabled on the server)] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+off+` + +* [[option_irc.look.typing_status_self]] *irc.look.typing_status_self* +** 説明: pass:none[send self typing status to channels so that other users see when you are typing a message (option typing.look.enabled_self must be enabled and capability "message-tags" must be enabled on the server)] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+off+` + +* [[option_irc.network.autoreconnect_delay_growing]] *irc.network.autoreconnect_delay_growing* +** 説明: pass:none[サーバに自動再接続する際の遅延間隔に関する増加係数 (1 = 遅延間隔は常に同じ, 2 = リトライごとに遅延間隔を 2 倍、など)] +** タイプ: 整数 +** 値: 1 .. 100 +** デフォルト値: `+2+` + +* [[option_irc.network.autoreconnect_delay_max]] *irc.network.autoreconnect_delay_max* +** 説明: pass:none[サーバへの自動接続の遅延時間の最大値 (秒単位、0 = 制限無し)] +** タイプ: 整数 +** 値: 0 .. 604800 +** デフォルト値: `+600+` + +* [[option_irc.network.ban_mask_default]] *irc.network.ban_mask_default* +** 説明: pass:none[/ban、/unban、/kickban コマンドが使うデフォルトの禁止マスク; 変数 $nick、$user、$ident、$host はそれぞれの値に置換 ("nick!user@host" から展開) されます; $user が "~" で始まらない場合 $ident は $user と同じで、それ以外の場合 $ident は "*" になります; 設定したデフォルトマスクはニックネームのホスト名がわかる場合のみ利用されます] +** タイプ: 文字列 +** 値: 未制約文字列 +** デフォルト値: `+"*!$ident@$host"+` + +* [[option_irc.network.colors_receive]] *irc.network.colors_receive* +** 説明: pass:none[オフの場合、到着メッセージに含まれる色コードを無視] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+on+` + +* [[option_irc.network.colors_send]] *irc.network.colors_send* +** 説明: pass:none[特別なコードを使ってユーザが色を送信することを許可 (ctrl-c + 色コードと任意の色: b=太字、cxx=テキスト色、cxx,yy=テキスト色+背景色、i=イタリック、o=色や属性の無効化、r=反転、u=下線)] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+on+` + +* [[option_irc.network.lag_check]] *irc.network.lag_check* +** 説明: pass:none[遅延の確認間のインターバル (秒単位、0 = 確認しない)] +** タイプ: 整数 +** 値: 0 .. 604800 +** デフォルト値: `+60+` + +* [[option_irc.network.lag_max]] *irc.network.lag_max* +** 説明: pass:none[遅延時間の最大値 (秒単位): 遅延時間がこの値よりも大きくなった場合、WeeChat はサーバからの応答 (pong) が到着しないと考え、遅延時間の計測を中止します (0 = 遅延時間の計測を中止しない)] +** タイプ: 整数 +** 値: 0 .. 604800 +** デフォルト値: `+1800+` + +* [[option_irc.network.lag_min_show]] *irc.network.lag_min_show* +** 説明: pass:none[表示する最短の遅延 (ミリ秒単位)] +** タイプ: 整数 +** 値: 0 .. 86400000 +** デフォルト値: `+500+` + +* [[option_irc.network.lag_reconnect]] *irc.network.lag_reconnect* +** 説明: pass:none[遅延時間がこの値以上に長くなった場合は再接続 (秒単位、0 = 再接続しない); この値は必ず irc.network.lag_max 以下にしてください] +** タイプ: 整数 +** 値: 0 .. 604800 +** デフォルト値: `+300+` + +* [[option_irc.network.lag_refresh_interval]] *irc.network.lag_refresh_interval* +** 説明: pass:none[遅延時間が増加した際の、遅延要素の 2 回のリフレッシュの間のインターバル (秒単位)] +** タイプ: 整数 +** 値: 1 .. 3600 +** デフォルト値: `+1+` + +* [[option_irc.network.notify_check_ison]] *irc.network.notify_check_ison* +** 説明: pass:none[IRC コマンド "ison" による通知の 2 回のチェックの間のインターバル (分単位)] +** タイプ: 整数 +** 値: 1 .. 10080 +** デフォルト値: `+1+` + +* [[option_irc.network.notify_check_whois]] *irc.network.notify_check_whois* +** 説明: pass:none[IRC コマンド "whois" による通知の 2 回のチェックの間のインターバル (分単位)] +** タイプ: 整数 +** 値: 1 .. 10080 +** デフォルト値: `+5+` + +* [[option_irc.network.sasl_fail_unavailable]] *irc.network.sasl_fail_unavailable* +** 説明: pass:none[対象のサーバに対して SASL を要求したものの SASL が使えなかった場合に SASL 認証失敗として取り扱う; このオプションの有効化は、対象のサーバに対するオプション "sasl_fail" を "reconnect" または "disconnect" に設定した場合にのみ、効果があります] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+on+` + +* [[option_irc.network.send_unknown_commands]] *irc.network.send_unknown_commands* +** 説明: pass:none[未定義のコマンドをサーバに送信] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+off+` + +* [[option_irc.network.whois_double_nick]] *irc.network.whois_double_nick* +** 説明: pass:none[/whois コマンドの引数に 2 重のニックネームを付ける (ニックネームが 1 つだけ指定された場合)、これによりアイドル時間が返されます; 例: "/whois nick" で "whois nick nick" が送信されます] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+off+` + +* [[option_irc.server_default.addresses]] *irc.server_default.addresses* +** 説明: pass:none[サーバのホスト名/ポート番号または IP アドレス/ポート番号のリスト (コンマ区切り) (注意: 値は評価されます、/help eval を参照してください; ここで ${irc_server.xxx} はサーバオプション、${server} はサーバ名を意味します)] +** タイプ: 文字列 +** 値: 未制約文字列 +** デフォルト値: `+""+` + +* [[option_irc.server_default.anti_flood_prio_high]] *irc.server_default.anti_flood_prio_high* +** 説明: pass:none[高優先度キュー用のアンチフロード: ユーザメッセージかコマンドを IRC サーバに送信する場合の遅延秒 (0 = アンチフロード無効)] +** タイプ: 整数 +** 値: 0 .. 60 +** デフォルト値: `+2+` + +* [[option_irc.server_default.anti_flood_prio_low]] *irc.server_default.anti_flood_prio_low* +** 説明: pass:none[低優先度キュー用のアンチフロード: ユーザメッセージかコマンドを IRC サーバに送信する場合の遅延秒 (自動 CTCP 応答等のメッセージ) (0 = アンチフロード無効)] +** タイプ: 整数 +** 値: 0 .. 60 +** デフォルト値: `+2+` + +* [[option_irc.server_default.autoconnect]] *irc.server_default.autoconnect* +** 説明: pass:none[WeeChat の起動時に自動的にサーバに接続] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+off+` + +* [[option_irc.server_default.autojoin]] *irc.server_default.autojoin* +** 説明: pass:none[サーバに接続した後 (設定されていればさらにコマンドを実行し、遅延時間待った後) に参加するチャンネルのコンマ区切りリスト;鍵が必要なチャンネルはリストの最初に指定し、すべての鍵はチャンネルの後に指定してください (チャンネルと鍵の区切りは空白) (例: "#channel1,#channel2,#channel3 key1,key2" この場合 #channel1 と #channel2 への参加に必要な鍵はそれぞれ key1 と key2) (注意: 値は評価されます、/help eval を参照してください; ここで ${irc_server.xxx} はサーバオプション、${server} はサーバ名を意味します)] +** タイプ: 文字列 +** 値: 未制約文字列 +** デフォルト値: `+""+` + +* [[option_irc.server_default.autojoin_dynamic]] *irc.server_default.autojoin_dynamic* +** 説明: pass:none[set automatically the "autojoin" option according to the channels you manually join and part with commands /join and /part] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+off+` + +* [[option_irc.server_default.autoreconnect]] *irc.server_default.autoreconnect* +** 説明: pass:none[接続が切れたときに自動的に再接続] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+on+` + +* [[option_irc.server_default.autoreconnect_delay]] *irc.server_default.autoreconnect_delay* +** 説明: pass:none[サーバへの再接続の際の遅延 (秒単位) 時間] +** タイプ: 整数 +** 値: 1 .. 65535 +** デフォルト値: `+10+` + +* [[option_irc.server_default.autorejoin]] *irc.server_default.autorejoin* +** 説明: pass:none[キックされた後のチャンネルへの最参加を自動的に行う; あるチャンネルに対して設定を上書きするにはバッファローカル変数を定義してください (変数の名前: "autorejoin"、値: "on" または "off")] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+off+` + +* [[option_irc.server_default.autorejoin_delay]] *irc.server_default.autorejoin_delay* +** 説明: pass:none[自動再参加前の遅延時間 (秒単位) (キック後)] +** タイプ: 整数 +** 値: 0 .. 86400 +** デフォルト値: `+30+` + +* [[option_irc.server_default.away_check]] *irc.server_default.away_check* +** 説明: pass:none[2 つの away チェック間のインターバル (分、0 = チェックしない)] +** タイプ: 整数 +** 値: 0 .. 10080 +** デフォルト値: `+0+` + +* [[option_irc.server_default.away_check_max_nicks]] *irc.server_default.away_check_max_nicks* +** 説明: pass:none[大きなニックネーム番号を持つニックネームに対しては、away 確認を行わない (0 = 制限無し)] +** タイプ: 整数 +** 値: 0 .. 1000000 +** デフォルト値: `+25+` + +* [[option_irc.server_default.capabilities]] *irc.server_default.capabilities* +** 説明: pass:none[comma-separated list of client capabilities to enable for server if they are available (see /help cap for a list of capabilities supported by WeeChat); "*" enables all capabilities by default (supported by both server and WeeChat); wildcard "*" is allowed; a capability beginning with "!" is excluded (example: "*,!account-*,!extended-join")] +** タイプ: 文字列 +** 値: 未制約文字列 +** デフォルト値: `+"*"+` + +* [[option_irc.server_default.charset_message]] *irc.server_default.charset_message* +** 説明: pass:none[part of the IRC message (received or sent) which is decoded/encoded to the target charset; message = the whole IRC message (default), channel = starting from the channel name only (if found, with fallback on text), text = starting from the text only (you should try this value if you have issues with the channel name encoding)] +** タイプ: 整数 +** 値: message, channel, text +** デフォルト値: `+message+` + +* [[option_irc.server_default.command]] *irc.server_default.command* +** 説明: pass:none[command(s) to run after connection to server and before auto-join of channels (many commands can be separated by ";", use "\;" for a semicolon, special variables $nick, $channel and $server are replaced by their values) (note: commands are evaluated, see /help eval; server options are evaluated with ${irc_server.xxx} and ${server} is replaced by the server name)] +** タイプ: 文字列 +** 値: 未制約文字列 +** デフォルト値: `+""+` + +* [[option_irc.server_default.command_delay]] *irc.server_default.command_delay* +** 説明: pass:none[コマンドを実行して、チャンネルに自動参加するまでの遅延時間 (秒単位) (例: 認証に時間がかかる場合にチャンネル参加前に少し時間を空ける)] +** タイプ: 整数 +** 値: 0 .. 3600 +** デフォルト値: `+0+` + +* [[option_irc.server_default.connection_timeout]] *irc.server_default.connection_timeout* +** 説明: pass:none[サーバとの TCP 接続と 001 メッセージ受信間のタイムアウト (秒単位)、001 メッセージ受信前にタイムアウト時間を経過した場合は、WeeChat はサーバとの接続を切断] +** タイプ: 整数 +** 値: 1 .. 3600 +** デフォルト値: `+60+` + +* [[option_irc.server_default.default_chantypes]] *irc.server_default.default_chantypes* +** 説明: pass:none[channel type prefixes to use if the server does not send them in message 005 (default is "#&")] +** タイプ: 文字列 +** 値: 未制約文字列 +** デフォルト値: `+"#&"+` + +* [[option_irc.server_default.ipv6]] *irc.server_default.ipv6* +** 説明: pass:none[サーバ接続に IPv6 プロトコルを利用 (IPv6 の利用に失敗したら IPv4 を利用); 無効の場合には IPv4 を利用] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+on+` + +* [[option_irc.server_default.local_hostname]] *irc.server_default.local_hostname* +** 説明: pass:none[サーバで使用するカスタムホスト名/IP アドレス (任意、空の場合はローカルホスト名が使われる)] +** タイプ: 文字列 +** 値: 未制約文字列 +** デフォルト値: `+""+` + +* [[option_irc.server_default.msg_kick]] *irc.server_default.msg_kick* +** 説明: pass:none[default kick message used by commands "/kick" and "/kickban" (note: content is evaluated, see /help eval; special variables ${nick} (self nick), ${target} (target nick), ${channel} and ${server} are replaced by their values)] +** タイプ: 文字列 +** 値: 未制約文字列 +** デフォルト値: `+""+` + +* [[option_irc.server_default.msg_part]] *irc.server_default.msg_part* +** 説明: pass:none[default part message (leaving channel) (note: content is evaluated, see /help eval; special variables ${nick}, ${channel} and ${server} are replaced by their values; "%v" is replaced by WeeChat version if there is no ${...} in string)] +** タイプ: 文字列 +** 値: 未制約文字列 +** デフォルト値: `+"WeeChat ${info:version}"+` + +* [[option_irc.server_default.msg_quit]] *irc.server_default.msg_quit* +** 説明: pass:none[default quit message (disconnecting from server) (note: content is evaluated, see /help eval; special variables ${nick}, ${channel} and ${server} are replaced by their values; "%v" is replaced by WeeChat version if there is no ${...} in string)] +** タイプ: 文字列 +** 値: 未制約文字列 +** デフォルト値: `+"WeeChat ${info:version}"+` + +* [[option_irc.server_default.nicks]] *irc.server_default.nicks* +** 説明: pass:none[サーバで使用するニックネーム (コンマ区切り) (注意: 値は評価されます、/help eval を参照してください; ここで ${irc_server.xxx} はサーバオプション、${server} はサーバ名を意味します)] +** タイプ: 文字列 +** 値: 未制約文字列 +** デフォルト値: `+""+` + +* [[option_irc.server_default.nicks_alternate]] *irc.server_default.nicks_alternate* +** 説明: pass:none[すべての指定されたニックネームがサーバで既に利用されている場合、他のニックネームを生成します: ニックネームの長さが 9 になるまで数個の "_" を追加します。その後利用されていないニックネームが見つかるまで、最後の 1 文字 (または最後の 2 文字) を 1 から 99 まで置き換えていきます] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+on+` + +* [[option_irc.server_default.notify]] *irc.server_default.notify* +** 説明: pass:none[サーバの通知リスト (これを変更する場合は、/notify コマンドを使うこと)] +** タイプ: 文字列 +** 値: 未制約文字列 +** デフォルト値: `+""+` + +* [[option_irc.server_default.password]] *irc.server_default.password* +** 説明: pass:none[サーバのパスワード (注意: 値は評価されます、/help eval を参照してください; ここで ${irc_server.xxx} はサーバオプション、${server} はサーバ名を意味します)] +** タイプ: 文字列 +** 値: 未制約文字列 +** デフォルト値: `+""+` + +* [[option_irc.server_default.proxy]] *irc.server_default.proxy* +** 説明: pass:none[このサーバで利用するプロキシ名 (任意、プロキシは /proxy コマンドで確認してください)] +** タイプ: 文字列 +** 値: 未制約文字列 +** デフォルト値: `+""+` + +* [[option_irc.server_default.realname]] *irc.server_default.realname* +** 説明: pass:none[サーバで使用する実名 (注意: 値は評価されます、/help eval を参照してください; ここで ${irc_server.xxx} はサーバオプション、${server} はサーバ名を意味します)] +** タイプ: 文字列 +** 値: 未制約文字列 +** デフォルト値: `+""+` + +* [[option_irc.server_default.sasl_fail]] *irc.server_default.sasl_fail* +** 説明: pass:none[SASL 認証が失敗した場合の挙動: 認証の問題を無視する場合は "continue"、サーバへの再接続を予定する場合は "reconnect"、サーバから切断する場合は "disconnect" (irc.network.sasl_fail_unavailable も参照してください)] +** タイプ: 整数 +** 値: continue, reconnect, disconnect +** デフォルト値: `+reconnect+` + +* [[option_irc.server_default.sasl_key]] *irc.server_default.sasl_key* +** 説明: pass:none[file with ECC private key for mechanism "ecdsa-nist256p-challenge" (path is evaluated, see function string_eval_path_home in plugin API reference)] +** タイプ: 文字列 +** 値: 未制約文字列 +** デフォルト値: `+""+` + +* [[option_irc.server_default.sasl_mechanism]] *irc.server_default.sasl_mechanism* +** 説明: pass:none[mechanism for SASL authentication: "plain" for plain text password, "scram-sha-1" for SCRAM authentication with SHA-1 digest algorithm, "scram-sha-256" for SCRAM authentication with SHA-256 digest algorithm, "scram-sha-512" for SCRAM authentication with SHA-512 digest algorithm, "ecdsa-nist256p-challenge" for key-based challenge authentication, "external" for authentication using client side SSL certificate] +** タイプ: 整数 +** 値: plain, scram-sha-1, scram-sha-256, scram-sha-512, ecdsa-nist256p-challenge, external +** デフォルト値: `+plain+` + +* [[option_irc.server_default.sasl_password]] *irc.server_default.sasl_password* +** 説明: pass:none[SASL 認証のパスワード; このオプションは "ecdsa-nist256p-challenge" および "external" メカニズムの場合には利用されません (注意: 値は評価されます、/help eval を参照してください; ここで ${irc_server.xxx} はサーバオプション、${server} はサーバ名を意味します)] +** タイプ: 文字列 +** 値: 未制約文字列 +** デフォルト値: `+""+` + +* [[option_irc.server_default.sasl_timeout]] *irc.server_default.sasl_timeout* +** 説明: pass:none[SASL 認証を諦める前のタイムアウト (秒単位)] +** タイプ: 整数 +** 値: 1 .. 3600 +** デフォルト値: `+15+` + +* [[option_irc.server_default.sasl_username]] *irc.server_default.sasl_username* +** 説明: pass:none[SASL 認証のユーザ名; このオプションは "external" メカニズムの場合には利用されません (注意: 値は評価されます、/help eval を参照してください; ここで ${irc_server.xxx} はサーバオプション、${server} はサーバ名を意味します)] +** タイプ: 文字列 +** 値: 未制約文字列 +** デフォルト値: `+""+` + +* [[option_irc.server_default.split_msg_max_length]] *irc.server_default.split_msg_max_length* +** 説明: pass:none[送信 IRC メッセージを指定した文字数に分割します; デフォルトの文字数は 512 であり、この安全なデフォルト値を使うことを推奨します; 0 は分割機能を無効化します (自分のしていることがわかっている場合を除いて非推奨です); 値は 0 もしくは 128 から 4096 までの任意の整数にしてください; 標準的でない IRC サーバ (例えば bitlbee などのゲートウェイ) を使う場合に限り、このオプションを変更すべきです] +** タイプ: 整数 +** 値: 0 .. 4096 +** デフォルト値: `+512+` + +* [[option_irc.server_default.ssl]] *irc.server_default.ssl* +** 説明: pass:none[サーバとの通信に SSL を利用] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+off+` + +* [[option_irc.server_default.ssl_cert]] *irc.server_default.ssl_cert* +** 説明: pass:none[SSL certificate file used to automatically identify your nick (path is evaluated, see function string_eval_path_home in plugin API reference)] +** タイプ: 文字列 +** 値: 未制約文字列 +** デフォルト値: `+""+` + +* [[option_irc.server_default.ssl_dhkey_size]] *irc.server_default.ssl_dhkey_size* +** 説明: pass:none[Diffie-Hellman 鍵交換で使われる鍵長] +** タイプ: 整数 +** 値: 0 .. 2147483647 +** デフォルト値: `+2048+` + +* [[option_irc.server_default.ssl_fingerprint]] *irc.server_default.ssl_fingerprint* +** 説明: pass:none[信頼でき、通信を認めるサーバ証明書の指紋; 16 進数で使える文字 (0-9, a-f) 以外は指定できません: SHA-512 の場合 128 文字、SHA-256 の場合 64 文字、SHA-1 の場合 40 文字 (危険、非推奨) です。複数の指紋を設定する場合はコンマで区切ってください; このオプションを設定した場合、証明書に対する他の妥当性確認は行われません (オプション "ssl_verify") (注意: 値は評価されます、/help eval を参照してください; ここで ${irc_server.xxx} はサーバオプション、${server} はサーバ名を意味します)] +** タイプ: 文字列 +** 値: 未制約文字列 +** デフォルト値: `+""+` + +* [[option_irc.server_default.ssl_password]] *irc.server_default.ssl_password* +** 説明: pass:none[password for SSL certificate's private key; only used with gnutls version >= 3.1.0 (note: content is evaluated, see /help eval; server options are evaluated with ${irc_server.xxx} and ${server} is replaced by the server name)] +** タイプ: 文字列 +** 値: 未制約文字列 +** デフォルト値: `+""+` + +* [[option_irc.server_default.ssl_priorities]] *irc.server_default.ssl_priorities* +** 説明: pass:none[gnutls の優先度を示した文字列 (構文は、gnutls マニュアルの gnutls_priority_init 関数のドキュメントを参照してください、通例: "PERFORMANCE", "NORMAL", "SECURE128", "SECURE256", "EXPORT", "NONE")] +** タイプ: 文字列 +** 値: 未制約文字列 +** デフォルト値: `+"NORMAL:-VERS-SSL3.0"+` + +* [[option_irc.server_default.ssl_verify]] *irc.server_default.ssl_verify* +** 説明: pass:none[SSL 接続が完全に信頼できることを確認] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+on+` + +* [[option_irc.server_default.usermode]] *irc.server_default.usermode* +** 説明: pass:none[サーバへの接続後、コマンドの実行とチャンネルへの自動参加前に設定するユーザモード; 例: "+R" (モード "R" を設定)、"+R-i" (モード "R" を設定、モード "i" を未設定); 完全なモード書式を見るには /help mode を参照してください (注意: 値は評価されます、/help eval を参照してください; ここで ${irc_server.xxx} はサーバオプション、${server} はサーバ名を意味します)] +** タイプ: 文字列 +** 値: 未制約文字列 +** デフォルト値: `+""+` + +* [[option_irc.server_default.username]] *irc.server_default.username* +** 説明: pass:none[サーバで使用するユーザ名 (注意: 値は評価されます、/help eval を参照してください; ここで ${irc_server.xxx} はサーバオプション、${server} はサーバ名を意味します)] +** タイプ: 文字列 +** 値: 未制約文字列 +** デフォルト値: `+""+` +// 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[クライアント説明用のテキスト色] +** タイプ: 色 +** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_relay.color.status_active]] *relay.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 +** デフォルト値: `+green+` + +* [[option_relay.color.status_auth_failed]] *relay.color.status_auth_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 +** デフォルト値: `+lightmagenta+` + +* [[option_relay.color.status_connecting]] *relay.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 +** デフォルト値: `+white+` + +* [[option_relay.color.status_disconnected]] *relay.color.status_disconnected* +** 説明: pass:none["接続切断" 状態のテキスト色] +** タイプ: 色 +** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_relay.color.status_waiting_auth]] *relay.color.status_waiting_auth* +** 説明: pass:none["認証待ち" 状態のテキスト色] +** タイプ: 色 +** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_relay.color.text]] *relay.color.text* +** 説明: pass:none[リレーバッファ内のテキスト色] +** タイプ: 色 +** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are 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_relay.color.text_bg]] *relay.color.text_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_relay.color.text_selected]] *relay.color.text_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_relay.irc.backlog_max_minutes]] *relay.irc.backlog_max_minutes* +** 説明: pass:none[IRC チャンネルごとのバックログの最大時間 (分) (0 = 制限無し、例: 1440 = 1 日、10080 = 1 週間、43200 = 1 ヶ月、525600 = 1 年間)] +** タイプ: 整数 +** 値: 0 .. 2147483647 +** デフォルト値: `+0+` + +* [[option_relay.irc.backlog_max_number]] *relay.irc.backlog_max_number* +** 説明: pass:none[IRC チャンネルごとのバックログの最大行数 (0 = 制限無し)] +** タイプ: 整数 +** 値: 0 .. 2147483647 +** デフォルト値: `+1024+` + +* [[option_relay.irc.backlog_since_last_disconnect]] *relay.irc.backlog_since_last_disconnect* +** 説明: pass:none[最後にクライアントを切断した以降のバックログを表示] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+on+` + +* [[option_relay.irc.backlog_since_last_message]] *relay.irc.backlog_since_last_message* +** 説明: pass:none[最後に自分が送信したメッセージ以降のバックログを表示] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+off+` + +* [[option_relay.irc.backlog_tags]] *relay.irc.backlog_tags* +** 説明: pass:none[IRC チャンネルごとのバックログに表示するメッセージタグのコンマ区切りリスト (利用可能なタグ: "irc_join"、"irc_part"、"irc_quit"、"irc_nick"、"irc_privmsg")、"*" = 利用可能な全てのタグ] +** タイプ: 文字列 +** 値: 未制約文字列 +** デフォルト値: `+"irc_privmsg"+` + +* [[option_relay.irc.backlog_time_format]] *relay.irc.backlog_time_format* +** 説明: pass:none[バックログメッセージの時間書式 (書式は man strftime を参照してください) (メッセージの irc タグ内に時間の情報が含まれるため、クライアントがサーバの "server-time" 機能を利用可能にした場合、これは利用されません); 空文字列 = バックログメッセージで時間を表示しない] +** タイプ: 文字列 +** 値: 未制約文字列 +** デフォルト値: `+"[%H:%M] "+` + +* [[option_relay.look.auto_open_buffer]] *relay.look.auto_open_buffer* +** 説明: pass:none[新しいクライアントが接続したらリレーバッファを自動的に開く] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+on+` + +* [[option_relay.look.raw_messages]] *relay.look.raw_messages* +** 説明: pass:none[生データバッファが閉じられた時にメモリに保存する生メッセージの数 (生データバッファを開いたときに表示されるメッセージ)] +** タイプ: 整数 +** 値: 0 .. 65535 +** デフォルト値: `+256+` + +* [[option_relay.network.allow_empty_password]] *relay.network.allow_empty_password* +** 説明: pass:none[リレーで空パスワードの利用を許可します (テストおよびローカルネットワークでリレーを利用する場合を除き、これを有効化するべきではありません)] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+off+` + +* [[option_relay.network.allowed_ips]] *relay.network.allowed_ips* +** 説明: pass:none[リレーの利用を許可する IP アドレスの POSIX 拡張正規表現 (大文字小文字の区別無し、最初に "(?-i)" をつければ区別有り)、例: "^(123\.45\.67\.89|192\.160\..*)$"] +** タイプ: 文字列 +** 値: 未制約文字列 +** デフォルト値: `+""+` + +* [[option_relay.network.auth_timeout]] *relay.network.auth_timeout* +** 説明: pass:none[timeout (in seconds) for client authentication: connection is closed if the client is still not authenticated after this delay and the client status is set to "authentication failed" (0 = wait forever)] +** タイプ: 整数 +** 値: 0 .. 2147483647 +** デフォルト値: `+60+` + +* [[option_relay.network.bind_address]] *relay.network.bind_address* +** 説明: pass:none[割り当てるアドレス (空の場合、全てのインターフェースからの接続を受け付ける、"127.0.0.1" を使えばローカルマシンからの接続のみ許可)] +** タイプ: 文字列 +** 値: 未制約文字列 +** デフォルト値: `+""+` + +* [[option_relay.network.clients_purge_delay]] *relay.network.clients_purge_delay* +** 説明: pass:none[接続を切ったクライアントを追い出すまでの遅延時間 (分単位、0 = すぐにクライアントを追い出す、-1 = 追い出さない)] +** タイプ: 整数 +** 値: -1 .. 43200 +** デフォルト値: `+0+` + +* [[option_relay.network.compression]] *relay.network.compression* +** 説明: pass:none[compression of messages sent to clients with "weechat" protocol: 0 = disable compression, 1 = low compression / fast ... 100 = best compression / slow; the value is a percentage converted to 1-9 for zlib and 1-19 for zstd; the default value is recommended, it offers a good compromise between compression and speed] +** タイプ: 整数 +** 値: 0 .. 100 +** デフォルト値: `+20+` + +* [[option_relay.network.ipv6]] *relay.network.ipv6* +** 説明: pass:none[デフォルトで IPv6 ソケットをリッスン (デフォルトの IPv4 に加えて); 特定のプロトコルでプロトコルに IPv4 と IPv6 (個別または両方) を強制 (/help relay を参照してください)] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+on+` + +* [[option_relay.network.max_clients]] *relay.network.max_clients* +** 説明: pass:none[ポートに接続するクライアントの最大数 (0 = 制限なし)] +** タイプ: 整数 +** 値: 0 .. 2147483647 +** デフォルト値: `+5+` + +* [[option_relay.network.nonce_size]] *relay.network.nonce_size* +** 説明: pass:none[size of nonce (in bytes), generated when a client connects; the client must use this nonce, concatenated to the client nonce and the password when hashing the password in the "init" command of the weechat protocol] +** タイプ: 整数 +** 値: 8 .. 128 +** デフォルト値: `+16+` + +* [[option_relay.network.password]] *relay.network.password* +** 説明: pass:none[このリレーを利用するためにクライアントが必要なパスワード (空の場合パスワードなし、オプション relay.network.allow_empty_password を参照してください) (注意: 値は評価されます、/help eval を参照してください)] +** タイプ: 文字列 +** 値: 未制約文字列 +** デフォルト値: `+""+` + +* [[option_relay.network.password_hash_algo]] *relay.network.password_hash_algo* +** 説明: pass:none[comma separated list of hash algorithms used for password authentication in weechat protocol, among these values: "plain" (password in plain text, not hashed), "sha256", "sha512", "pbkdf2+sha256", "pbkdf2+sha512"), "*" means all algorithms, a name beginning with "!" is a negative value to prevent an algorithm from being used, wildcard "*" is allowed in names (examples: "*", "pbkdf2*", "*,!plain")] +** タイプ: 文字列 +** 値: 未制約文字列 +** デフォルト値: `+"*"+` + +* [[option_relay.network.password_hash_iterations]] *relay.network.password_hash_iterations* +** 説明: pass:none[number of iterations asked to the client in weechat protocol when a hashed password with algorithm PBKDF2 is used for authentication; more iterations is better in term of security but is slower to compute; this number should not be too high if your CPU is slow] +** タイプ: 整数 +** 値: 1 .. 1000000 +** デフォルト値: `+100000+` + +* [[option_relay.network.ssl_cert_key]] *relay.network.ssl_cert_key* +** 説明: pass:none[file with SSL certificate and private key (for serving clients with SSL) (path is evaluated, see function string_eval_path_home in plugin API reference)] +** タイプ: 文字列 +** 値: 未制約文字列 +** デフォルト値: `+"${weechat_config_dir}/ssl/relay.pem"+` + +* [[option_relay.network.ssl_priorities]] *relay.network.ssl_priorities* +** 説明: pass:none[gnutls の優先度を示した文字列 (構文は、gnutls マニュアルの gnutls_priority_init 関数のドキュメントを参照してください、通例: "PERFORMANCE", "NORMAL", "SECURE128", "SECURE256", "EXPORT", "NONE")] +** タイプ: 文字列 +** 値: 未制約文字列 +** デフォルト値: `+"NORMAL:-VERS-SSL3.0"+` + +* [[option_relay.network.totp_secret]] *relay.network.totp_secret* +** 説明: pass:none[時間ベースのワンタイムパスワード (TOTP) の生成に使う secret、base32 でエンコード (文字と 2 から 7 までの数字); これは weechat プロトコルにおけるパスワードに加えた二要素認証用に使われ、空文字列ではいけません (空文字列は TOTP を使わないことを意味します)。(注意: 内容は評価されます、/help eval を参照してください)] +** タイプ: 文字列 +** 値: 未制約文字列 +** デフォルト値: `+""+` + +* [[option_relay.network.totp_window]] *relay.network.totp_window* +** 説明: pass:none[時間ベースのワンタイムパスワードの数、現在のワンタイムパスワードの前後いくつまでのパスワードを考慮するか: 0 = 現在のパスワードのみを考慮、1 = 1 つ前のパスワードも考慮、2 = 2 つ前までのパスワードと現在のパスワードおよび 2 つ後までのパスワードを考慮、...; この値を大きくするとセキュリティレベルが低下します (0 または 1 を推奨します)] +** タイプ: 整数 +** 値: 0 .. 256 +** デフォルト値: `+0+` + +* [[option_relay.network.websocket_allowed_origins]] *relay.network.websocket_allowed_origins* +** 説明: pass:none[ウェブソケットに使うことを許可する origin の "POSIX 拡張正規表現 (大文字小文字を区別しない、"(?-i)" を先頭に置くと大文字小文字を区別する)、例: "^https?://(www\.)?example\.(com|org)"] +** タイプ: 文字列 +** 値: 未制約文字列 +** デフォルト値: `+""+` + +* [[option_relay.weechat.commands]] *relay.weechat.commands* +** 説明: pass:none[クライアントからデータ (テキストまたはコマンド) を受け取った時に許可/拒否するコマンドのカンマ区切りリスト。"*" は任意のコマンド、"!" から始まるコマンド名は拒否したいコマンド、ワイルドカード "*" をコマンド名に使うことも可能です。このオプションはリレークライアントを信用できない (他人にコマンドを実行されては困る) 場合に使ってください。例えば "*,!exec,!quit" は/exec と /quit を除いたすべてのコマンドを許可します] +** タイプ: 文字列 +** 値: 未制約文字列 +** デフォルト値: `+""+` +// end::relay_options[] + +// tag::ruby_options[] +* [[option_ruby.look.check_license]] *ruby.look.check_license* +** 説明: pass:none[スクリプトをロードしたら、ライセンスを確認してください: ライセンスがプラグインのライセンスと異なる場合、警告が表示されます] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+off+` + +* [[option_ruby.look.eval_keep_context]] *ruby.look.eval_keep_context* +** 説明: pass:none[ソースコード評価 (スクリプトコマンドのオプション "eval" またはインフォ "%s_eval") の呼び出し間にコンテキストを保持します; スクリプトコードを評価する際は隠しスクリプトが使われます; このオプションを無効化した場合、評価毎に隠しスクリプトをアンロードします: メモリ使用量を節約できますが、遅いです] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+on+` +// end::ruby_options[] + +// tag::script_options[] +* [[option_script.color.status_autoloaded]] *script.color.status_autoloaded* +** 説明: pass:none["自動ロード" 状態 ("a") に対応する色] +** タイプ: 色 +** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_script.color.status_held]] *script.color.status_held* +** 説明: pass:none["ホールド" 状態 ("H") に対応する色] +** タイプ: 色 +** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_script.color.status_installed]] *script.color.status_installed* +** 説明: pass:none["インストール済み" 状態 ("i") に対応する色] +** タイプ: 色 +** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_script.color.status_obsolete]] *script.color.status_obsolete* +** 説明: pass:none["アップデートが必要" 状態 ("N") に対応する色] +** タイプ: 色 +** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_script.color.status_popular]] *script.color.status_popular* +** 説明: pass:none["人気" 状態 ("*") に対応する色] +** タイプ: 色 +** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_script.color.status_running]] *script.color.status_running* +** 説明: pass:none["実行中" 状態 ("r") に対応する色] +** タイプ: 色 +** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_script.color.status_unknown]] *script.color.status_unknown* +** 説明: pass:none["未定義" 状態 ("?") に対応する色] +** タイプ: 色 +** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_script.color.text]] *script.color.text* +** 説明: pass:none[スクリプトバッファのテキスト色] +** タイプ: 色 +** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are 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_script.color.text_bg]] *script.color.text_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_script.color.text_bg_selected]] *script.color.text_bg_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 +** デフォルト値: `+red+` + +* [[option_script.color.text_date]] *script.color.text_date* +** 説明: pass:none[スクリプトバッファ内の日付のテキスト色] +** タイプ: 色 +** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are 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_script.color.text_date_selected]] *script.color.text_date_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_script.color.text_delimiters]] *script.color.text_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 +** デフォルト値: `+default+` + +* [[option_script.color.text_description]] *script.color.text_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 +** デフォルト値: `+default+` + +* [[option_script.color.text_description_selected]] *script.color.text_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_script.color.text_extension]] *script.color.text_extension* +** 説明: pass:none[スクリプトバッファ内の拡張子のテキスト色] +** タイプ: 色 +** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are 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_script.color.text_extension_selected]] *script.color.text_extension_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_script.color.text_name]] *script.color.text_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+` + +* [[option_script.color.text_name_selected]] *script.color.text_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 +** デフォルト値: `+lightcyan+` + +* [[option_script.color.text_selected]] *script.color.text_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_script.color.text_tags]] *script.color.text_tags* +** 説明: pass:none[スクリプトバッファ内のタグのテキスト色] +** タイプ: 色 +** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_script.color.text_tags_selected]] *script.color.text_tags_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_script.color.text_version]] *script.color.text_version* +** 説明: pass:none[スクリプトバッファ内のバージョンのテキスト色] +** タイプ: 色 +** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_script.color.text_version_loaded]] *script.color.text_version_loaded* +** 説明: pass:none[スクリプトバッファ内のロード済みバージョンのテキスト色] +** タイプ: 色 +** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are 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_script.color.text_version_loaded_selected]] *script.color.text_version_loaded_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_script.color.text_version_selected]] *script.color.text_version_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+` + +* [[option_script.look.columns]] *script.look.columns* +** 説明: pass:none[format of columns displayed in script buffer: following column identifiers are replaced by their values: %a=author, %d=description, %D=date added, %e=extension, %l=language, %L=license, %n=name with extension, %N=name, %r=requirements, %s=status, %t=tags, %u=date updated, %v=version, %V=version loaded, %w=min_weechat, %W=max_weechat)] +** タイプ: 文字列 +** 値: 未制約文字列 +** デフォルト値: `+"%s %n %V %v %u | %d | %t"+` + +* [[option_script.look.diff_color]] *script.look.diff_color* +** 説明: pass:none[比較の結果を色付けする] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+on+` + +* [[option_script.look.diff_command]] *script.look.diff_command* +** 説明: pass:none[インストール済みのスクリプトとリポジトリにあるものの違いを表示するコマンド ("auto" = 比較コマンドの自動検出 (git または diff)、空文字列 = 比較を無効化、その他の文字列 = コマンド名、例えば "diff")] +** タイプ: 文字列 +** 値: 未制約文字列 +** デフォルト値: `+"auto"+` + +* [[option_script.look.display_source]] *script.look.display_source* +** 説明: pass:none[スクリプトの詳細と併せてバッファにスクリプトのソースコードを表示 (スクリプトの詳細が表示された場合、スクリプトは一時的にダウンロードされます)] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+on+` + +* [[option_script.look.quiet_actions]] *script.look.quiet_actions* +** 説明: pass:none[スクリプトバッファ内での操作に対する出力を抑制する: スクリプトがインストール / 削除 / ロード / アンロードされた場合にコアバッファにメッセージを表示しない (エラーは表示される)] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+on+` + +* [[option_script.look.sort]] *script.look.sort* +** 説明: pass:none[デフォルトのスクリプト表示ソートキー: 識別子のコンマ区切りリスト: a=作者、A=自動ロード、d=追加日、e=拡張子、i=インストール済み、l=言語、n=名前、o=アップデートが必要、p=人気、r=実行中、u=アップデート日; 識別子直前の文字 "-" は逆順でソートを意味; 例: "i,u": インストール済みが最初に来て、アップデート日の順にソート] +** タイプ: 文字列 +** 値: 未制約文字列 +** デフォルト値: `+"i,p,n"+` + +* [[option_script.look.translate_description]] *script.look.translate_description* +** 説明: pass:none[スクリプトの翻訳済み説明文 (翻訳が利用できない場合は、英語で表示)] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+on+` + +* [[option_script.look.use_keys]] *script.look.use_keys* +** 説明: pass:none[スクリプトに対して何かアクションを行うにはスクリプトバッファで alt+X キーを使ってください (alt+i = インストール、alt+r = 削除、...); これができない場合、単一のキーを試してください: i、r、...] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+on+` + +* [[option_script.scripts.autoload]] *script.scripts.autoload* +** 説明: pass:none[インストール済みの自動ロードスクリプト ("autoload" ディレクトリ中に親ディレクトリにあるスクリプトのリンクを作成)] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+on+` + +* [[option_script.scripts.cache_expire]] *script.scripts.cache_expire* +** 説明: pass:none[ローカルキャッシュが無効になる時間、分単位 (-1 = 再取得しない、0 = 常に再取得)] +** タイプ: 整数 +** 値: -1 .. 525600 +** デフォルト値: `+1440+` + +* [[option_script.scripts.download_enabled]] *script.scripts.download_enabled* +** 説明: pass:none[enable download of files from the scripts repository when the /script command is used (list of scripts and scripts themselves); the list of scripts is downloaded from the URL specified in the option script.scripts.url; WeeChat will sometimes download again the list of scripts when you use the /script command, even if you don't install a script] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+off+` + +* [[option_script.scripts.download_timeout]] *script.scripts.download_timeout* +** 説明: pass:none[スクリプトのダウンロードとスクリプトのリストに対するタイムアウト時間 (秒単位)] +** タイプ: 整数 +** 値: 1 .. 3600 +** デフォルト値: `+30+` + +* [[option_script.scripts.hold]] *script.scripts.hold* +** 説明: pass:none["ホールド" するスクリプト: コンマ区切りのスクリプトリスト、このリストに含まれるスクリプトはアップグレードされませんし、削除もされません、例: "go.py,urlserver.py"] +** タイプ: 文字列 +** 値: 未制約文字列 +** デフォルト値: `+""+` + +* [[option_script.scripts.path]] *script.scripts.path* +** 説明: pass:none[local cache directory for scripts (path is evaluated, see function string_eval_path_home in plugin API reference)] +** タイプ: 文字列 +** 値: 未制約文字列 +** デフォルト値: `+"${weechat_cache_dir}/script"+` + +* [[option_script.scripts.url]] *script.scripts.url* +** 説明: pass:none[スクリプトのリストを含むファイルの URL] +** タイプ: 文字列 +** 値: 未制約文字列 +** デフォルト値: `+"https://weechat.org/files/plugins.xml.gz"+` +// end::script_options[] + // tag::sec_options[] * [[option_sec.crypt.cipher]] *sec.crypt.cipher* ** 説明: pass:none[データの暗号化を行う暗号鍵 (アルゴリズムの後ろに書かれた数は鍵のビット数)] @@ -29,6 +2287,218 @@ ** デフォルト値: `+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 +** デフォルト値: `+lightred+` + +* [[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_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 +** デフォルト値: `+cyan+` + +* [[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 +** デフォルト値: `+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::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 +** デフォルト値: `+lightgreen+` + +* [[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_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 +** デフォルト値: `+lightblue+` + +* [[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 +** デフォルト値: `+lightcyan+` + +* [[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 +** デフォルト値: `+lightmagenta+` + +* [[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_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 +** デフォルト値: `+cyan+` + +* [[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 +** デフォルト値: `+green+` + +* [[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 +** デフォルト値: `+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::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[バーをスクロールする際の "+" のテキスト色] @@ -1381,544 +3851,6 @@ ** デフォルト値: `+""+` // 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[] - -// 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::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 -** デフォルト値: `+lightred+` - -* [[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 -** デフォルト値: `+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[] - -// 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 -** デフォルト値: `+lightgreen+` - -* [[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_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 -** デフォルト値: `+lightblue+` - -* [[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 -** デフォルト値: `+lightcyan+` - -* [[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 -** デフォルト値: `+lightmagenta+` - -* [[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_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 -** デフォルト値: `+cyan+` - -* [[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 -** デフォルト値: `+green+` - -* [[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 -** デフォルト値: `+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+` - -* [[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 -** デフォルト値: `+lightred+` - -* [[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_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 -** デフォルト値: `+cyan+` - -* [[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 -** デフォルト値: `+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},"+` - -* [[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+` - -* [[option_buflist.look.auto_scroll]] *buflist.look.auto_scroll* -** 説明: pass:none[現在のバッファが常にバーの中に表示されるように自動的にバッファリストバーをスクロールします (この機能はフィリングが "vertical" に設定された左右にあるバーでのみ機能します); 設定値は現在のバーよりも前に表示される行数のパーセント値です (-1 = 自動スクロールを無効化); 例えば値を 50 に設定した場合、現在のバッファがバーの中央に位置するように自動スクロールされます。0 に設定した場合はバーの最初、100 に設定した場合はバーの最後を意味します] -** タイプ: 整数 -** 値: -1 .. 100 -** デフォルト値: `+50+` - -* [[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_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+` - -* [[option_buflist.look.nick_prefix_empty]] *buflist.look.nick_prefix_empty* -** 説明: pass:none[ニックネームプレフィックスが有効化された状態で、そのバッファで対象のニックネームにプレフィックスが付かない場合に、プレフィックスの代わりに空白を表示します] -** タイプ: ブール -** 値: 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] -** タイプ: 整数 -** 値: 1 .. 3 -** デフォルト値: `+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)] -** タイプ: 文字列 -** 値: 未制約文字列 -** デフォルト値: `+"${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] -** タイプ: 整数 -** 値: 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::xfer_options[] * [[option_xfer.color.status_aborted]] *xfer.color.status_aborted* ** 説明: pass:none["中止" 状態のテキスト色] @@ -2106,1935 +4038,3 @@ ** 値: 5 .. 2147483647 ** デフォルト値: `+300+` // end::xfer_options[] - -// tag::irc_options[] -* [[option_irc.color.input_nick]] *irc.color.input_nick* -** 説明: pass:none[インプットバーのニックネームに使う色] -** タイプ: 色 -** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_irc.color.item_channel_modes]] *irc.color.item_channel_modes* -** 説明: pass:none[チャンネル名付近のチャンネルモードに使う色] -** タイプ: 色 -** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are 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_irc.color.item_lag_counting]] *irc.color.item_lag_counting* -** 説明: pass:none[カウント中の遅延インジケータの色 (pong がサーバから返らない場合、遅延は増加する)] -** タイプ: 色 -** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are 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_irc.color.item_lag_finished]] *irc.color.item_lag_finished* -** 説明: pass:none[pong がサーバから返った場合の、遅延インジケータの色] -** タイプ: 色 -** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_irc.color.item_nick_modes]] *irc.color.item_nick_modes* -** 説明: pass:none["input_prompt" バー要素内のニックネームモードに付ける色] -** タイプ: 色 -** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are 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_irc.color.item_tls_version_deprecated]] *irc.color.item_tls_version_deprecated* -** 説明: pass:none[color for deprecated TLS versions in bar item "tls_version"] -** タイプ: 色 -** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_irc.color.item_tls_version_insecure]] *irc.color.item_tls_version_insecure* -** 説明: pass:none[color for insecure TLS versions in bar item "tls_version"] -** タイプ: 色 -** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_irc.color.item_tls_version_ok]] *irc.color.item_tls_version_ok* -** 説明: pass:none[color for higher supported TLS version in bar item "tls_version"] -** タイプ: 色 -** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_irc.color.message_account]] *irc.color.message_account* -** 説明: pass:none[color for text in account messages] -** タイプ: 色 -** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_irc.color.message_chghost]] *irc.color.message_chghost* -** 説明: pass:none[color for text in "chghost" messages] -** タイプ: 色 -** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_irc.color.message_join]] *irc.color.message_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 -** デフォルト値: `+green+` - -* [[option_irc.color.message_kick]] *irc.color.message_kick* -** 説明: pass:none[color for text in kick/kill messages] -** タイプ: 色 -** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_irc.color.message_quit]] *irc.color.message_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 -** デフォルト値: `+red+` - -* [[option_irc.color.message_setname]] *irc.color.message_setname* -** 説明: pass:none[color for text in "setname" messages] -** タイプ: 色 -** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_irc.color.mirc_remap]] *irc.color.mirc_remap* -** 説明: pass:none[メッセージに含まれる mirc の定義する色に対するマッピングをハッシュテーブルで変更: キーは "fg,bg" で -1 (指定無し) から 15 までの整数、値は WeeChat 色名か色番号 (書式: "1,-1:color1;2,7:color2")、例: "1,-1:darkgray;1,2:white,blue" はテキスト色が黒のものを "darkgray" に、背景色が青でテキスト色が黒のものを "white,blue" に変更; IRC コードに対するデフォルトの WeeChat 色は、0=白、1=黒、2=青、3=緑、4=ライトレッド、5=赤、6=赤紫、7=茶色、8=黄色、9=ライトグリーン、10=シアン、11=ライトシアン、12=ライトブルー、13=ライトマゼンタ、14=暗い灰色、15=灰色] -** タイプ: 文字列 -** 値: 未制約文字列 -** デフォルト値: `+"1,-1:darkgray"+` - -* [[option_irc.color.nick_prefixes]] *irc.color.nick_prefixes* -** 説明: pass:none[モード文字を用いたニックネームプレフィックスの色 (o=オペレータ、h=halfop、v=発言、..)、書式: "o:color1;h:color2;v:color3" (モードが見つからない場合、WeeChat はサーバから受け取ったモードの次のものを試す ("PREFIX"); モードが見つからなかった場合は、特殊なモード "*" がデフォルト色として使えます)] -** タイプ: 文字列 -** 値: 未制約文字列 -** デフォルト値: `+"y:lightred;q:lightred;a:lightcyan;o:lightgreen;h:lightmagenta;v:yellow;*:lightblue"+` - -* [[option_irc.color.notice]] *irc.color.notice* -** 説明: pass:none[notices に含まれるテキスト "Notice" の色] -** タイプ: 色 -** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_irc.color.reason_kick]] *irc.color.reason_kick* -** 説明: pass:none[color for reason in kick/kill messages] -** タイプ: 色 -** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are 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_irc.color.reason_quit]] *irc.color.reason_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+` - -* [[option_irc.color.topic_current]] *irc.color.topic_current* -** 説明: pass:none[現在のチャンネルトピックの色 (チャンネルに参加または /topic を使ったときに使われます)] -** タイプ: 色 -** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are 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_irc.color.topic_new]] *irc.color.topic_new* -** 説明: pass:none[新しいチャンネルトピックの色 (トピックが変更されたときに使われます)] -** タイプ: 色 -** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_irc.color.topic_old]] *irc.color.topic_old* -** 説明: pass:none[古いチャンネルトピックの色 (トピックが変更されたときに使われます)] -** タイプ: 色 -** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are 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_irc.look.buffer_open_before_autojoin]] *irc.look.buffer_open_before_autojoin* -** 説明: pass:none[自動で参加した場合 ("autojoin" オプションで参加した場合) に、サーバから JOIN を受信する前にチャンネルバッファを開く; チャンネルとバッファ番号の対応を常に一致させたい場合に便利です] -** タイプ: ブール -** 値: on, off -** デフォルト値: `+on+` - -* [[option_irc.look.buffer_open_before_join]] *irc.look.buffer_open_before_join* -** 説明: pass:none[手動で参加した場合 (/join コマンドを実行した場合) に、サーバから JOIN を受信する前にチャンネルバッファを開く] -** タイプ: ブール -** 値: on, off -** デフォルト値: `+off+` - -* [[option_irc.look.buffer_switch_autojoin]] *irc.look.buffer_switch_autojoin* -** 説明: pass:none[自動で参加した場合に、自動的にチャンネルバッファを移動 (サーバオプション "autojoin" と共に使用)] -** タイプ: ブール -** 値: on, off -** デフォルト値: `+on+` - -* [[option_irc.look.buffer_switch_join]] *irc.look.buffer_switch_join* -** 説明: pass:none[手動で参加した場合に、自動的にチャンネルバッファを移動 (/join コマンドを実行したとき)] -** タイプ: ブール -** 値: on, off -** デフォルト値: `+on+` - -* [[option_irc.look.color_nicks_in_names]] *irc.look.color_nicks_in_names* -** 説明: pass:none[/names の出力にニックネーム色を使用 (またはチャンネル参加時に表示されるニックネームのリスト)] -** タイプ: ブール -** 値: on, off -** デフォルト値: `+off+` - -* [[option_irc.look.color_nicks_in_nicklist]] *irc.look.color_nicks_in_nicklist* -** 説明: pass:none[ニックネームリストでニックネーム色を利用] -** タイプ: ブール -** 値: on, off -** デフォルト値: `+off+` - -* [[option_irc.look.color_nicks_in_server_messages]] *irc.look.color_nicks_in_server_messages* -** 説明: pass:none[サーバからのメッセージにニックネーム色を利用] -** タイプ: ブール -** 値: on, off -** デフォルト値: `+on+` - -* [[option_irc.look.color_pv_nick_like_channel]] *irc.look.color_pv_nick_like_channel* -** 説明: pass:none[チャンネルとプライベートバッファで同じニックネーム色を利用] -** タイプ: ブール -** 値: on, off -** デフォルト値: `+on+` - -* [[option_irc.look.ctcp_time_format]] *irc.look.ctcp_time_format* -** 説明: pass:none[CTCP TIME メッセージに対する応答に利用される時間書式 (日付/時間指定子は strftime の man を参照してください)] -** タイプ: 文字列 -** 値: 未制約文字列 -** デフォルト値: `+"%a, %d %b %Y %T %z"+` - -* [[option_irc.look.display_account_message]] *irc.look.display_account_message* -** 説明: pass:none[display ACCOUNT messages received when capability account-notify is enabled] -** タイプ: ブール -** 値: on, off -** デフォルト値: `+on+` - -* [[option_irc.look.display_away]] *irc.look.display_away* -** 説明: pass:none[離席状態が変更されたらメッセージを表示 (off: 何も表示/送信しない、local: ローカルに表示、channel: チャンネルにアクションを送信)] -** タイプ: 整数 -** 値: off, local, channel -** デフォルト値: `+local+` - -* [[option_irc.look.display_ctcp_blocked]] *irc.look.display_ctcp_blocked* -** 説明: pass:none[ブロックした場合でも CTCP メッセージを表示] -** タイプ: ブール -** 値: on, off -** デフォルト値: `+on+` - -* [[option_irc.look.display_ctcp_reply]] *irc.look.display_ctcp_reply* -** 説明: pass:none[WeeChat が返信した CTCP メッセージを表示] -** タイプ: ブール -** 値: on, off -** デフォルト値: `+on+` - -* [[option_irc.look.display_ctcp_unknown]] *irc.look.display_ctcp_unknown* -** 説明: pass:none[解釈できない CTCP の場合も CTCP メッセージを表示] -** タイプ: ブール -** 値: on, off -** デフォルト値: `+on+` - -* [[option_irc.look.display_extended_join]] *irc.look.display_extended_join* -** 説明: pass:none[display extra information in the JOIN messages: account name and real name (capability extended-join must be enabled)] -** タイプ: ブール -** 値: on, off -** デフォルト値: `+on+` - -* [[option_irc.look.display_host_join]] *irc.look.display_host_join* -** 説明: pass:none[参加メッセージにホスト名を表示] -** タイプ: ブール -** 値: on, off -** デフォルト値: `+on+` - -* [[option_irc.look.display_host_join_local]] *irc.look.display_host_join_local* -** 説明: pass:none[ローカルクライアントからの参加メッセージにホスト名を表示] -** タイプ: ブール -** 値: on, off -** デフォルト値: `+on+` - -* [[option_irc.look.display_host_quit]] *irc.look.display_host_quit* -** 説明: pass:none[退出/終了 メッセージにホスト名を表示] -** タイプ: ブール -** 値: on, off -** デフォルト値: `+on+` - -* [[option_irc.look.display_join_message]] *irc.look.display_join_message* -** 説明: pass:none[チャンネルに参加した後に表示するメッセージのコンマ区切りリスト: 324 = チャンネルモード、329 = チャンネル作成日、332 = トピック、333 = トピックを作成したニックネームおよび日付、353 = チャンネル参加者リスト、366 = 参加人数] -** タイプ: 文字列 -** 値: 未制約文字列 -** デフォルト値: `+"329,332,333,366"+` - -* [[option_irc.look.display_old_topic]] *irc.look.display_old_topic* -** 説明: pass:none[チャンネルトピックが変更された場合に、古いトピックを表示] -** タイプ: ブール -** 値: on, off -** デフォルト値: `+on+` - -* [[option_irc.look.display_pv_away_once]] *irc.look.display_pv_away_once* -** 説明: pass:none[プライベートでは離席状態の変更を 1 回以上表示しない] -** タイプ: ブール -** 値: on, off -** デフォルト値: `+on+` - -* [[option_irc.look.display_pv_back]] *irc.look.display_pv_back* -** 説明: pass:none[ユーザが戻ったら、プライベートウィンドウにメッセージを表示 (サーバとの切断を挟んで)] -** タイプ: ブール -** 値: on, off -** デフォルト値: `+on+` - -* [[option_irc.look.display_pv_nick_change]] *irc.look.display_pv_nick_change* -** 説明: pass:none[display nick change in private] -** タイプ: ブール -** 値: on, off -** デフォルト値: `+on+` - -* [[option_irc.look.display_pv_warning_address]] *irc.look.display_pv_warning_address* -** 説明: pass:none[display a warning in private buffer if the address of remote nick has changed; this option is disabled by default because servers like bitlbee are causing this warning to be displayed when it is not expected (the address of remote nick changes multiple times on login)] -** タイプ: ブール -** 値: on, off -** デフォルト値: `+off+` - -* [[option_irc.look.highlight_channel]] *irc.look.highlight_channel* -** 説明: pass:none[comma separated list of words to highlight in channel buffers (case insensitive, use "(?-i)" at beginning of words to make them case sensitive; special variables $nick, $channel and $server are replaced by their values), these words are added to buffer property "highlight_words" only when buffer is created (it does not affect current buffers), an empty string disables default highlight on nick, examples: "$nick", "(?-i)$nick"] -** タイプ: 文字列 -** 値: 未制約文字列 -** デフォルト値: `+"$nick"+` - -* [[option_irc.look.highlight_pv]] *irc.look.highlight_pv* -** 説明: pass:none[comma separated list of words to highlight in private buffers (case insensitive, use "(?-i)" at beginning of words to make them case sensitive; special variables $nick, $channel and $server are replaced by their values), these words are added to buffer property "highlight_words" only when buffer is created (it does not affect current buffers), an empty string disables default highlight on nick, examples: "$nick", "(?-i)$nick"] -** タイプ: 文字列 -** 値: 未制約文字列 -** デフォルト値: `+"$nick"+` - -* [[option_irc.look.highlight_server]] *irc.look.highlight_server* -** 説明: pass:none[comma separated list of words to highlight in server buffers (case insensitive, use "(?-i)" at beginning of words to make them case sensitive; special variables $nick, $channel and $server are replaced by their values), these words are added to buffer property "highlight_words" only when buffer is created (it does not affect current buffers), an empty string disables default highlight on nick, examples: "$nick", "(?-i)$nick"] -** タイプ: 文字列 -** 値: 未制約文字列 -** デフォルト値: `+"$nick"+` - -* [[option_irc.look.highlight_tags_restrict]] *irc.look.highlight_tags_restrict* -** 説明: pass:none[irc バッファでハイライトを禁止するタグ (ユーザメッセージをハイライトして、サーバメッセージをハイライトしない); タグの区切り文字はコンマ、論理積を取る場合には "+" 使ってください; ワイルドカード "*" を使うことができます; 任意のタグをハイライトさせるには空値を指定してください] -** タイプ: 文字列 -** 値: 未制約文字列 -** デフォルト値: `+"irc_privmsg,irc_notice"+` - -* [[option_irc.look.item_channel_modes_hide_args]] *irc.look.item_channel_modes_hide_args* -** 説明: pass:none[設定したモードのうち少なくとも 1 つがチャンネルモードに設定されていた場合、チャンネルモード引数を隠す (全ての引数を隠すには "*" を使ってください、値が空の場合は全てのチャンネルモード引数が表示されます); 例: チャンネルモードに "k" または "f" が設定されていた場合にチャンネルモード引数を隠すには "kf" と設定してください] -** タイプ: 文字列 -** 値: 未制約文字列 -** デフォルト値: `+"k"+` - -* [[option_irc.look.item_display_server]] *irc.look.item_display_server* -** 説明: pass:none[IRC サーバが表示されるバー要素の名前 (ステータスバー用)] -** タイプ: 整数 -** 値: buffer_plugin, buffer_name -** デフォルト値: `+buffer_plugin+` - -* [[option_irc.look.item_nick_modes]] *irc.look.item_nick_modes* -** 説明: pass:none["input_prompt" バー要素ではニックネームモードを表示] -** タイプ: ブール -** 値: on, off -** デフォルト値: `+on+` - -* [[option_irc.look.item_nick_prefix]] *irc.look.item_nick_prefix* -** 説明: pass:none["input_prompt" バー要素ではニックネームプレフィックスを表示] -** タイプ: ブール -** 値: on, off -** デフォルト値: `+on+` - -* [[option_irc.look.join_auto_add_chantype]] *irc.look.join_auto_add_chantype* -** 説明: pass:none[/join コマンドに与えたチャンネル名の最初にそのサーバで有効なチャンネルタイプが付けられていなかった場合、チャンネル名の前にチャンネルタイプを自動追加する; 例: "/join weechat" とした場合、実際に送信されるコマンドは "/join #weechat" になります] -** タイプ: ブール -** 値: on, off -** デフォルト値: `+off+` - -* [[option_irc.look.msgbuffer_fallback]] *irc.look.msgbuffer_fallback* -** 説明: pass:none[ターゲットがプライベートでプライベートバッファが見つからない場合の msgbuffer オプション用のデフォルトのターゲットバッファ] -** タイプ: 整数 -** 値: current, server -** デフォルト値: `+current+` - -* [[option_irc.look.new_channel_position]] *irc.look.new_channel_position* -** 説明: pass:none[バッファリスト内で新しいチャンネルの位置を固定 (none = デフォルトの位置 (一番後ろのバッファ)、next = 現在のバッファ番号 + 1、near_server = サーバの一番後ろのチャンネル/プライベートバッファ)] -** タイプ: 整数 -** 値: none, next, near_server -** デフォルト値: `+none+` - -* [[option_irc.look.new_pv_position]] *irc.look.new_pv_position* -** 説明: pass:none[バッファリスト内で新しいプライベートバッファの位置を固定 (none = デフォルトの位置 (一番後ろのバッファ)、next = 現在のバッファ番号 + 1、near_server = サーバの一番後ろのチャンネル/プライベートバッファ)] -** タイプ: 整数 -** 値: none, next, near_server -** デフォルト値: `+none+` - -* [[option_irc.look.nick_completion_smart]] *irc.look.nick_completion_smart* -** 説明: pass:none[ニックネームのスマート補完 (発言日時の新しいものから順にニックネームを補完): speakers = すべてのニックネーム (ハイライトされたニックネームを含む)、speakers_highlights = ハイライトされたニックネームのみ] -** タイプ: 整数 -** 値: off, speakers, speakers_highlights -** デフォルト値: `+speakers+` - -* [[option_irc.look.nick_mode]] *irc.look.nick_mode* -** 説明: pass:none[ニックネームの前にニックネームモード (オペレータ、voice 権) を表示する (none = 表示しない、prefix = プレフィックスだけに表示 (デフォルト)、action = アクションメッセージだけに表示、both = プレフィックスとアクションメッセージの両方に表示)] -** タイプ: 整数 -** 値: none, prefix, action, both -** デフォルト値: `+prefix+` - -* [[option_irc.look.nick_mode_empty]] *irc.look.nick_mode_empty* -** 説明: pass:none[ニックネームモードが有効でニックネームモードを持っていない (オペレータでない、voice 権がない) 場合にはこれを空白で表示する] -** タイプ: ブール -** 値: on, off -** デフォルト値: `+off+` - -* [[option_irc.look.nicks_hide_password]] *irc.look.nicks_hide_password* -** 説明: pass:none[メッセージを送信する際にパスワードを隠すニックネームのコンマ区切りリスト、例えば "/msg nickserv identify password" で表示されるメッセージに含まれるパスワードを隠すために使います、例: "nickserv,nickbot"] -** タイプ: 文字列 -** 値: 未制約文字列 -** デフォルト値: `+"nickserv"+` - -* [[option_irc.look.notice_as_pv]] *irc.look.notice_as_pv* -** 説明: pass:none[notice をプライベートメッセージとして表示 (auto の場合、プライベートバッファが見つかればそれを使用する)] -** タイプ: 整数 -** 値: auto, never, always -** デフォルト値: `+auto+` - -* [[option_irc.look.notice_welcome_redirect]] *irc.look.notice_welcome_redirect* -** 説明: pass:none[チャンネルからの歓迎メッセージをチャンネルを表示するバッファへ自動リダイレクト; 歓迎メッセージの宛先はニックネームですが、メッセージの先頭に含まれるチャンネル名をもとに、そのチャンネルを表示するバッファへメッセージをリダイレクトします。Atheme IRC サービスが送信する ENTRYMSG 通知の例: "[#channel\] Welcome to this channel..."] -** タイプ: ブール -** 値: on, off -** デフォルト値: `+on+` - -* [[option_irc.look.notice_welcome_tags]] *irc.look.notice_welcome_tags* -** 説明: pass:none[ようこそ通知に使われ、チャンネルに転送するタグのコンマ区切りリスト、例: "notify_private"] -** タイプ: 文字列 -** 値: 未制約文字列 -** デフォルト値: `+""+` - -* [[option_irc.look.notify_tags_ison]] *irc.look.notify_tags_ison* -** 説明: pass:none[あるニックネームが参加またはサーバから切断した際の (ison または monitor コマンドの結果) notify が表示するメッセージで使うタグのコンマ区切りリスト、例えば: "notify_message"、"notify_highlight"、"notify_private"] -** タイプ: 文字列 -** 値: 未制約文字列 -** デフォルト値: `+"notify_message"+` - -* [[option_irc.look.notify_tags_whois]] *irc.look.notify_tags_whois* -** 説明: pass:none[ニックネームの離席状態に変化があった場合の (whois コマンドの結果)、notify によって表示されたメッセージに使われたタグのコンマ区切りリスト、例: "notify_message"、"notify_private"、"notify_highlight"] -** タイプ: 文字列 -** 値: 未制約文字列 -** デフォルト値: `+"notify_message"+` - -* [[option_irc.look.part_closes_buffer]] *irc.look.part_closes_buffer* -** 説明: pass:none[/part を実行した場合にバッファを閉じる] -** タイプ: ブール -** 値: on, off -** デフォルト値: `+off+` - -* [[option_irc.look.pv_buffer]] *irc.look.pv_buffer* -** 説明: pass:none[プライベートバッファをマージ] -** タイプ: 整数 -** 値: independent, merge_by_server, merge_all -** デフォルト値: `+independent+` - -* [[option_irc.look.pv_tags]] *irc.look.pv_tags* -** 説明: pass:none[プライベートメッセージに使われたタグのコンマ区切りリスト、例: "notify_message"、"notify_private"、"notify_highlight"] -** タイプ: 文字列 -** 値: 未制約文字列 -** デフォルト値: `+"notify_private"+` - -* [[option_irc.look.raw_messages]] *irc.look.raw_messages* -** 説明: pass:none[生データバッファが閉じられた時にメモリに保存する生メッセージの数 (生データバッファを開いたときに表示されるメッセージ)] -** タイプ: 整数 -** 値: 0 .. 65535 -** デフォルト値: `+256+` - -* [[option_irc.look.server_buffer]] *irc.look.server_buffer* -** 説明: pass:none[サーババッファをマージ; レイアウトが保存され、それがこのオプションと矛盾する場合 (/help layout を参照してください)、このオプションは何もしません] -** タイプ: 整数 -** 値: merge_with_core, merge_without_core, independent -** デフォルト値: `+merge_with_core+` - -* [[option_irc.look.smart_filter]] *irc.look.smart_filter* -** 説明: pass:none[filter join/part/quit/nick messages for a nick if not speaking for some minutes on channel (you must create a filter on tag "irc_smart_filter", see /help filter)] -** タイプ: ブール -** 値: on, off -** デフォルト値: `+on+` - -* [[option_irc.look.smart_filter_account]] *irc.look.smart_filter_account* -** 説明: pass:none[enable smart filter for "account" messages] -** タイプ: ブール -** 値: on, off -** デフォルト値: `+on+` - -* [[option_irc.look.smart_filter_chghost]] *irc.look.smart_filter_chghost* -** 説明: pass:none["chghost" メッセージのスマートフィルタを有効化] -** タイプ: ブール -** 値: on, off -** デフォルト値: `+on+` - -* [[option_irc.look.smart_filter_delay]] *irc.look.smart_filter_delay* -** 説明: pass:none[参加/退出/終了メッセージをフィルタするまでの遅延時間 (分単位): ニックネームが N 分以上発言しなかった場合、参加/退出/終了メッセージをフィルタする] -** タイプ: 整数 -** 値: 1 .. 10080 -** デフォルト値: `+5+` - -* [[option_irc.look.smart_filter_join]] *irc.look.smart_filter_join* -** 説明: pass:none["join" メッセージのスマートフィルタを有効化] -** タイプ: ブール -** 値: on, off -** デフォルト値: `+on+` - -* [[option_irc.look.smart_filter_join_unmask]] *irc.look.smart_filter_join_unmask* -** 説明: pass:none["irc_smart_filter" タグでフィルタリングされる参加メッセージのマスクを外すまでの遅延時間 (分単位): 最長 N 分前にあるニックネームがあるチャンネルに参加し、そこで何か喋るか (メッセージ、通知、トピックのアップデートなど) 参加後にニックネームを変更したら、参加メッセージのマスクが外れます (0 = 無効: 参加メッセージは必ずマスクされます)] -** タイプ: 整数 -** 値: 0 .. 10080 -** デフォルト値: `+30+` - -* [[option_irc.look.smart_filter_mode]] *irc.look.smart_filter_mode* -** 説明: pass:none["mode" メッセージに対するスマートフィルタを有効化する: すべてのモード変更メッセージをフィルタするには "*"、サーバプレフィックス (例えば "ovh") モードの変更メッセージをフィルタするには "+"、x/y/z モードの変更メッセージをフィルタするには "xyz"、x/y/z モード以外のモード変更メッセージをフィルタするには "-xyz"; 例: "ovh": o/v/h モードの変更メッセージをフィルタする、"-bkl": b/k/l モード以外のモード変更メッセージをフィルタ] -** タイプ: 文字列 -** 値: 未制約文字列 -** デフォルト値: `+"+"+` - -* [[option_irc.look.smart_filter_nick]] *irc.look.smart_filter_nick* -** 説明: pass:none["nick" メッセージに対するスマートフィルタを有効化 (ニックネームの変更通知)] -** タイプ: ブール -** 値: on, off -** デフォルト値: `+on+` - -* [[option_irc.look.smart_filter_quit]] *irc.look.smart_filter_quit* -** 説明: pass:none["part" と "quit" メッセージのスマートフィルタを有効化] -** タイプ: ブール -** 値: on, off -** デフォルト値: `+on+` - -* [[option_irc.look.smart_filter_setname]] *irc.look.smart_filter_setname* -** 説明: pass:none[enable smart filter for "setname" messages] -** タイプ: ブール -** 値: on, off -** デフォルト値: `+on+` - -* [[option_irc.look.temporary_servers]] *irc.look.temporary_servers* -** 説明: pass:none[/connect コマンドによる一時的なサーバの自動追加を有効化する] -** タイプ: ブール -** 値: on, off -** デフォルト値: `+off+` - -* [[option_irc.look.topic_strip_colors]] *irc.look.topic_strip_colors* -** 説明: pass:none[トピックにつけられた色を無効化 (バッファタイルに表示される場合のみ利用)] -** タイプ: ブール -** 値: on, off -** デフォルト値: `+off+` - -* [[option_irc.look.typing_status_nicks]] *irc.look.typing_status_nicks* -** 説明: pass:none[display nicks typing on the channel in bar item "typing" (option typing.look.enabled_nicks must be enabled and capability "message-tags" must be enabled on the server)] -** タイプ: ブール -** 値: on, off -** デフォルト値: `+off+` - -* [[option_irc.look.typing_status_self]] *irc.look.typing_status_self* -** 説明: pass:none[send self typing status to channels so that other users see when you are typing a message (option typing.look.enabled_self must be enabled and capability "message-tags" must be enabled on the server)] -** タイプ: ブール -** 値: on, off -** デフォルト値: `+off+` - -* [[option_irc.network.autoreconnect_delay_growing]] *irc.network.autoreconnect_delay_growing* -** 説明: pass:none[サーバに自動再接続する際の遅延間隔に関する増加係数 (1 = 遅延間隔は常に同じ, 2 = リトライごとに遅延間隔を 2 倍、など)] -** タイプ: 整数 -** 値: 1 .. 100 -** デフォルト値: `+2+` - -* [[option_irc.network.autoreconnect_delay_max]] *irc.network.autoreconnect_delay_max* -** 説明: pass:none[サーバへの自動接続の遅延時間の最大値 (秒単位、0 = 制限無し)] -** タイプ: 整数 -** 値: 0 .. 604800 -** デフォルト値: `+600+` - -* [[option_irc.network.ban_mask_default]] *irc.network.ban_mask_default* -** 説明: pass:none[/ban、/unban、/kickban コマンドが使うデフォルトの禁止マスク; 変数 $nick、$user、$ident、$host はそれぞれの値に置換 ("nick!user@host" から展開) されます; $user が "~" で始まらない場合 $ident は $user と同じで、それ以外の場合 $ident は "*" になります; 設定したデフォルトマスクはニックネームのホスト名がわかる場合のみ利用されます] -** タイプ: 文字列 -** 値: 未制約文字列 -** デフォルト値: `+"*!$ident@$host"+` - -* [[option_irc.network.colors_receive]] *irc.network.colors_receive* -** 説明: pass:none[オフの場合、到着メッセージに含まれる色コードを無視] -** タイプ: ブール -** 値: on, off -** デフォルト値: `+on+` - -* [[option_irc.network.colors_send]] *irc.network.colors_send* -** 説明: pass:none[特別なコードを使ってユーザが色を送信することを許可 (ctrl-c + 色コードと任意の色: b=太字、cxx=テキスト色、cxx,yy=テキスト色+背景色、i=イタリック、o=色や属性の無効化、r=反転、u=下線)] -** タイプ: ブール -** 値: on, off -** デフォルト値: `+on+` - -* [[option_irc.network.lag_check]] *irc.network.lag_check* -** 説明: pass:none[遅延の確認間のインターバル (秒単位、0 = 確認しない)] -** タイプ: 整数 -** 値: 0 .. 604800 -** デフォルト値: `+60+` - -* [[option_irc.network.lag_max]] *irc.network.lag_max* -** 説明: pass:none[遅延時間の最大値 (秒単位): 遅延時間がこの値よりも大きくなった場合、WeeChat はサーバからの応答 (pong) が到着しないと考え、遅延時間の計測を中止します (0 = 遅延時間の計測を中止しない)] -** タイプ: 整数 -** 値: 0 .. 604800 -** デフォルト値: `+1800+` - -* [[option_irc.network.lag_min_show]] *irc.network.lag_min_show* -** 説明: pass:none[表示する最短の遅延 (ミリ秒単位)] -** タイプ: 整数 -** 値: 0 .. 86400000 -** デフォルト値: `+500+` - -* [[option_irc.network.lag_reconnect]] *irc.network.lag_reconnect* -** 説明: pass:none[遅延時間がこの値以上に長くなった場合は再接続 (秒単位、0 = 再接続しない); この値は必ず irc.network.lag_max 以下にしてください] -** タイプ: 整数 -** 値: 0 .. 604800 -** デフォルト値: `+300+` - -* [[option_irc.network.lag_refresh_interval]] *irc.network.lag_refresh_interval* -** 説明: pass:none[遅延時間が増加した際の、遅延要素の 2 回のリフレッシュの間のインターバル (秒単位)] -** タイプ: 整数 -** 値: 1 .. 3600 -** デフォルト値: `+1+` - -* [[option_irc.network.notify_check_ison]] *irc.network.notify_check_ison* -** 説明: pass:none[IRC コマンド "ison" による通知の 2 回のチェックの間のインターバル (分単位)] -** タイプ: 整数 -** 値: 1 .. 10080 -** デフォルト値: `+1+` - -* [[option_irc.network.notify_check_whois]] *irc.network.notify_check_whois* -** 説明: pass:none[IRC コマンド "whois" による通知の 2 回のチェックの間のインターバル (分単位)] -** タイプ: 整数 -** 値: 1 .. 10080 -** デフォルト値: `+5+` - -* [[option_irc.network.sasl_fail_unavailable]] *irc.network.sasl_fail_unavailable* -** 説明: pass:none[対象のサーバに対して SASL を要求したものの SASL が使えなかった場合に SASL 認証失敗として取り扱う; このオプションの有効化は、対象のサーバに対するオプション "sasl_fail" を "reconnect" または "disconnect" に設定した場合にのみ、効果があります] -** タイプ: ブール -** 値: on, off -** デフォルト値: `+on+` - -* [[option_irc.network.send_unknown_commands]] *irc.network.send_unknown_commands* -** 説明: pass:none[未定義のコマンドをサーバに送信] -** タイプ: ブール -** 値: on, off -** デフォルト値: `+off+` - -* [[option_irc.network.whois_double_nick]] *irc.network.whois_double_nick* -** 説明: pass:none[/whois コマンドの引数に 2 重のニックネームを付ける (ニックネームが 1 つだけ指定された場合)、これによりアイドル時間が返されます; 例: "/whois nick" で "whois nick nick" が送信されます] -** タイプ: ブール -** 値: on, off -** デフォルト値: `+off+` - -* [[option_irc.server_default.addresses]] *irc.server_default.addresses* -** 説明: pass:none[サーバのホスト名/ポート番号または IP アドレス/ポート番号のリスト (コンマ区切り) (注意: 値は評価されます、/help eval を参照してください; ここで ${irc_server.xxx} はサーバオプション、${server} はサーバ名を意味します)] -** タイプ: 文字列 -** 値: 未制約文字列 -** デフォルト値: `+""+` - -* [[option_irc.server_default.anti_flood_prio_high]] *irc.server_default.anti_flood_prio_high* -** 説明: pass:none[高優先度キュー用のアンチフロード: ユーザメッセージかコマンドを IRC サーバに送信する場合の遅延秒 (0 = アンチフロード無効)] -** タイプ: 整数 -** 値: 0 .. 60 -** デフォルト値: `+2+` - -* [[option_irc.server_default.anti_flood_prio_low]] *irc.server_default.anti_flood_prio_low* -** 説明: pass:none[低優先度キュー用のアンチフロード: ユーザメッセージかコマンドを IRC サーバに送信する場合の遅延秒 (自動 CTCP 応答等のメッセージ) (0 = アンチフロード無効)] -** タイプ: 整数 -** 値: 0 .. 60 -** デフォルト値: `+2+` - -* [[option_irc.server_default.autoconnect]] *irc.server_default.autoconnect* -** 説明: pass:none[WeeChat の起動時に自動的にサーバに接続] -** タイプ: ブール -** 値: on, off -** デフォルト値: `+off+` - -* [[option_irc.server_default.autojoin]] *irc.server_default.autojoin* -** 説明: pass:none[サーバに接続した後 (設定されていればさらにコマンドを実行し、遅延時間待った後) に参加するチャンネルのコンマ区切りリスト;鍵が必要なチャンネルはリストの最初に指定し、すべての鍵はチャンネルの後に指定してください (チャンネルと鍵の区切りは空白) (例: "#channel1,#channel2,#channel3 key1,key2" この場合 #channel1 と #channel2 への参加に必要な鍵はそれぞれ key1 と key2) (注意: 値は評価されます、/help eval を参照してください; ここで ${irc_server.xxx} はサーバオプション、${server} はサーバ名を意味します)] -** タイプ: 文字列 -** 値: 未制約文字列 -** デフォルト値: `+""+` - -* [[option_irc.server_default.autojoin_dynamic]] *irc.server_default.autojoin_dynamic* -** 説明: pass:none[set automatically the "autojoin" option according to the channels you manually join and part with commands /join and /part] -** タイプ: ブール -** 値: on, off -** デフォルト値: `+off+` - -* [[option_irc.server_default.autoreconnect]] *irc.server_default.autoreconnect* -** 説明: pass:none[接続が切れたときに自動的に再接続] -** タイプ: ブール -** 値: on, off -** デフォルト値: `+on+` - -* [[option_irc.server_default.autoreconnect_delay]] *irc.server_default.autoreconnect_delay* -** 説明: pass:none[サーバへの再接続の際の遅延 (秒単位) 時間] -** タイプ: 整数 -** 値: 1 .. 65535 -** デフォルト値: `+10+` - -* [[option_irc.server_default.autorejoin]] *irc.server_default.autorejoin* -** 説明: pass:none[キックされた後のチャンネルへの最参加を自動的に行う; あるチャンネルに対して設定を上書きするにはバッファローカル変数を定義してください (変数の名前: "autorejoin"、値: "on" または "off")] -** タイプ: ブール -** 値: on, off -** デフォルト値: `+off+` - -* [[option_irc.server_default.autorejoin_delay]] *irc.server_default.autorejoin_delay* -** 説明: pass:none[自動再参加前の遅延時間 (秒単位) (キック後)] -** タイプ: 整数 -** 値: 0 .. 86400 -** デフォルト値: `+30+` - -* [[option_irc.server_default.away_check]] *irc.server_default.away_check* -** 説明: pass:none[2 つの away チェック間のインターバル (分、0 = チェックしない)] -** タイプ: 整数 -** 値: 0 .. 10080 -** デフォルト値: `+0+` - -* [[option_irc.server_default.away_check_max_nicks]] *irc.server_default.away_check_max_nicks* -** 説明: pass:none[大きなニックネーム番号を持つニックネームに対しては、away 確認を行わない (0 = 制限無し)] -** タイプ: 整数 -** 値: 0 .. 1000000 -** デフォルト値: `+25+` - -* [[option_irc.server_default.capabilities]] *irc.server_default.capabilities* -** 説明: pass:none[comma-separated list of client capabilities to enable for server if they are available (see /help cap for a list of capabilities supported by WeeChat); "*" enables all capabilities by default (supported by both server and WeeChat); wildcard "*" is allowed; a capability beginning with "!" is excluded (example: "*,!account-*,!extended-join")] -** タイプ: 文字列 -** 値: 未制約文字列 -** デフォルト値: `+"*"+` - -* [[option_irc.server_default.charset_message]] *irc.server_default.charset_message* -** 説明: pass:none[part of the IRC message (received or sent) which is decoded/encoded to the target charset; message = the whole IRC message (default), channel = starting from the channel name only (if found, with fallback on text), text = starting from the text only (you should try this value if you have issues with the channel name encoding)] -** タイプ: 整数 -** 値: message, channel, text -** デフォルト値: `+message+` - -* [[option_irc.server_default.command]] *irc.server_default.command* -** 説明: pass:none[command(s) to run after connection to server and before auto-join of channels (many commands can be separated by ";", use "\;" for a semicolon, special variables $nick, $channel and $server are replaced by their values) (note: commands are evaluated, see /help eval; server options are evaluated with ${irc_server.xxx} and ${server} is replaced by the server name)] -** タイプ: 文字列 -** 値: 未制約文字列 -** デフォルト値: `+""+` - -* [[option_irc.server_default.command_delay]] *irc.server_default.command_delay* -** 説明: pass:none[コマンドを実行して、チャンネルに自動参加するまでの遅延時間 (秒単位) (例: 認証に時間がかかる場合にチャンネル参加前に少し時間を空ける)] -** タイプ: 整数 -** 値: 0 .. 3600 -** デフォルト値: `+0+` - -* [[option_irc.server_default.connection_timeout]] *irc.server_default.connection_timeout* -** 説明: pass:none[サーバとの TCP 接続と 001 メッセージ受信間のタイムアウト (秒単位)、001 メッセージ受信前にタイムアウト時間を経過した場合は、WeeChat はサーバとの接続を切断] -** タイプ: 整数 -** 値: 1 .. 3600 -** デフォルト値: `+60+` - -* [[option_irc.server_default.default_chantypes]] *irc.server_default.default_chantypes* -** 説明: pass:none[channel type prefixes to use if the server does not send them in message 005 (default is "#&")] -** タイプ: 文字列 -** 値: 未制約文字列 -** デフォルト値: `+"#&"+` - -* [[option_irc.server_default.ipv6]] *irc.server_default.ipv6* -** 説明: pass:none[サーバ接続に IPv6 プロトコルを利用 (IPv6 の利用に失敗したら IPv4 を利用); 無効の場合には IPv4 を利用] -** タイプ: ブール -** 値: on, off -** デフォルト値: `+on+` - -* [[option_irc.server_default.local_hostname]] *irc.server_default.local_hostname* -** 説明: pass:none[サーバで使用するカスタムホスト名/IP アドレス (任意、空の場合はローカルホスト名が使われる)] -** タイプ: 文字列 -** 値: 未制約文字列 -** デフォルト値: `+""+` - -* [[option_irc.server_default.msg_kick]] *irc.server_default.msg_kick* -** 説明: pass:none[default kick message used by commands "/kick" and "/kickban" (note: content is evaluated, see /help eval; special variables ${nick} (self nick), ${target} (target nick), ${channel} and ${server} are replaced by their values)] -** タイプ: 文字列 -** 値: 未制約文字列 -** デフォルト値: `+""+` - -* [[option_irc.server_default.msg_part]] *irc.server_default.msg_part* -** 説明: pass:none[default part message (leaving channel) (note: content is evaluated, see /help eval; special variables ${nick}, ${channel} and ${server} are replaced by their values; "%v" is replaced by WeeChat version if there is no ${...} in string)] -** タイプ: 文字列 -** 値: 未制約文字列 -** デフォルト値: `+"WeeChat ${info:version}"+` - -* [[option_irc.server_default.msg_quit]] *irc.server_default.msg_quit* -** 説明: pass:none[default quit message (disconnecting from server) (note: content is evaluated, see /help eval; special variables ${nick}, ${channel} and ${server} are replaced by their values; "%v" is replaced by WeeChat version if there is no ${...} in string)] -** タイプ: 文字列 -** 値: 未制約文字列 -** デフォルト値: `+"WeeChat ${info:version}"+` - -* [[option_irc.server_default.nicks]] *irc.server_default.nicks* -** 説明: pass:none[サーバで使用するニックネーム (コンマ区切り) (注意: 値は評価されます、/help eval を参照してください; ここで ${irc_server.xxx} はサーバオプション、${server} はサーバ名を意味します)] -** タイプ: 文字列 -** 値: 未制約文字列 -** デフォルト値: `+""+` - -* [[option_irc.server_default.nicks_alternate]] *irc.server_default.nicks_alternate* -** 説明: pass:none[すべての指定されたニックネームがサーバで既に利用されている場合、他のニックネームを生成します: ニックネームの長さが 9 になるまで数個の "_" を追加します。その後利用されていないニックネームが見つかるまで、最後の 1 文字 (または最後の 2 文字) を 1 から 99 まで置き換えていきます] -** タイプ: ブール -** 値: on, off -** デフォルト値: `+on+` - -* [[option_irc.server_default.notify]] *irc.server_default.notify* -** 説明: pass:none[サーバの通知リスト (これを変更する場合は、/notify コマンドを使うこと)] -** タイプ: 文字列 -** 値: 未制約文字列 -** デフォルト値: `+""+` - -* [[option_irc.server_default.password]] *irc.server_default.password* -** 説明: pass:none[サーバのパスワード (注意: 値は評価されます、/help eval を参照してください; ここで ${irc_server.xxx} はサーバオプション、${server} はサーバ名を意味します)] -** タイプ: 文字列 -** 値: 未制約文字列 -** デフォルト値: `+""+` - -* [[option_irc.server_default.proxy]] *irc.server_default.proxy* -** 説明: pass:none[このサーバで利用するプロキシ名 (任意、プロキシは /proxy コマンドで確認してください)] -** タイプ: 文字列 -** 値: 未制約文字列 -** デフォルト値: `+""+` - -* [[option_irc.server_default.realname]] *irc.server_default.realname* -** 説明: pass:none[サーバで使用する実名 (注意: 値は評価されます、/help eval を参照してください; ここで ${irc_server.xxx} はサーバオプション、${server} はサーバ名を意味します)] -** タイプ: 文字列 -** 値: 未制約文字列 -** デフォルト値: `+""+` - -* [[option_irc.server_default.sasl_fail]] *irc.server_default.sasl_fail* -** 説明: pass:none[SASL 認証が失敗した場合の挙動: 認証の問題を無視する場合は "continue"、サーバへの再接続を予定する場合は "reconnect"、サーバから切断する場合は "disconnect" (irc.network.sasl_fail_unavailable も参照してください)] -** タイプ: 整数 -** 値: continue, reconnect, disconnect -** デフォルト値: `+reconnect+` - -* [[option_irc.server_default.sasl_key]] *irc.server_default.sasl_key* -** 説明: pass:none[file with ECC private key for mechanism "ecdsa-nist256p-challenge" (path is evaluated, see function string_eval_path_home in plugin API reference)] -** タイプ: 文字列 -** 値: 未制約文字列 -** デフォルト値: `+""+` - -* [[option_irc.server_default.sasl_mechanism]] *irc.server_default.sasl_mechanism* -** 説明: pass:none[mechanism for SASL authentication: "plain" for plain text password, "scram-sha-1" for SCRAM authentication with SHA-1 digest algorithm, "scram-sha-256" for SCRAM authentication with SHA-256 digest algorithm, "scram-sha-512" for SCRAM authentication with SHA-512 digest algorithm, "ecdsa-nist256p-challenge" for key-based challenge authentication, "external" for authentication using client side SSL certificate] -** タイプ: 整数 -** 値: plain, scram-sha-1, scram-sha-256, scram-sha-512, ecdsa-nist256p-challenge, external -** デフォルト値: `+plain+` - -* [[option_irc.server_default.sasl_password]] *irc.server_default.sasl_password* -** 説明: pass:none[SASL 認証のパスワード; このオプションは "ecdsa-nist256p-challenge" および "external" メカニズムの場合には利用されません (注意: 値は評価されます、/help eval を参照してください; ここで ${irc_server.xxx} はサーバオプション、${server} はサーバ名を意味します)] -** タイプ: 文字列 -** 値: 未制約文字列 -** デフォルト値: `+""+` - -* [[option_irc.server_default.sasl_timeout]] *irc.server_default.sasl_timeout* -** 説明: pass:none[SASL 認証を諦める前のタイムアウト (秒単位)] -** タイプ: 整数 -** 値: 1 .. 3600 -** デフォルト値: `+15+` - -* [[option_irc.server_default.sasl_username]] *irc.server_default.sasl_username* -** 説明: pass:none[SASL 認証のユーザ名; このオプションは "external" メカニズムの場合には利用されません (注意: 値は評価されます、/help eval を参照してください; ここで ${irc_server.xxx} はサーバオプション、${server} はサーバ名を意味します)] -** タイプ: 文字列 -** 値: 未制約文字列 -** デフォルト値: `+""+` - -* [[option_irc.server_default.split_msg_max_length]] *irc.server_default.split_msg_max_length* -** 説明: pass:none[送信 IRC メッセージを指定した文字数に分割します; デフォルトの文字数は 512 であり、この安全なデフォルト値を使うことを推奨します; 0 は分割機能を無効化します (自分のしていることがわかっている場合を除いて非推奨です); 値は 0 もしくは 128 から 4096 までの任意の整数にしてください; 標準的でない IRC サーバ (例えば bitlbee などのゲートウェイ) を使う場合に限り、このオプションを変更すべきです] -** タイプ: 整数 -** 値: 0 .. 4096 -** デフォルト値: `+512+` - -* [[option_irc.server_default.ssl]] *irc.server_default.ssl* -** 説明: pass:none[サーバとの通信に SSL を利用] -** タイプ: ブール -** 値: on, off -** デフォルト値: `+off+` - -* [[option_irc.server_default.ssl_cert]] *irc.server_default.ssl_cert* -** 説明: pass:none[SSL certificate file used to automatically identify your nick (path is evaluated, see function string_eval_path_home in plugin API reference)] -** タイプ: 文字列 -** 値: 未制約文字列 -** デフォルト値: `+""+` - -* [[option_irc.server_default.ssl_dhkey_size]] *irc.server_default.ssl_dhkey_size* -** 説明: pass:none[Diffie-Hellman 鍵交換で使われる鍵長] -** タイプ: 整数 -** 値: 0 .. 2147483647 -** デフォルト値: `+2048+` - -* [[option_irc.server_default.ssl_fingerprint]] *irc.server_default.ssl_fingerprint* -** 説明: pass:none[信頼でき、通信を認めるサーバ証明書の指紋; 16 進数で使える文字 (0-9, a-f) 以外は指定できません: SHA-512 の場合 128 文字、SHA-256 の場合 64 文字、SHA-1 の場合 40 文字 (危険、非推奨) です。複数の指紋を設定する場合はコンマで区切ってください; このオプションを設定した場合、証明書に対する他の妥当性確認は行われません (オプション "ssl_verify") (注意: 値は評価されます、/help eval を参照してください; ここで ${irc_server.xxx} はサーバオプション、${server} はサーバ名を意味します)] -** タイプ: 文字列 -** 値: 未制約文字列 -** デフォルト値: `+""+` - -* [[option_irc.server_default.ssl_password]] *irc.server_default.ssl_password* -** 説明: pass:none[password for SSL certificate's private key; only used with gnutls version >= 3.1.0 (note: content is evaluated, see /help eval; server options are evaluated with ${irc_server.xxx} and ${server} is replaced by the server name)] -** タイプ: 文字列 -** 値: 未制約文字列 -** デフォルト値: `+""+` - -* [[option_irc.server_default.ssl_priorities]] *irc.server_default.ssl_priorities* -** 説明: pass:none[gnutls の優先度を示した文字列 (構文は、gnutls マニュアルの gnutls_priority_init 関数のドキュメントを参照してください、通例: "PERFORMANCE", "NORMAL", "SECURE128", "SECURE256", "EXPORT", "NONE")] -** タイプ: 文字列 -** 値: 未制約文字列 -** デフォルト値: `+"NORMAL:-VERS-SSL3.0"+` - -* [[option_irc.server_default.ssl_verify]] *irc.server_default.ssl_verify* -** 説明: pass:none[SSL 接続が完全に信頼できることを確認] -** タイプ: ブール -** 値: on, off -** デフォルト値: `+on+` - -* [[option_irc.server_default.usermode]] *irc.server_default.usermode* -** 説明: pass:none[サーバへの接続後、コマンドの実行とチャンネルへの自動参加前に設定するユーザモード; 例: "+R" (モード "R" を設定)、"+R-i" (モード "R" を設定、モード "i" を未設定); 完全なモード書式を見るには /help mode を参照してください (注意: 値は評価されます、/help eval を参照してください; ここで ${irc_server.xxx} はサーバオプション、${server} はサーバ名を意味します)] -** タイプ: 文字列 -** 値: 未制約文字列 -** デフォルト値: `+""+` - -* [[option_irc.server_default.username]] *irc.server_default.username* -** 説明: pass:none[サーバで使用するユーザ名 (注意: 値は評価されます、/help eval を参照してください; ここで ${irc_server.xxx} はサーバオプション、${server} はサーバ名を意味します)] -** タイプ: 文字列 -** 値: 未制約文字列 -** デフォルト値: `+""+` -// end::irc_options[] - -// tag::relay_options[] -* [[option_relay.color.client]] *relay.color.client* -** 説明: pass:none[クライアント説明用のテキスト色] -** タイプ: 色 -** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_relay.color.status_active]] *relay.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 -** デフォルト値: `+green+` - -* [[option_relay.color.status_auth_failed]] *relay.color.status_auth_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 -** デフォルト値: `+lightmagenta+` - -* [[option_relay.color.status_connecting]] *relay.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 -** デフォルト値: `+white+` - -* [[option_relay.color.status_disconnected]] *relay.color.status_disconnected* -** 説明: pass:none["接続切断" 状態のテキスト色] -** タイプ: 色 -** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_relay.color.status_waiting_auth]] *relay.color.status_waiting_auth* -** 説明: pass:none["認証待ち" 状態のテキスト色] -** タイプ: 色 -** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_relay.color.text]] *relay.color.text* -** 説明: pass:none[リレーバッファ内のテキスト色] -** タイプ: 色 -** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are 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_relay.color.text_bg]] *relay.color.text_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_relay.color.text_selected]] *relay.color.text_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_relay.irc.backlog_max_minutes]] *relay.irc.backlog_max_minutes* -** 説明: pass:none[IRC チャンネルごとのバックログの最大時間 (分) (0 = 制限無し、例: 1440 = 1 日、10080 = 1 週間、43200 = 1 ヶ月、525600 = 1 年間)] -** タイプ: 整数 -** 値: 0 .. 2147483647 -** デフォルト値: `+0+` - -* [[option_relay.irc.backlog_max_number]] *relay.irc.backlog_max_number* -** 説明: pass:none[IRC チャンネルごとのバックログの最大行数 (0 = 制限無し)] -** タイプ: 整数 -** 値: 0 .. 2147483647 -** デフォルト値: `+1024+` - -* [[option_relay.irc.backlog_since_last_disconnect]] *relay.irc.backlog_since_last_disconnect* -** 説明: pass:none[最後にクライアントを切断した以降のバックログを表示] -** タイプ: ブール -** 値: on, off -** デフォルト値: `+on+` - -* [[option_relay.irc.backlog_since_last_message]] *relay.irc.backlog_since_last_message* -** 説明: pass:none[最後に自分が送信したメッセージ以降のバックログを表示] -** タイプ: ブール -** 値: on, off -** デフォルト値: `+off+` - -* [[option_relay.irc.backlog_tags]] *relay.irc.backlog_tags* -** 説明: pass:none[IRC チャンネルごとのバックログに表示するメッセージタグのコンマ区切りリスト (利用可能なタグ: "irc_join"、"irc_part"、"irc_quit"、"irc_nick"、"irc_privmsg")、"*" = 利用可能な全てのタグ] -** タイプ: 文字列 -** 値: 未制約文字列 -** デフォルト値: `+"irc_privmsg"+` - -* [[option_relay.irc.backlog_time_format]] *relay.irc.backlog_time_format* -** 説明: pass:none[バックログメッセージの時間書式 (書式は man strftime を参照してください) (メッセージの irc タグ内に時間の情報が含まれるため、クライアントがサーバの "server-time" 機能を利用可能にした場合、これは利用されません); 空文字列 = バックログメッセージで時間を表示しない] -** タイプ: 文字列 -** 値: 未制約文字列 -** デフォルト値: `+"[%H:%M] "+` - -* [[option_relay.look.auto_open_buffer]] *relay.look.auto_open_buffer* -** 説明: pass:none[新しいクライアントが接続したらリレーバッファを自動的に開く] -** タイプ: ブール -** 値: on, off -** デフォルト値: `+on+` - -* [[option_relay.look.raw_messages]] *relay.look.raw_messages* -** 説明: pass:none[生データバッファが閉じられた時にメモリに保存する生メッセージの数 (生データバッファを開いたときに表示されるメッセージ)] -** タイプ: 整数 -** 値: 0 .. 65535 -** デフォルト値: `+256+` - -* [[option_relay.network.allow_empty_password]] *relay.network.allow_empty_password* -** 説明: pass:none[リレーで空パスワードの利用を許可します (テストおよびローカルネットワークでリレーを利用する場合を除き、これを有効化するべきではありません)] -** タイプ: ブール -** 値: on, off -** デフォルト値: `+off+` - -* [[option_relay.network.allowed_ips]] *relay.network.allowed_ips* -** 説明: pass:none[リレーの利用を許可する IP アドレスの POSIX 拡張正規表現 (大文字小文字の区別無し、最初に "(?-i)" をつければ区別有り)、例: "^(123\.45\.67\.89|192\.160\..*)$"] -** タイプ: 文字列 -** 値: 未制約文字列 -** デフォルト値: `+""+` - -* [[option_relay.network.auth_timeout]] *relay.network.auth_timeout* -** 説明: pass:none[timeout (in seconds) for client authentication: connection is closed if the client is still not authenticated after this delay and the client status is set to "authentication failed" (0 = wait forever)] -** タイプ: 整数 -** 値: 0 .. 2147483647 -** デフォルト値: `+60+` - -* [[option_relay.network.bind_address]] *relay.network.bind_address* -** 説明: pass:none[割り当てるアドレス (空の場合、全てのインターフェースからの接続を受け付ける、"127.0.0.1" を使えばローカルマシンからの接続のみ許可)] -** タイプ: 文字列 -** 値: 未制約文字列 -** デフォルト値: `+""+` - -* [[option_relay.network.clients_purge_delay]] *relay.network.clients_purge_delay* -** 説明: pass:none[接続を切ったクライアントを追い出すまでの遅延時間 (分単位、0 = すぐにクライアントを追い出す、-1 = 追い出さない)] -** タイプ: 整数 -** 値: -1 .. 43200 -** デフォルト値: `+0+` - -* [[option_relay.network.compression]] *relay.network.compression* -** 説明: pass:none[compression of messages sent to clients with "weechat" protocol: 0 = disable compression, 1 = low compression / fast ... 100 = best compression / slow; the value is a percentage converted to 1-9 for zlib and 1-19 for zstd; the default value is recommended, it offers a good compromise between compression and speed] -** タイプ: 整数 -** 値: 0 .. 100 -** デフォルト値: `+20+` - -* [[option_relay.network.ipv6]] *relay.network.ipv6* -** 説明: pass:none[デフォルトで IPv6 ソケットをリッスン (デフォルトの IPv4 に加えて); 特定のプロトコルでプロトコルに IPv4 と IPv6 (個別または両方) を強制 (/help relay を参照してください)] -** タイプ: ブール -** 値: on, off -** デフォルト値: `+on+` - -* [[option_relay.network.max_clients]] *relay.network.max_clients* -** 説明: pass:none[ポートに接続するクライアントの最大数 (0 = 制限なし)] -** タイプ: 整数 -** 値: 0 .. 2147483647 -** デフォルト値: `+5+` - -* [[option_relay.network.nonce_size]] *relay.network.nonce_size* -** 説明: pass:none[size of nonce (in bytes), generated when a client connects; the client must use this nonce, concatenated to the client nonce and the password when hashing the password in the "init" command of the weechat protocol] -** タイプ: 整数 -** 値: 8 .. 128 -** デフォルト値: `+16+` - -* [[option_relay.network.password]] *relay.network.password* -** 説明: pass:none[このリレーを利用するためにクライアントが必要なパスワード (空の場合パスワードなし、オプション relay.network.allow_empty_password を参照してください) (注意: 値は評価されます、/help eval を参照してください)] -** タイプ: 文字列 -** 値: 未制約文字列 -** デフォルト値: `+""+` - -* [[option_relay.network.password_hash_algo]] *relay.network.password_hash_algo* -** 説明: pass:none[comma separated list of hash algorithms used for password authentication in weechat protocol, among these values: "plain" (password in plain text, not hashed), "sha256", "sha512", "pbkdf2+sha256", "pbkdf2+sha512"), "*" means all algorithms, a name beginning with "!" is a negative value to prevent an algorithm from being used, wildcard "*" is allowed in names (examples: "*", "pbkdf2*", "*,!plain")] -** タイプ: 文字列 -** 値: 未制約文字列 -** デフォルト値: `+"*"+` - -* [[option_relay.network.password_hash_iterations]] *relay.network.password_hash_iterations* -** 説明: pass:none[number of iterations asked to the client in weechat protocol when a hashed password with algorithm PBKDF2 is used for authentication; more iterations is better in term of security but is slower to compute; this number should not be too high if your CPU is slow] -** タイプ: 整数 -** 値: 1 .. 1000000 -** デフォルト値: `+100000+` - -* [[option_relay.network.ssl_cert_key]] *relay.network.ssl_cert_key* -** 説明: pass:none[file with SSL certificate and private key (for serving clients with SSL) (path is evaluated, see function string_eval_path_home in plugin API reference)] -** タイプ: 文字列 -** 値: 未制約文字列 -** デフォルト値: `+"${weechat_config_dir}/ssl/relay.pem"+` - -* [[option_relay.network.ssl_priorities]] *relay.network.ssl_priorities* -** 説明: pass:none[gnutls の優先度を示した文字列 (構文は、gnutls マニュアルの gnutls_priority_init 関数のドキュメントを参照してください、通例: "PERFORMANCE", "NORMAL", "SECURE128", "SECURE256", "EXPORT", "NONE")] -** タイプ: 文字列 -** 値: 未制約文字列 -** デフォルト値: `+"NORMAL:-VERS-SSL3.0"+` - -* [[option_relay.network.totp_secret]] *relay.network.totp_secret* -** 説明: pass:none[時間ベースのワンタイムパスワード (TOTP) の生成に使う secret、base32 でエンコード (文字と 2 から 7 までの数字); これは weechat プロトコルにおけるパスワードに加えた二要素認証用に使われ、空文字列ではいけません (空文字列は TOTP を使わないことを意味します)。(注意: 内容は評価されます、/help eval を参照してください)] -** タイプ: 文字列 -** 値: 未制約文字列 -** デフォルト値: `+""+` - -* [[option_relay.network.totp_window]] *relay.network.totp_window* -** 説明: pass:none[時間ベースのワンタイムパスワードの数、現在のワンタイムパスワードの前後いくつまでのパスワードを考慮するか: 0 = 現在のパスワードのみを考慮、1 = 1 つ前のパスワードも考慮、2 = 2 つ前までのパスワードと現在のパスワードおよび 2 つ後までのパスワードを考慮、...; この値を大きくするとセキュリティレベルが低下します (0 または 1 を推奨します)] -** タイプ: 整数 -** 値: 0 .. 256 -** デフォルト値: `+0+` - -* [[option_relay.network.websocket_allowed_origins]] *relay.network.websocket_allowed_origins* -** 説明: pass:none[ウェブソケットに使うことを許可する origin の "POSIX 拡張正規表現 (大文字小文字を区別しない、"(?-i)" を先頭に置くと大文字小文字を区別する)、例: "^https?://(www\.)?example\.(com|org)"] -** タイプ: 文字列 -** 値: 未制約文字列 -** デフォルト値: `+""+` - -* [[option_relay.weechat.commands]] *relay.weechat.commands* -** 説明: pass:none[クライアントからデータ (テキストまたはコマンド) を受け取った時に許可/拒否するコマンドのカンマ区切りリスト。"*" は任意のコマンド、"!" から始まるコマンド名は拒否したいコマンド、ワイルドカード "*" をコマンド名に使うことも可能です。このオプションはリレークライアントを信用できない (他人にコマンドを実行されては困る) 場合に使ってください。例えば "*,!exec,!quit" は/exec と /quit を除いたすべてのコマンドを許可します] -** タイプ: 文字列 -** 値: 未制約文字列 -** デフォルト値: `+""+` -// 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[スクリプトをロードしたら、ライセンスを確認してください: ライセンスがプラグインのライセンスと異なる場合、警告が表示されます] -** タイプ: ブール -** 値: on, off -** デフォルト値: `+off+` - -* [[option_ruby.look.eval_keep_context]] *ruby.look.eval_keep_context* -** 説明: pass:none[ソースコード評価 (スクリプトコマンドのオプション "eval" またはインフォ "%s_eval") の呼び出し間にコンテキストを保持します; スクリプトコードを評価する際は隠しスクリプトが使われます; このオプションを無効化した場合、評価毎に隠しスクリプトをアンロードします: メモリ使用量を節約できますが、遅いです] -** タイプ: ブール -** 値: on, off -** デフォルト値: `+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") に対応する色] -** タイプ: 色 -** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_script.color.status_held]] *script.color.status_held* -** 説明: pass:none["ホールド" 状態 ("H") に対応する色] -** タイプ: 色 -** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_script.color.status_installed]] *script.color.status_installed* -** 説明: pass:none["インストール済み" 状態 ("i") に対応する色] -** タイプ: 色 -** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_script.color.status_obsolete]] *script.color.status_obsolete* -** 説明: pass:none["アップデートが必要" 状態 ("N") に対応する色] -** タイプ: 色 -** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_script.color.status_popular]] *script.color.status_popular* -** 説明: pass:none["人気" 状態 ("*") に対応する色] -** タイプ: 色 -** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_script.color.status_running]] *script.color.status_running* -** 説明: pass:none["実行中" 状態 ("r") に対応する色] -** タイプ: 色 -** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_script.color.status_unknown]] *script.color.status_unknown* -** 説明: pass:none["未定義" 状態 ("?") に対応する色] -** タイプ: 色 -** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_script.color.text]] *script.color.text* -** 説明: pass:none[スクリプトバッファのテキスト色] -** タイプ: 色 -** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are 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_script.color.text_bg]] *script.color.text_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_script.color.text_bg_selected]] *script.color.text_bg_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 -** デフォルト値: `+red+` - -* [[option_script.color.text_date]] *script.color.text_date* -** 説明: pass:none[スクリプトバッファ内の日付のテキスト色] -** タイプ: 色 -** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are 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_script.color.text_date_selected]] *script.color.text_date_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_script.color.text_delimiters]] *script.color.text_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 -** デフォルト値: `+default+` - -* [[option_script.color.text_description]] *script.color.text_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 -** デフォルト値: `+default+` - -* [[option_script.color.text_description_selected]] *script.color.text_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_script.color.text_extension]] *script.color.text_extension* -** 説明: pass:none[スクリプトバッファ内の拡張子のテキスト色] -** タイプ: 色 -** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are 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_script.color.text_extension_selected]] *script.color.text_extension_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_script.color.text_name]] *script.color.text_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+` - -* [[option_script.color.text_name_selected]] *script.color.text_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 -** デフォルト値: `+lightcyan+` - -* [[option_script.color.text_selected]] *script.color.text_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_script.color.text_tags]] *script.color.text_tags* -** 説明: pass:none[スクリプトバッファ内のタグのテキスト色] -** タイプ: 色 -** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_script.color.text_tags_selected]] *script.color.text_tags_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_script.color.text_version]] *script.color.text_version* -** 説明: pass:none[スクリプトバッファ内のバージョンのテキスト色] -** タイプ: 色 -** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_script.color.text_version_loaded]] *script.color.text_version_loaded* -** 説明: pass:none[スクリプトバッファ内のロード済みバージョンのテキスト色] -** タイプ: 色 -** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are 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_script.color.text_version_loaded_selected]] *script.color.text_version_loaded_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_script.color.text_version_selected]] *script.color.text_version_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+` - -* [[option_script.look.columns]] *script.look.columns* -** 説明: pass:none[format of columns displayed in script buffer: following column identifiers are replaced by their values: %a=author, %d=description, %D=date added, %e=extension, %l=language, %L=license, %n=name with extension, %N=name, %r=requirements, %s=status, %t=tags, %u=date updated, %v=version, %V=version loaded, %w=min_weechat, %W=max_weechat)] -** タイプ: 文字列 -** 値: 未制約文字列 -** デフォルト値: `+"%s %n %V %v %u | %d | %t"+` - -* [[option_script.look.diff_color]] *script.look.diff_color* -** 説明: pass:none[比較の結果を色付けする] -** タイプ: ブール -** 値: on, off -** デフォルト値: `+on+` - -* [[option_script.look.diff_command]] *script.look.diff_command* -** 説明: pass:none[インストール済みのスクリプトとリポジトリにあるものの違いを表示するコマンド ("auto" = 比較コマンドの自動検出 (git または diff)、空文字列 = 比較を無効化、その他の文字列 = コマンド名、例えば "diff")] -** タイプ: 文字列 -** 値: 未制約文字列 -** デフォルト値: `+"auto"+` - -* [[option_script.look.display_source]] *script.look.display_source* -** 説明: pass:none[スクリプトの詳細と併せてバッファにスクリプトのソースコードを表示 (スクリプトの詳細が表示された場合、スクリプトは一時的にダウンロードされます)] -** タイプ: ブール -** 値: on, off -** デフォルト値: `+on+` - -* [[option_script.look.quiet_actions]] *script.look.quiet_actions* -** 説明: pass:none[スクリプトバッファ内での操作に対する出力を抑制する: スクリプトがインストール / 削除 / ロード / アンロードされた場合にコアバッファにメッセージを表示しない (エラーは表示される)] -** タイプ: ブール -** 値: on, off -** デフォルト値: `+on+` - -* [[option_script.look.sort]] *script.look.sort* -** 説明: pass:none[デフォルトのスクリプト表示ソートキー: 識別子のコンマ区切りリスト: a=作者、A=自動ロード、d=追加日、e=拡張子、i=インストール済み、l=言語、n=名前、o=アップデートが必要、p=人気、r=実行中、u=アップデート日; 識別子直前の文字 "-" は逆順でソートを意味; 例: "i,u": インストール済みが最初に来て、アップデート日の順にソート] -** タイプ: 文字列 -** 値: 未制約文字列 -** デフォルト値: `+"i,p,n"+` - -* [[option_script.look.translate_description]] *script.look.translate_description* -** 説明: pass:none[スクリプトの翻訳済み説明文 (翻訳が利用できない場合は、英語で表示)] -** タイプ: ブール -** 値: on, off -** デフォルト値: `+on+` - -* [[option_script.look.use_keys]] *script.look.use_keys* -** 説明: pass:none[スクリプトに対して何かアクションを行うにはスクリプトバッファで alt+X キーを使ってください (alt+i = インストール、alt+r = 削除、...); これができない場合、単一のキーを試してください: i、r、...] -** タイプ: ブール -** 値: on, off -** デフォルト値: `+on+` - -* [[option_script.scripts.autoload]] *script.scripts.autoload* -** 説明: pass:none[インストール済みの自動ロードスクリプト ("autoload" ディレクトリ中に親ディレクトリにあるスクリプトのリンクを作成)] -** タイプ: ブール -** 値: on, off -** デフォルト値: `+on+` - -* [[option_script.scripts.cache_expire]] *script.scripts.cache_expire* -** 説明: pass:none[ローカルキャッシュが無効になる時間、分単位 (-1 = 再取得しない、0 = 常に再取得)] -** タイプ: 整数 -** 値: -1 .. 525600 -** デフォルト値: `+1440+` - -* [[option_script.scripts.download_enabled]] *script.scripts.download_enabled* -** 説明: pass:none[enable download of files from the scripts repository when the /script command is used (list of scripts and scripts themselves); the list of scripts is downloaded from the URL specified in the option script.scripts.url; WeeChat will sometimes download again the list of scripts when you use the /script command, even if you don't install a script] -** タイプ: ブール -** 値: on, off -** デフォルト値: `+off+` - -* [[option_script.scripts.download_timeout]] *script.scripts.download_timeout* -** 説明: pass:none[スクリプトのダウンロードとスクリプトのリストに対するタイムアウト時間 (秒単位)] -** タイプ: 整数 -** 値: 1 .. 3600 -** デフォルト値: `+30+` - -* [[option_script.scripts.hold]] *script.scripts.hold* -** 説明: pass:none["ホールド" するスクリプト: コンマ区切りのスクリプトリスト、このリストに含まれるスクリプトはアップグレードされませんし、削除もされません、例: "go.py,urlserver.py"] -** タイプ: 文字列 -** 値: 未制約文字列 -** デフォルト値: `+""+` - -* [[option_script.scripts.path]] *script.scripts.path* -** 説明: pass:none[local cache directory for scripts (path is evaluated, see function string_eval_path_home in plugin API reference)] -** タイプ: 文字列 -** 値: 未制約文字列 -** デフォルト値: `+"${weechat_cache_dir}/script"+` - -* [[option_script.scripts.url]] *script.scripts.url* -** 説明: pass:none[スクリプトのリストを含むファイルの URL] -** タイプ: 文字列 -** 値: 未制約文字列 -** デフォルト値: `+"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+` - -* [[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_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 -** デフォルト値: `+default+` - -* [[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_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_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 -** デフォルト値: `+brown+` - -* [[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 -** デフォルト値: `+yellow+` - -* [[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 -** デフォルト値: `+white+` - -* [[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 -** デフォルト値: `+white+` - -* [[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 -** デフォルト値: `+default+` - -* [[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 -** デフォルト値: `+white+` - -* [[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 -** デフォルト値: `+darkgray+` - -* [[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_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 -** デフォルト値: `+cyan+` - -* [[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 -** デフォルト値: `+lightcyan+` - -* [[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 -** デフォルト値: `+default+` - -* [[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_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 -** デフォルト値: `+blue+` - -* [[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 -** デフォルト値: `+red+` - -* [[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 -** デフォルト値: `+brown+` - -* [[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_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 -** デフォルト値: `+default+` - -* [[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 -** デフォルト値: `+white+` - -* [[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 -** デフォルト値: `+default+` - -* [[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 -** デフォルト値: `+white+` - -* [[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 -** デフォルト値: `+default+` - -* [[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 -** デフォルト値: `+brown+` - -* [[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 -** デフォルト値: `+yellow+` - -* [[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 -** デフォルト値: `+white+` - -* [[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 -** デフォルト値: `+default+` - -* [[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 -** デフォルト値: `+brown+` - -* [[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 -** デフォルト値: `+yellow+` - -* [[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 -** デフォルト値: `+white+` - -* [[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 -** デフォルト値: `+default+` - -* [[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 -** デフォルト値: `+white+` - -* [[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 -** デフォルト値: `+cyan+` - -* [[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 -** デフォルト値: `+lightcyan+` - -* [[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 -** デフォルト値: `+darkgray+` - -* [[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 -** デフォルト値: `+default+` - -* [[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_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 -** デフォルト値: `+default+` - -* [[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_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 -** デフォルト値: `+brown+` - -* [[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 -** デフォルト値: `+yellow+` - -* [[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 -** デフォルト値: `+white+` - -* [[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_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 -** デフォルト値: `+white+` - -* [[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 -** デフォルト値: `+cyan+` - -* [[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 -** デフォルト値: `+lightcyan+` - -* [[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_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 -** デフォルト値: `+lightgreen+` - -* [[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 -** デフォルト値: `+white+` - -* [[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 -** デフォルト値: `+green+` - -* [[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 -** デフォルト値: `+lightgreen+` - -* [[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 -** デフォルト値: `+default+` - -* [[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 -** デフォルト値: `+white+` - -* [[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 -** デフォルト値: `+cyan+` - -* [[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 -** デフォルト値: `+brown+` - -* [[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 -** デフォルト値: `+yellow+` - -* [[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 -** デフォルト値: `+lightcyan+` - -* [[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 -** デフォルト値: `+magenta+` - -* [[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 -** デフォルト値: `+lightmagenta+` - -* [[option_fset.format.export_help]] *fset.format.export_help* -** 説明: pass:none[オプションをファイルへエクスポートする際に使うヘルプ行の書式 (注意: 値は評価されます、/help fset を参照してください)] -** タイプ: 文字列 -** 値: 未制約文字列 -** デフォルト値: `+"# ${description2}"+` - -* [[option_fset.format.export_option]] *fset.format.export_option* -** 説明: pass:none[オプションをファイルへエクスポートする際に使うオプションの書式 (注意: 値は評価されます、/help fset を参照してください)] -** タイプ: 文字列 -** 値: 未制約文字列 -** デフォルト値: `+"/set ${name} ${quoted_value}"+` - -* [[option_fset.format.export_option_null]] *fset.format.export_option_null* -** 説明: pass:none[オプション値が "null" の場合に、そのオプションをファイルへエクスポートする際に使うオプションの書式 (注意: 値は評価されます、/help fset を参照してください)] -** タイプ: 文字列 -** 値: 未制約文字列 -** デフォルト値: `+"/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_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] -** タイプ: 文字列 -** 値: 未制約文字列 -** デフォルト値: `+"${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_fset.look.auto_unmark]] *fset.look.auto_unmark* -** 説明: pass:none[マーク済みオプションに対する操作の後または再読込の後に自動的にすべてのオプションをアンマーク] -** タイプ: ブール -** 値: 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 コマンドと一緒に使われます] -** タイプ: 文字列 -** 値: 未制約文字列 -** デフォルト値: `+"${count} >= 1"+` - -* [[option_fset.look.export_help_default]] *fset.look.export_help_default* -** 説明: pass:none[デフォルトでエクスポートされた各オプションのヘルプを書き込む (コマンド /fset -export の引数 "-help" と "-nohelp" を使えばこの設定を上書きできます)] -** タイプ: ブール -** 値: on, off -** デフォルト値: `+on+` - -* [[option_fset.look.format_number]] *fset.look.format_number* -** 説明: pass:none[オプションを表示する際に使う書式番号; この値は fset バッファで ctrl-X キーを押すことで動的に変化します] -** タイプ: 整数 -** 値: 1 .. 2 -** デフォルト値: `+1+` - -* [[option_fset.look.marked_string]] *fset.look.marked_string* -** 説明: pass:none[オプションをマークする際に表示される文字列 (マークは何らかの操作を複数のオプションに対して行う際に用います)] -** タイプ: 文字列 -** 値: 未制約文字列 -** デフォルト値: `+"*"+` - -* [[option_fset.look.scroll_horizontal]] *fset.look.scroll_horizontal* -** 説明: pass:none[fset バッファの左右スクロール量 (横幅の割合)] -** タイプ: 整数 -** 値: 1 .. 100 -** デフォルト値: `+10+` - -* [[option_fset.look.show_plugins_desc]] *fset.look.show_plugins_desc* -** 説明: pass:none[プラグイン説明オプションを表示 (plugins.desc.*)] -** タイプ: ブール -** 値: on, off -** デフォルト値: `+off+` - -* [[option_fset.look.sort]] *fset.look.sort* -** 説明: pass:none[ソートオプションのコンマ区切りリスト (フィールドのリストは /help fset を参照してください); フィールドの先頭に "-" 文字を付けることでソート順を逆にすることも可能です。大文字小文字を区別せずに比較を行うには "~" 文字を使います; 例: "-~name" オプション名を基準に大文字小文字を区別せずにソートして、順番を逆にします] -** タイプ: 文字列 -** 値: 未制約文字列 -** デフォルト値: `+"~name"+` - -* [[option_fset.look.unmarked_string]] *fset.look.unmarked_string* -** 説明: pass:none[オプションがマークされていない場合に表示される文字列] -** タイプ: 文字列 -** 値: 未制約文字列 -** デフォルト値: `+" "+` - -* [[option_fset.look.use_color_value]] *fset.look.use_color_value* -** 説明: pass:none[色オプションの値を表示する際に使う色] -** タイプ: ブール -** 値: on, off -** デフォルト値: `+off+` - -* [[option_fset.look.use_keys]] *fset.look.use_keys* -** 説明: pass:none[fset バッファ内でオプションに対する操作を行う際に alt+X を使う; これを無効化する場合、操作時にコマンド入力が必要になります] -** タイプ: ブール -** 値: on, off -** デフォルト値: `+on+` - -* [[option_fset.look.use_mute]] *fset.look.use_mute* -** 説明: pass:none[オプション設定時に /mute コマンドを使う] -** タイプ: ブール -** 値: on, off -** デフォルト値: `+off+` -// end::fset_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 [] - add [[;...]] - addcompletion [[;...]] + add [[;...]] + addcompletion [[;...]] del [...] + rename - 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) + 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) -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 +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 -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,6 +3,2264 @@ // DO NOT EDIT BY HAND! // +// 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},"+` + +* [[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+` + +* [[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_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_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+` + +* [[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_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] +** typ: liczba +** wartości: 1 .. 3 +** domyślna wartość: `+1+` +// end::buflist_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[] + +// 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ść: `+lightred+` + +* [[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ść: `+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[] + +// 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)] +** typ: ciąg +** wartości: dowolny ciąg +** domyślna wartość: `+"${weechat_runtime_dir}/weechat_fifo_${info:pid}"+` +// end::fifo_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+` + +* [[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_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ść: `+default+` + +* [[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_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_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ść: `+brown+` + +* [[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ść: `+yellow+` + +* [[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ść: `+white+` + +* [[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ść: `+white+` + +* [[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ść: `+default+` + +* [[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ść: `+white+` + +* [[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ść: `+darkgray+` + +* [[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_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ść: `+cyan+` + +* [[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ść: `+lightcyan+` + +* [[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ść: `+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)] +** 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)] +** 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+` + +* [[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ść: `+red+` + +* [[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ść: `+brown+` + +* [[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_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ść: `+default+` + +* [[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ść: `+white+` + +* [[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ść: `+default+` + +* [[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ść: `+white+` + +* [[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ść: `+default+` + +* [[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ść: `+brown+` + +* [[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ść: `+yellow+` + +* [[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ść: `+white+` + +* [[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ść: `+default+` + +* [[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ść: `+brown+` + +* [[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ść: `+yellow+` + +* [[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ść: `+white+` + +* [[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ść: `+default+` + +* [[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ść: `+white+` + +* [[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ść: `+cyan+` + +* [[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ść: `+lightcyan+` + +* [[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ść: `+darkgray+` + +* [[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ść: `+default+` + +* [[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_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ść: `+default+` + +* [[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_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ść: `+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] +** 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] +** 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.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_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ść: `+white+` + +* [[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ść: `+cyan+` + +* [[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ść: `+lightcyan+` + +* [[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_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ść: `+lightgreen+` + +* [[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ść: `+white+` + +* [[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ść: `+green+` + +* [[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ść: `+lightgreen+` + +* [[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ść: `+default+` + +* [[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ść: `+white+` + +* [[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ść: `+cyan+` + +* [[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ść: `+brown+` + +* [[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ść: `+yellow+` + +* [[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ść: `+lightcyan+` + +* [[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ść: `+magenta+` + +* [[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ść: `+lightmagenta+` + +* [[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ść: `+"# ${description2}"+` + +* [[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ść: `+"/set ${name} ${quoted_value}"+` + +* [[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ść: `+"/unset ${name}"+` + +* [[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ść: `+""+` + +* [[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ść: `+"${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* +** 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ść: `+"*"+` + +* [[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ść: `+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] +** typ: ciąg +** wartości: dowolny ciąg +** domyślna wartość: `+"${count} >= 1"+` + +* [[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_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 .. 2 +** domyślna wartość: `+1+` + +* [[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ść: `+"*"+` + +* [[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 .. 100 +** domyślna wartość: `+10+` + +* [[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_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_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ść: `+" "+` + +* [[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_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_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ść: `+off+` +// end::fset_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::irc_options[] +* [[option_irc.color.input_nick]] *irc.color.input_nick* +** opis: pass:none[kolor nicka w pasku danych wejściowych] +** 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_irc.color.item_channel_modes]] *irc.color.item_channel_modes* +** opis: pass:none[kolor trybów kanału, przy nazwie kanału] +** 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_irc.color.item_lag_counting]] *irc.color.item_lag_counting* +** opis: pass:none[kolor wskaźnika opóźnienia, podczas naliczania (pong nie otrzymany od serwera, lag rośnie)] +** 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_irc.color.item_lag_finished]] *irc.color.item_lag_finished* +** opis: pass:none[kolor wskaźnika opóźnienia, kiedy otrzymamy pong od serwera] +** 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_irc.color.item_nick_modes]] *irc.color.item_nick_modes* +** opis: pass:none[kolor dla atrybutów nicka w elemencie paska "input_prompt"] +** 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_irc.color.item_tls_version_deprecated]] *irc.color.item_tls_version_deprecated* +** opis: pass:none[kolor dla przestarzałych wersji TLS w lemencie paska "tls_version"] +** 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_irc.color.item_tls_version_insecure]] *irc.color.item_tls_version_insecure* +** opis: pass:none[kolor dla niebezpiecznej wersji TLS w elemencie paska "tls_version"] +** 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_irc.color.item_tls_version_ok]] *irc.color.item_tls_version_ok* +** opis: pass:none[kolor dla wyższej wspieranej wersji TLS w elemencie paska "tls_version"] +** 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_irc.color.message_account]] *irc.color.message_account* +** opis: pass:none[kolor tekstu w wiadomościach konta] +** 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_irc.color.message_chghost]] *irc.color.message_chghost* +** opis: pass:none[kolor tekstu dla wiadomości "chghost"] +** 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_irc.color.message_join]] *irc.color.message_join* +** opis: pass:none[kolor tekstu w wiadomościach o wejściu 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ść: `+green+` + +* [[option_irc.color.message_kick]] *irc.color.message_kick* +** opis: pass:none[kolor tekstu w wiadomości kick/kill] +** 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_irc.color.message_quit]] *irc.color.message_quit* +** opis: pass:none[kolor tekstu w wiadomościach o opuszczeniu kanału/wyjściu 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ść: `+red+` + +* [[option_irc.color.message_setname]] *irc.color.message_setname* +** opis: pass:none[kolor tekstu dla wiadomości "setname"] +** 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_irc.color.mirc_remap]] *irc.color.mirc_remap* +** opis: pass:none[zamień kolory mirca w wiadomościach używając tablicy hashy: klucze to "fg,bg" przyjmują one wartości pomiędzy -1 (nie określono) a 15, wartości to nazwy lub numery kolorów WeeChat (format: "1,-1:kolor1;2,7:kolor2"), przykład: "1,-1:darkgray;1,2:white,blue" w celu przemapowania czarnego na "darkgray" oraz czarnego na niebieskim tle na "white,blue"; domyślne kolory WeeChat dla kodów IRC: 0=white, 1=black, 2=blue, 3=green, 4=lightred, 5=red, 6=magenta, 7=brown, 8=yellow, 9=lightgreen, 10=cyan, 11=lightcyan, 12=lightblue, 13=lightmagenta, 14=darkgray, 15=gray] +** typ: ciąg +** wartości: dowolny ciąg +** domyślna wartość: `+"1,-1:darkgray"+` + +* [[option_irc.color.nick_prefixes]] *irc.color.nick_prefixes* +** opis: pass:none[kolor dla przedrostków nicków zawierających oznaczenie statusu (o=operator, h=halfop, v=voice, ..), format: "o:kolor1;h:kolor2;v:kolor3" (jeśli nie znaleziono statusu, WeeChat sprawdzi następne atrybuty uzyskane od serwera ("PREFIX"); specjalny tryb "*" może zostać użyty jako domyślny kolor jeśli nie znaleziono atrybutu na liście)] +** typ: ciąg +** wartości: dowolny ciąg +** domyślna wartość: `+"y:lightred;q:lightred;a:lightcyan;o:lightgreen;h:lightmagenta;v:yellow;*:lightblue"+` + +* [[option_irc.color.notice]] *irc.color.notice* +** opis: pass:none[kolor tekstu "Notice" w podświetleniach] +** 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_irc.color.reason_kick]] *irc.color.reason_kick* +** opis: pass:none[kolor tekstu powodu w wiadomości kick/kill] +** 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_irc.color.reason_quit]] *irc.color.reason_quit* +** opis: pass:none[kolor tekstu powodu opuszczenia kanału/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+` + +* [[option_irc.color.topic_current]] *irc.color.topic_current* +** opis: pass:none[kolor obecnego tematu kanału (podczas wejścia na kanał lub użycia /topic)] +** 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_irc.color.topic_new]] *irc.color.topic_new* +** opis: pass:none[kolor nowego tematu kanału (kiedy temat został zmieniony)] +** 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_irc.color.topic_old]] *irc.color.topic_old* +** opis: pass:none[kolor starego tematu kanału (kiedy temat został zmieniony)] +** 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_irc.look.buffer_open_before_autojoin]] *irc.look.buffer_open_before_autojoin* +** opis: pass:none[otwórz bufor kanału przed odebraniem JOIN od serwera, kiedy automatyczne wchodzenie na kanały jest włączone (opcja serwera "autojoin"); przydatne żeby bufory kanałów miały zawsze ten sam numer po uruchomieniu] +** typ: bool +** wartości: on, off +** domyślna wartość: `+on+` + +* [[option_irc.look.buffer_open_before_join]] *irc.look.buffer_open_before_join* +** opis: pass:none[otwórz bufor kanału przed otrzymaniem JOIN od serwera, przy manualnym wejściu (za pomocą komendy /join)] +** typ: bool +** wartości: on, off +** domyślna wartość: `+off+` + +* [[option_irc.look.buffer_switch_autojoin]] *irc.look.buffer_switch_autojoin* +** opis: pass:none[automatycznie przełącz się na bufor kanału po automatycznym wejściu (opcja serwera "autojoin")] +** typ: bool +** wartości: on, off +** domyślna wartość: `+on+` + +* [[option_irc.look.buffer_switch_join]] *irc.look.buffer_switch_join* +** opis: pass:none[automatycznie przełącz się na bufor kanału po ręcznym wejściu (za pomocą komendy /join)] +** typ: bool +** wartości: on, off +** domyślna wartość: `+on+` + +* [[option_irc.look.color_nicks_in_names]] *irc.look.color_nicks_in_names* +** opis: pass:none[użyj koloru nicka w wynikach komendy /names (lub liście nicków wyświetlanej po wejściu na kanał)] +** typ: bool +** wartości: on, off +** domyślna wartość: `+off+` + +* [[option_irc.look.color_nicks_in_nicklist]] *irc.look.color_nicks_in_nicklist* +** opis: pass:none[używaj kolorów nicków na liście nicków] +** typ: bool +** wartości: on, off +** domyślna wartość: `+off+` + +* [[option_irc.look.color_nicks_in_server_messages]] *irc.look.color_nicks_in_server_messages* +** opis: pass:none[użyj koloru nicka w wiadomościach od serwera] +** typ: bool +** wartości: on, off +** domyślna wartość: `+on+` + +* [[option_irc.look.color_pv_nick_like_channel]] *irc.look.color_pv_nick_like_channel* +** opis: pass:none[użyj takiego samego koloru nicka na kanałach i prywatnych rozmowach] +** typ: bool +** wartości: on, off +** domyślna wartość: `+on+` + +* [[option_irc.look.ctcp_time_format]] *irc.look.ctcp_time_format* +** opis: pass:none[format czasu używany w odpowiedzi na wiadomość CTCP TIME (zobacz man strftime dla specyfikatorów daty/czasu)] +** typ: ciąg +** wartości: dowolny ciąg +** domyślna wartość: `+"%a, %d %b %Y %T %z"+` + +* [[option_irc.look.display_account_message]] *irc.look.display_account_message* +** opis: pass:none[wyświetl wiadomość ACCOUNT otrzymaną, kiedy opcja account-notify jest włączona] +** typ: bool +** wartości: on, off +** domyślna wartość: `+on+` + +* [[option_irc.look.display_away]] *irc.look.display_away* +** opis: pass:none[wyświetl wiadomość, kiedy w(y)łączamy tryb oddalenia (off: nie wyświetlaj/wysyłaj nic, local: wyświetl lokalnie, channel: wyślij akcję na kanały)] +** typ: liczba +** wartości: off, local, channel +** domyślna wartość: `+local+` + +* [[option_irc.look.display_ctcp_blocked]] *irc.look.display_ctcp_blocked* +** opis: pass:none[wyświetl wiadomość CTCP nawet jeśli jest blokowana] +** typ: bool +** wartości: on, off +** domyślna wartość: `+on+` + +* [[option_irc.look.display_ctcp_reply]] *irc.look.display_ctcp_reply* +** opis: pass:none[wyświetlaj odpowiedź CTCP wysłaną przez WeeChat] +** typ: bool +** wartości: on, off +** domyślna wartość: `+on+` + +* [[option_irc.look.display_ctcp_unknown]] *irc.look.display_ctcp_unknown* +** opis: pass:none[wyświetl wiadomość CTCP nawet jeśli jest to nieznana CTCP] +** typ: bool +** wartości: on, off +** domyślna wartość: `+on+` + +* [[option_irc.look.display_extended_join]] *irc.look.display_extended_join* +** opis: pass:none[wyświetl dodatkowe informacje w wiadomości JOIN: nazwa konta i real name (opcja extended-join musi być włączona)] +** typ: bool +** wartości: on, off +** domyślna wartość: `+on+` + +* [[option_irc.look.display_host_join]] *irc.look.display_host_join* +** opis: pass:none[wyświetlaj host w wiadomościach o wejściu na kanał] +** typ: bool +** wartości: on, off +** domyślna wartość: `+on+` + +* [[option_irc.look.display_host_join_local]] *irc.look.display_host_join_local* +** opis: pass:none[wyświetlaj host podczas wchodzenia na kanał] +** typ: bool +** wartości: on, off +** domyślna wartość: `+on+` + +* [[option_irc.look.display_host_quit]] *irc.look.display_host_quit* +** opis: pass:none[pokazuj host w wiadomościach o opuszczeniu kanału/wyjściu z IRC] +** typ: bool +** wartości: on, off +** domyślna wartość: `+on+` + +* [[option_irc.look.display_join_message]] *irc.look.display_join_message* +** opis: pass:none[oddzielona przecinkami lista wiadomości wyświetlanych po wejściu na kanał: 324 = atrybuty kanału, 329 = data utworzenia, 332 = temat, 333 = autor/data tematu, 353 = osoby na kanale, 366 = ilość osób na kanale] +** typ: ciąg +** wartości: dowolny ciąg +** domyślna wartość: `+"329,332,333,366"+` + +* [[option_irc.look.display_old_topic]] *irc.look.display_old_topic* +** opis: pass:none[wyświetl stary temat, kiedy zmieniany jest temat kanału] +** typ: bool +** wartości: on, off +** domyślna wartość: `+on+` + +* [[option_irc.look.display_pv_away_once]] *irc.look.display_pv_away_once* +** opis: pass:none[pokazuj wiadomości o nieobecności rozmówcy tylko raz w prywatnej rozmowie] +** typ: bool +** wartości: on, off +** domyślna wartość: `+on+` + +* [[option_irc.look.display_pv_back]] *irc.look.display_pv_back* +** opis: pass:none[pokaż prywatną wiadomość, kiedy użytkownik wróci na serwer] +** typ: bool +** wartości: on, off +** domyślna wartość: `+on+` + +* [[option_irc.look.display_pv_nick_change]] *irc.look.display_pv_nick_change* +** opis: pass:none[wyświetlaj zmiany nicków w prywatnych wiadomościach] +** typ: bool +** wartości: on, off +** domyślna wartość: `+on+` + +* [[option_irc.look.display_pv_warning_address]] *irc.look.display_pv_warning_address* +** opis: pass:none[wyświetl ostrzeżenie w prywatnym buforze jeśli adres zdalnego nicka uległ zmianie; ta opcja jest domyślnie wyłączona ponieważ serwery jak bitlbee powodują wyświetlanie tego ostrzeżenia, kiedy nie powinny (adres zdalnego nicka zmienia się wiele razy przy logowaniu)] +** typ: bool +** wartości: on, off +** domyślna wartość: `+off+` + +* [[option_irc.look.highlight_channel]] *irc.look.highlight_channel* +** opis: pass:none[oddzielona przecinkami lista słów do podświetleń w buforach kanałów (wielkość liter nie ma znaczenia, użyj "(?-i)" na początku słów, dla których wielkość liter ma znaczenie; zmienne specjalne $nick, $channel i $server są zastępowane odpowiednimi wartościami), słowa te są dodawane do zmiennej lokalnej bufora "highlight_words" tylko kiedy bufor jest tworzony (nie ma wpływu na obecne bufory), pusty ciąg wyłącza domyślne podświetlenia nicka, przykłady: "$nick", "(?-i)$nick"] +** typ: ciąg +** wartości: dowolny ciąg +** domyślna wartość: `+"$nick"+` + +* [[option_irc.look.highlight_pv]] *irc.look.highlight_pv* +** opis: pass:none[oddzielona przecinkami lista słów do podświetleń w prywatnych buforach (wielkość liter nie ma znaczenia, użyj "(?-i)" na początku słów, dla których wielkość liter ma znaczenie; zmienne specjalne $nick, $channel i $server są zastępowane odpowiednimi wartościami), słowa te są dodawane do zmiennej lokalnej bufora "highlight_words" tylko kiedy bufor jest tworzony (nie ma wpływu na obecne bufory), pusty ciąg wyłącza domyślne podświetlenia nicka, przykłady: "$nick", "(?-i)$nick"] +** typ: ciąg +** wartości: dowolny ciąg +** domyślna wartość: `+"$nick"+` + +* [[option_irc.look.highlight_server]] *irc.look.highlight_server* +** opis: pass:none[oddzielona przecinkami lista słów do podświetleń w buforach serwera (wielkość liter nie ma znaczenia, użyj "(?-i)" na początku słów, dla których wielkość liter ma znaczenie; zmienne specjalne $nick, $channel i $server są zastępowane odpowiednimi wartościami), słowa te są dodawane do zmiennej lokalnej bufora "highlight_words" tylko kiedy bufor jest tworzony (nie ma wpływu na obecne bufory), pusty ciąg wyłącza domyślne podświetlenia nicka, przykłady: "$nick", "(?-i)$nick"] +** typ: ciąg +** wartości: dowolny ciąg +** domyślna wartość: `+"$nick"+` + +* [[option_irc.look.highlight_tags_restrict]] *irc.look.highlight_tags_restrict* +** opis: pass:none[ogranicza podświetlenia do tych tagów w buforach irc (żeby mieć podświetlenia tylko od wiadomości użytkowników ale nie serwera); tagi muszą być oddzielone przecinkami, "+" może zostać użyty w celu uzyskania logicznego "i" pomiędzy tagami; wildcard "*" jest dozwolony w tagach; pusta wartość zezwala na podświetlenia przez dowolny tag] +** typ: ciąg +** wartości: dowolny ciąg +** domyślna wartość: `+"irc_privmsg,irc_notice"+` + +* [[option_irc.look.item_channel_modes_hide_args]] *irc.look.item_channel_modes_hide_args* +** opis: pass:none[ukryj atrybuty trybów kanałów jeśli przynajmniej jeden z tych trybów jest ustawiony ("*" zawsze ukrywaj argumenty, pusta wartość - nigdy nie ukrywaj); przykład: "kf" dla ukrycia argumentów, jeśli ustawiony jest tryb "k" lub "f"] +** typ: ciąg +** wartości: dowolny ciąg +** domyślna wartość: `+"k"+` + +* [[option_irc.look.item_display_server]] *irc.look.item_display_server* +** opis: pass:none[nazwa paska, w którym wyświetlany jest serwer IRC (dla paska stanu)] +** typ: liczba +** wartości: buffer_plugin, buffer_name +** domyślna wartość: `+buffer_plugin+` + +* [[option_irc.look.item_nick_modes]] *irc.look.item_nick_modes* +** opis: pass:none[wyświetlaj tryby nicka w elemencie paska "input_prompt"] +** typ: bool +** wartości: on, off +** domyślna wartość: `+on+` + +* [[option_irc.look.item_nick_prefix]] *irc.look.item_nick_prefix* +** opis: pass:none[wyświetlaj przedrostek nicka w elemencie paska "input_prompt"] +** typ: bool +** wartości: on, off +** domyślna wartość: `+on+` + +* [[option_irc.look.join_auto_add_chantype]] *irc.look.join_auto_add_chantype* +** opis: pass:none[automatycznie dodawaj typ kanału z przodu nazwy kanału dla komendy /join jeśli nazwa kanału nie zaczyna się od poprawnego typu kanału na serwerze; na przykład: "/join weechat" zostanie wysłane jako: "/join #weechat"] +** typ: bool +** wartości: on, off +** domyślna wartość: `+off+` + +* [[option_irc.look.msgbuffer_fallback]] *irc.look.msgbuffer_fallback* +** opis: pass:none[domyślny bufor docelowy dla bufora wiadomości, kiedy cel jest prywatny i nie odnaleziono tego prywatnego bufora] +** typ: liczba +** wartości: current, server +** domyślna wartość: `+current+` + +* [[option_irc.look.new_channel_position]] *irc.look.new_channel_position* +** opis: pass:none[wymusza pozycję nowych kanałów na liście buforów (none = domyślna pozycja (powinien być to ostatni bufor), next = obecny bufor + 1, near_server = po ostatnim kanale/pv serwera)] +** typ: liczba +** wartości: none, next, near_server +** domyślna wartość: `+none+` + +* [[option_irc.look.new_pv_position]] *irc.look.new_pv_position* +** opis: pass:none[wymusza pozycję nowych prywatnych wiadomości na liście buforów (none = domyślna pozycja (powinien być to ostatni bufor), next = obecny bufor + 1, near_server = po ostatnim kanale/pv serwera)] +** typ: liczba +** wartości: none, next, near_server +** domyślna wartość: `+none+` + +* [[option_irc.look.nick_completion_smart]] *irc.look.nick_completion_smart* +** opis: pass:none[inteligentne dopełnianie nicków (dopełnia najpierw ostatnimi rozmówcami): speakers = wszyscy rozmówcy (włączając podświetlenia), speakers_highlights = tylko rozmówcy z podświetleniem] +** typ: liczba +** wartości: off, speakers, speakers_highlights +** domyślna wartość: `+speakers+` + +* [[option_irc.look.nick_mode]] *irc.look.nick_mode* +** opis: pass:none[wyświetlaj atrybuty nicku (op, voice, ...) przed nickiem (none = nigdy, prefix = tylko prefiks (domyślnie), action = w wiadomości akcji, both = prefiks + wiadomość akcji)] +** typ: liczba +** wartości: none, prefix, action, both +** domyślna wartość: `+prefix+` + +* [[option_irc.look.nick_mode_empty]] *irc.look.nick_mode_empty* +** opis: pass:none[wyświetl spację jeśli wyświetlanie atrybutów dla nicków jest włączone, ale nick nie ma atrybutu (brak opa, voice, ...)] +** typ: bool +** wartości: on, off +** domyślna wartość: `+off+` + +* [[option_irc.look.nicks_hide_password]] *irc.look.nicks_hide_password* +** opis: pass:none[oddzielona przecinkami lista nicków, dla których hasła będą ukrywane podczas wysyłania wiadomości, na przykład w celu ukrycia hasła w wiadomości wyświetlanej przez "/msg nickserv identify hasło", przykład: "nickserv,nickbot"] +** typ: ciąg +** wartości: dowolny ciąg +** domyślna wartość: `+"nickserv"+` + +* [[option_irc.look.notice_as_pv]] *irc.look.notice_as_pv* +** opis: pass:none[wyświetlaj powiadomienia jako prywatne wiadomości (jeśli auto, używa prywatnego bufora jeśli taki istnieje)] +** typ: liczba +** wartości: auto, never, always +** domyślna wartość: `+auto+` + +* [[option_irc.look.notice_welcome_redirect]] *irc.look.notice_welcome_redirect* +** opis: pass:none[automatyczne przekierowanie powiadomień powitalnych do bufora kanału; takie powiadomienia mają nick jako cel i nazwę kanału na początku wiadomości, na przykład powiadomienia ENTRYMSG wysyłane przez Atheme IRC Services wyglądają następująco: "[#kanał\] Witaj na tym kanale..."] +** typ: bool +** wartości: on, off +** domyślna wartość: `+on+` + +* [[option_irc.look.notice_welcome_tags]] *irc.look.notice_welcome_tags* +** opis: pass:none[oddzielona przecinkami lista tagów użytych w wiadomościach powitalnych przekierowywanych na kanał, na przykład: "notify_private"] +** typ: ciąg +** wartości: dowolny ciąg +** domyślna wartość: `+""+` + +* [[option_irc.look.notify_tags_ison]] *irc.look.notify_tags_ison* +** opis: pass:none[oddzielona przecinkami lista tagów użytych w wiadomościach wyświetlanych przez powiadomienie, kiedy nick wejdzie lub wyjdzie z serwera (rezultat komendy ison lub monitor), na przykład: "notify_message", "notify_private" lub "notify_higlight"] +** typ: ciąg +** wartości: dowolny ciąg +** domyślna wartość: `+"notify_message"+` + +* [[option_irc.look.notify_tags_whois]] *irc.look.notify_tags_whois* +** opis: pass:none[oddzielona przecinkami lista tagów użytych w wiadomościach wyświetlanych przez powiadomienie, kiedy zmienia się status nieobecności nicka (wynik komendy whois), na przykład: "notify_message", "notify_private" or "notify_highlight"] +** typ: ciąg +** wartości: dowolny ciąg +** domyślna wartość: `+"notify_message"+` + +* [[option_irc.look.part_closes_buffer]] *irc.look.part_closes_buffer* +** opis: pass:none[zamyka bufor, kiedy na kanale wykonamy /part] +** typ: bool +** wartości: on, off +** domyślna wartość: `+off+` + +* [[option_irc.look.pv_buffer]] *irc.look.pv_buffer* +** opis: pass:none[połącz bufory prywatne] +** typ: liczba +** wartości: independent, merge_by_server, merge_all +** domyślna wartość: `+independent+` + +* [[option_irc.look.pv_tags]] *irc.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_irc.look.raw_messages]] *irc.look.raw_messages* +** opis: pass:none[ilość nieprzetworzonych wiadomości do zachowania w pamięci, kiedy zamknięty jest bufor nieprzetworzonych danych (wiadomości zostaną wyświetlone po otworzeniu dla nich bufora)] +** typ: liczba +** wartości: 0 .. 65535 +** domyślna wartość: `+256+` + +* [[option_irc.look.server_buffer]] *irc.look.server_buffer* +** opis: pass:none[łączy bufory serwerów; ta opcja nie ma wpływu jeśli układ jest zapisany i nie pasuje do tej opcji (zobacz /help layout)] +** typ: liczba +** wartości: merge_with_core, merge_without_core, independent +** domyślna wartość: `+merge_with_core+` + +* [[option_irc.look.smart_filter]] *irc.look.smart_filter* +** opis: pass:none[filtruj wiadomości wejścia/opuszczenia/wyjścia/nick od nicków nie będących aktywnymi od kilku minut na kanale (musisz stworzyć filtr na tagu "irc_smart_filter", zobacz /help filter)] +** typ: bool +** wartości: on, off +** domyślna wartość: `+on+` + +* [[option_irc.look.smart_filter_account]] *irc.look.smart_filter_account* +** opis: pass:none[włącza mądre filtrowanie dla wiadomości "account"] +** typ: bool +** wartości: on, off +** domyślna wartość: `+on+` + +* [[option_irc.look.smart_filter_chghost]] *irc.look.smart_filter_chghost* +** opis: pass:none[włącza mądre filtrowanie dla wiadomości "chghost"] +** typ: bool +** wartości: on, off +** domyślna wartość: `+on+` + +* [[option_irc.look.smart_filter_delay]] *irc.look.smart_filter_delay* +** opis: pass:none[opóźnienie dla filtrowania wiadomości o wejściu/opuszczeniu/wyjściu (w minutach): jeśli osoba nie odezwała się podczas ostatnich N minut, wiadomość jest filtrowana] +** typ: liczba +** wartości: 1 .. 10080 +** domyślna wartość: `+5+` + +* [[option_irc.look.smart_filter_join]] *irc.look.smart_filter_join* +** opis: pass:none[włącza mądre filtrowanie dla wiadomości "join"] +** typ: bool +** wartości: on, off +** domyślna wartość: `+on+` + +* [[option_irc.look.smart_filter_join_unmask]] *irc.look.smart_filter_join_unmask* +** opis: pass:none[opóźnienie dla odmaskowywania wiadomości o wejściu na kanał odfiltrowanych przez tag "irc_smart_filter" (w minutach): jeśli ktoś wszedł na kanał maksymalnie N minut temu i powiedział coś na kanale (wiadomość, powiadomienie lub aktualizacja tematu), jego wejście zostaje odmaskowane, podobnie jak zmiany nicków po jego wejściu (0 = wyłączone: nigdy nie odmaskowuj)] +** typ: liczba +** wartości: 0 .. 10080 +** domyślna wartość: `+30+` + +* [[option_irc.look.smart_filter_mode]] *irc.look.smart_filter_mode* +** opis: pass:none[włącz inteligentny filtr dla wiadomości "mode": "*" filtruje wszystkie tryby, "+" filtruje wszystkie tryby w prefiksach serwera (na przykład "ovh"), "xyz" filtruje tylko tryby x/y/z, "-xyz" filtruje wszystkie tryby poza x/y/z; przykład: "ovh": filtruje tryby o/v/h, "-bkl" filtruje wszystkie tryby poza b/k/l] +** typ: ciąg +** wartości: dowolny ciąg +** domyślna wartość: `+"+"+` + +* [[option_irc.look.smart_filter_nick]] *irc.look.smart_filter_nick* +** opis: pass:none[włącza mądre filtrowanie dla wiadomości "nick" (zmiana nicka)] +** typ: bool +** wartości: on, off +** domyślna wartość: `+on+` + +* [[option_irc.look.smart_filter_quit]] *irc.look.smart_filter_quit* +** opis: pass:none[włącza inteligentne filtrowanie dla wiadomości "part" oraz "quit"] +** typ: bool +** wartości: on, off +** domyślna wartość: `+on+` + +* [[option_irc.look.smart_filter_setname]] *irc.look.smart_filter_setname* +** opis: pass:none[włącza mądre filtrowanie dla wiadomości "setname"] +** typ: bool +** wartości: on, off +** domyślna wartość: `+on+` + +* [[option_irc.look.temporary_servers]] *irc.look.temporary_servers* +** opis: pass:none[włącza tworzenie tymczasowych serwerów za pomocą komendy /connect] +** typ: bool +** wartości: on, off +** domyślna wartość: `+off+` + +* [[option_irc.look.topic_strip_colors]] *irc.look.topic_strip_colors* +** opis: pass:none[usuń kolory w tematach (używane przy wyświetlaniu tytułu bufora)] +** typ: bool +** wartości: on, off +** domyślna wartość: `+off+` + +* [[option_irc.look.typing_status_nicks]] *irc.look.typing_status_nicks* +** opis: pass:none[wyświetlaj nicki osób, które coś piszą w elemencie paska "typing" (opcja typing.look.enabled_nicks musi zostać włączona i opcja "message-tags" musi być wspierana przez serwer)] +** typ: bool +** wartości: on, off +** domyślna wartość: `+off+` + +* [[option_irc.look.typing_status_self]] *irc.look.typing_status_self* +** opis: pass:none[wyślij status pisania do kanałów tak, że inni użytkownicy będą mogli zobaczyć, kiedy piszesz wiadomość (opcja typing.look.enabled_self musi zostać włączona i opcja "message-tags" musi być wspierana przez serwer)] +** typ: bool +** wartości: on, off +** domyślna wartość: `+off+` + +* [[option_irc.network.autoreconnect_delay_growing]] *irc.network.autoreconnect_delay_growing* +** opis: pass:none[rosnący współczynnik opóźnienia ponownego połączenia z serwerem (1 = stała wartość, 2 = opóźnienie*2 dla każdej próby, etc.)] +** typ: liczba +** wartości: 1 .. 100 +** domyślna wartość: `+2+` + +* [[option_irc.network.autoreconnect_delay_max]] *irc.network.autoreconnect_delay_max* +** opis: pass:none[maksymalne opóźnienie do ponownego połączenia z serwerem (w sekundach, 0 = brak maksimum)] +** typ: liczba +** wartości: 0 .. 604800 +** domyślna wartość: `+600+` + +* [[option_irc.network.ban_mask_default]] *irc.network.ban_mask_default* +** opis: pass:none[domyślna maska dla bana dla komend /ban, /unban i /kickban; zmienne $nick, $user, $ident i $host są zastępowane odpowiednimi wartościami (pobranymi z "nick!user@host"); $ident jest taki sam jak $user, jeśli $user nie zaczyna się od "~", w przeciwnym wypadku jest ustawiany na "*"; domyślna maska używana jest tylko, kiedy WeeChat zna nazwę hosta dla nicka] +** typ: ciąg +** wartości: dowolny ciąg +** domyślna wartość: `+"*!$ident@$host"+` + +* [[option_irc.network.colors_receive]] *irc.network.colors_receive* +** opis: pass:none[kiedy wyłączone (off) kody kolorów są ignorowane w przychodzących wiadomościach] +** typ: bool +** wartości: on, off +** domyślna wartość: `+on+` + +* [[option_irc.network.colors_send]] *irc.network.colors_send* +** opis: pass:none[zezwala użytkownikowi wysyłać kolory za pomocą specjalnych kodów (ctrl-c + kod i opcjonalny kolor: b=pogrubiony, cxx=kolor, cxx,yy=kolor+tło, i=kursywa, o=wyłącz kolor/atrybuty, u=podkreślenie, r=rewers)] +** typ: bool +** wartości: on, off +** domyślna wartość: `+on+` + +* [[option_irc.network.lag_check]] *irc.network.lag_check* +** opis: pass:none[przerwa między dwoma sprawdzeniami opóźnienia (w sekundach, 0 = nigdy nie sprawdzaj)] +** typ: liczba +** wartości: 0 .. 604800 +** domyślna wartość: `+60+` + +* [[option_irc.network.lag_max]] *irc.network.lag_max* +** opis: pass:none[maksymalne opóźnienie (w sekundach): jeśli ta wartość zostanie osiągnięta WeeChat założy, że odpowiedź od serwera (pong) nie zostanie odebrana i przestanie liczyć opóźnienie (0 = nigdy nie przestawaj)] +** typ: liczba +** wartości: 0 .. 604800 +** domyślna wartość: `+1800+` + +* [[option_irc.network.lag_min_show]] *irc.network.lag_min_show* +** opis: pass:none[minimalne pokazywane opóźnienie (w milisekundach)] +** typ: liczba +** wartości: 0 .. 86400000 +** domyślna wartość: `+500+` + +* [[option_irc.network.lag_reconnect]] *irc.network.lag_reconnect* +** opis: pass:none[łączy ponownie, jeśli serwer posiada opóźnienie większe lub równe tej wartości (w sekundach, 0 = nigdy nie łącz ponownie); wartość musi być mniejsza lub równa irc.network.lag_max] +** typ: liczba +** wartości: 0 .. 604800 +** domyślna wartość: `+300+` + +* [[option_irc.network.lag_refresh_interval]] *irc.network.lag_refresh_interval* +** opis: pass:none[przerwa między dwoma odświeżeniami wskaźnika lagu, kiedy się on zwiększa (w sekundach)] +** typ: liczba +** wartości: 1 .. 3600 +** domyślna wartość: `+1+` + +* [[option_irc.network.notify_check_ison]] *irc.network.notify_check_ison* +** opis: pass:none[przerwa pomiędzy dwoma sprawdzeniami powiadomień komendą IRC "ison" (w minutach)] +** typ: liczba +** wartości: 1 .. 10080 +** domyślna wartość: `+1+` + +* [[option_irc.network.notify_check_whois]] *irc.network.notify_check_whois* +** opis: pass:none[przerwa pomiędzy dwoma sprawdzeniami powiadomień komendą IRC "whois" (w minutach)] +** typ: liczba +** wartości: 1 .. 10080 +** domyślna wartość: `+5+` + +* [[option_irc.network.sasl_fail_unavailable]] *irc.network.sasl_fail_unavailable* +** opis: pass:none[powoduje niepowodzenie autentykacji SASL, kiedy została ona zarządana ale nie jest dostępna po stronie serwera; kiedy ta opcja jest włączona, ma ona wpływ tylko jeśli opcja "sasl_fail" jest ustawiona na "reconnect" lub "disconnect" dla serwera] +** typ: bool +** wartości: on, off +** domyślna wartość: `+on+` + +* [[option_irc.network.send_unknown_commands]] *irc.network.send_unknown_commands* +** opis: pass:none[wysyłaj nieznane komendy do serwera] +** typ: bool +** wartości: on, off +** domyślna wartość: `+off+` + +* [[option_irc.network.whois_double_nick]] *irc.network.whois_double_nick* +** opis: pass:none[podwaja nick w komendzie /whois (jeśli podano tylko jeden nick), w celu otrzymania w odpowiedzi czasu bezczynności; na przykład: "/whois nick" wyśle "whois nick nick"] +** typ: bool +** wartości: on, off +** domyślna wartość: `+off+` + +* [[option_irc.server_default.addresses]] *irc.server_default.addresses* +** opis: pass:none[lista nazw hostów/port lub IP/port dla serwera (oddzielone przecinkiem) (uwaga: zawartość jest przetwarzana, zobacz /help eval; opcje serwera ${irc_server.xxx} i ${server} są zamieniane na nazwę serwera)] +** typ: ciąg +** wartości: dowolny ciąg +** domyślna wartość: `+""+` + +* [[option_irc.server_default.anti_flood_prio_high]] *irc.server_default.anti_flood_prio_high* +** opis: pass:none[anty-flood dla kolejki o wysokim priorytecie: liczba sekund pomiędzy dwoma wiadomościami użytkownika, bądź komendami wysłanymi do serwera IRC (0 = brak anty-flooda)] +** typ: liczba +** wartości: 0 .. 60 +** domyślna wartość: `+2+` + +* [[option_irc.server_default.anti_flood_prio_low]] *irc.server_default.anti_flood_prio_low* +** opis: pass:none[anty-flood dla kolejek o niskim priorytecie: liczba sekund pomiędzy dwoma wiadomościami wysłanymi do serwera IRC (wiadomości jak automatyczne odpowiedzi na CTCP) (0 = brak anty-flooda)] +** typ: liczba +** wartości: 0 .. 60 +** domyślna wartość: `+2+` + +* [[option_irc.server_default.autoconnect]] *irc.server_default.autoconnect* +** opis: pass:none[automatycznie połącz się z serwerem przy uruchamianiu WeeChat] +** typ: bool +** wartości: on, off +** domyślna wartość: `+off+` + +* [[option_irc.server_default.autojoin]] *irc.server_default.autojoin* +** opis: pass:none[oddzielona przecinkami lista kanałów do wejścia po połączeniu z serwerem (po wykonaniu komendy + opóźnienie jeśli są ustawione); kanały wymagające hasła muszą znajdować się na początku listy, wszystkie hasła muszą zostać podane po kanałach (oddzielone spacją) (przykład: "#kanał1,#kanał2,#kanał3 hasło1,hasło2", gdzie #kanał1 i #kanał2 wymagają odpowiednio hasło1 i hasło2) (zawartość jest przetwarzana, zobacz /help eval; opcje serwera mogą zostać użytego w postaci ${irc_server.xxx} oraz ${server} jest zastępowany nazwą serwera)] +** typ: ciąg +** wartości: dowolny ciąg +** domyślna wartość: `+""+` + +* [[option_irc.server_default.autojoin_dynamic]] *irc.server_default.autojoin_dynamic* +** opis: pass:none[ustawia automatycznie opcję "autojoin" zgodnie z listą kanałów na które ręcznie wszedłeś i z których sam wyszedłeś za pomocą komend /join i /part] +** typ: bool +** wartości: on, off +** domyślna wartość: `+off+` + +* [[option_irc.server_default.autoreconnect]] *irc.server_default.autoreconnect* +** opis: pass:none[automatycznie połącz się z serwerem po rozłączeniu] +** typ: bool +** wartości: on, off +** domyślna wartość: `+on+` + +* [[option_irc.server_default.autoreconnect_delay]] *irc.server_default.autoreconnect_delay* +** opis: pass:none[opóźnienie (w sekundach) przed próbą ponownego połączenia się z serwerem] +** typ: liczba +** wartości: 1 .. 65535 +** domyślna wartość: `+10+` + +* [[option_irc.server_default.autorejoin]] *irc.server_default.autorejoin* +** opis: pass:none[automatycznie wejdź na kanały po wykopaniu; możesz zdefiniować lokalną zmienną bufora do nadpisania tej wartości (nazwa zmiennej: "autorejoin", wartości: "on" lub "off")] +** typ: bool +** wartości: on, off +** domyślna wartość: `+off+` + +* [[option_irc.server_default.autorejoin_delay]] *irc.server_default.autorejoin_delay* +** opis: pass:none[opóźnienie (w sekundach) przed wejściem na kanał (po wykopaniu)] +** typ: liczba +** wartości: 0 .. 86400 +** domyślna wartość: `+30+` + +* [[option_irc.server_default.away_check]] *irc.server_default.away_check* +** opis: pass:none[przerwa pomiędzy dwoma sprawdzeniami stanu nieobecności (w minutach, 0 = nigdy nie sprawdzaj)] +** typ: liczba +** wartości: 0 .. 10080 +** domyślna wartość: `+0+` + +* [[option_irc.server_default.away_check_max_nicks]] *irc.server_default.away_check_max_nicks* +** opis: pass:none[nie sprawdzaj nieobecności osób na kanałach z dużą ilością użytkowników (0 = nieograniczone)] +** typ: liczba +** wartości: 0 .. 1000000 +** domyślna wartość: `+25+` + +* [[option_irc.server_default.capabilities]] *irc.server_default.capabilities* +** opis: pass:none[oddzielona przecinkami lista opcji klienta do włączenia dla serwera, jeśli są dostępne (zobacz /help cap żeby poznać listę opcji wspieranych przez WeeChat); "*" włącza domyślnie wszystkie opcje (wspierane zarówno przez serwer i WeeChat); wildcard "*" jest dozwolony; opcje zaczynające się od "!" są pomijane (przykład: "*,!account-*,!extended-join")] +** typ: ciąg +** wartości: dowolny ciąg +** domyślna wartość: `+"*"+` + +* [[option_irc.server_default.charset_message]] *irc.server_default.charset_message* +** opis: pass:none[część wiadomości IRC (otrzymanej lub wysłanej), która jest kodowana na ustawione kodowanie; message = cała wiadomość IRC (domyślne), channel = zaczynając od nazwy kanału (jeśli znaleziona, w przeciwnym wypadku text), text = zaczynając od samego tekstu (powinieneś spróbować tej wartości, jeśli masz problem z kodowaniem nazwy kanału)] +** typ: liczba +** wartości: message, channel, text +** domyślna wartość: `+message+` + +* [[option_irc.server_default.command]] *irc.server_default.command* +** opis: pass:none[komenda(y) do wykonania po połączeniu z serwerem przed automatycznym wejściem na kanały (wiele komend powinno zostać oddzielone ";", użyj "\;" dla średnika, specjalne zmienne $nick, $channel oraz $server są zastępowane ich wartościami) (uwaga: zawartość jest przetwarzana, zobacz /help eval; opcje serwera mogą zostać użytego w postaci ${irc_server.xxx} oraz ${server} jest zastępowany nazwą serwera)] +** typ: ciąg +** wartości: dowolny ciąg +** domyślna wartość: `+""+` + +* [[option_irc.server_default.command_delay]] *irc.server_default.command_delay* +** opis: pass:none[odstęp (w sekundach) po wykonaniu komendy i przed automatycznym wejściem na kanały (na przykład: daj trochę czasu na uwierzytelnienie przed wejściem na kanały)] +** typ: liczba +** wartości: 0 .. 3600 +** domyślna wartość: `+0+` + +* [[option_irc.server_default.connection_timeout]] *irc.server_default.connection_timeout* +** opis: pass:none[czas oczekiwania (w sekundach) pomiędzy połączeniem TCP z serwerem a otrzymaniem wiadomości 001, jeśli czas zostanie przekroczony przed odebraniem wiadomości 001, WeeChat rozłączy się z serwerem] +** typ: liczba +** wartości: 1 .. 3600 +** domyślna wartość: `+60+` + +* [[option_irc.server_default.default_chantypes]] *irc.server_default.default_chantypes* +** opis: pass:none[prefiks typu kanału jeśli serwer nie wyśle jego w wiadomości 005 (domyślnie „#&”)] +** typ: ciąg +** wartości: dowolny ciąg +** domyślna wartość: `+"#&"+` + +* [[option_irc.server_default.ipv6]] *irc.server_default.ipv6* +** opis: pass:none[używaj protokołu IPv6 do komunikacji z serwerem (próbuj IPv6 później wróć do IPv4); jeśli wyłączone używane jest tylko IPv4] +** typ: bool +** wartości: on, off +** domyślna wartość: `+on+` + +* [[option_irc.server_default.local_hostname]] *irc.server_default.local_hostname* +** opis: pass:none[własna lokalna nazwa hosta/adres IP dla serwera (opcjonalne, jeśli puste użyta zostanie lokalna nazwa hosta)] +** typ: ciąg +** wartości: dowolny ciąg +** domyślna wartość: `+""+` + +* [[option_irc.server_default.msg_kick]] *irc.server_default.msg_kick* +** opis: pass:none[domyślna wiadomość dla wykopania z kanału używana przez komendy "/kick" i "/kickban" (uwaga: zawartość jest przetwarzana zobacz /help eval; specjalne zmienne jak ${nick} (własny nick), ${target} (docelowy nick), ${channel} i ${server} są zamieniane na odpowiednie wartości)] +** typ: ciąg +** wartości: dowolny ciąg +** domyślna wartość: `+""+` + +* [[option_irc.server_default.msg_part]] *irc.server_default.msg_part* +** opis: pass:none[domyślna wiadomość przy wyjściu z kanału (uwaga: zawartość jest przetwarzana zobacz /help eval; specjalne zmienne jak ${nick}, ${channel} i ${server} są zamieniane na odpowiednie wartości; "%v" jest zamieniane na wersję WeeChat jeśli w ciągu nie ma ${...})] +** typ: ciąg +** wartości: dowolny ciąg +** domyślna wartość: `+"WeeChat ${info:version}"+` + +* [[option_irc.server_default.msg_quit]] *irc.server_default.msg_quit* +** opis: pass:none[domyślna wiadomość przy odłączeniu od serwera (uwaga: zawartość jest przetwarzana zobacz /help eval; specjalne zmienne jak ${nick}, ${channel} i ${server} są zamieniane na odpowiednie wartości; "%v" jest zamieniane na wersję WeeChat jeśli w ciągu nie ma ${...})] +** typ: ciąg +** wartości: dowolny ciąg +** domyślna wartość: `+"WeeChat ${info:version}"+` + +* [[option_irc.server_default.nicks]] *irc.server_default.nicks* +** opis: pass:none[nicki do użycia na serwerze (oddzielone przecinkiem) (uwaga: zawartość jest przetwarzana, zobacz /help eval; opcje serwera mogą zostać użytego w postaci ${irc_server.xxx} oraz ${server} jest zastępowany nazwą serwera)] +** typ: ciąg +** wartości: dowolny ciąg +** domyślna wartość: `+""+` + +* [[option_irc.server_default.nicks_alternate]] *irc.server_default.nicks_alternate* +** opis: pass:none[alternatywny nick, kiedy nick jest już zajęty na serwerze: dodaje kilka "_", aż nick będzie miał długość 9, następnie zamienia ostatni znak (lub ostatnie dwa znaki) na numer od 1 do 99, do czasu aż zostanie znaleziony nick nie użyty na swerwerze] +** typ: bool +** wartości: on, off +** domyślna wartość: `+on+` + +* [[option_irc.server_default.notify]] *irc.server_default.notify* +** opis: pass:none[lista powiadomień dla tego serwera (nie powinieneś zmieniać tej opcji tylko użyć w zamian komendy /notify)] +** typ: ciąg +** wartości: dowolny ciąg +** domyślna wartość: `+""+` + +* [[option_irc.server_default.password]] *irc.server_default.password* +** opis: pass:none[hasło dla serwera (uwaga: zawartość jest przetwarzana zobacz /help eval; opcje serwera mogą zostać użytego w postaci ${irc_server.xxx} oraz ${server} jest zastępowany nazwą serwera)] +** typ: ciąg +** wartości: dowolny ciąg +** domyślna wartość: `+""+` + +* [[option_irc.server_default.proxy]] *irc.server_default.proxy* +** opis: pass:none[nazwa pośrednika używanego dla tego serwera (opcjonalne, pośrednik musi być zdefiniowany za pomocą komendy /proxy)] +** typ: ciąg +** wartości: dowolny ciąg +** domyślna wartość: `+""+` + +* [[option_irc.server_default.realname]] *irc.server_default.realname* +** opis: pass:none[real name używany na serwerze (uwaga: zawartość jest przetwarzana zobacz /help eval; opcje serwera mogą zostać użytego w postaci ${irc_server.xxx} oraz ${server} jest zastępowany nazwą serwera)] +** typ: ciąg +** wartości: dowolny ciąg +** domyślna wartość: `+""+` + +* [[option_irc.server_default.sasl_fail]] *irc.server_default.sasl_fail* +** opis: pass:none[akcja do wykonania jeśli uwierzytelnianie SASL się nie powiedzie: "continue" dla zignorowania problemu, "reconnect" ponownie połącz się z serwerem, "disconnect" odłącz od serwera (zobacz też opcję irc.network.sasl_fail_unavailable)] +** typ: liczba +** wartości: continue, reconnect, disconnect +** domyślna wartość: `+reconnect+` + +* [[option_irc.server_default.sasl_key]] *irc.server_default.sasl_key* +** opis: pass:none[plik z kluczem prywatnym ECC dla mechanizmu "ecdsa-nist256p-challenge" (ś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_irc.server_default.sasl_mechanism]] *irc.server_default.sasl_mechanism* +** opis: pass:none[mechanizm autentykacji SASL: "plain" dla hasła w czystym tekście, "scram-sha-1" dla uwierzytelnienia SCRAM za pomocą algorytmu SHA-1, "scram-sha-256" dla uwierzytelnienia SCRAM za pomocą algorytmu SHA-256, "scram-sha-512" dla uwierzytelnienia SCRAM za pomocą algorytmu SHA-512, "ecdsa-nist256p-challenge" uwierzytelnianie na podstawie pary kluczy, "external" dla uwierzytelnienia za pomocą certyfikatu SSL po stronie klienta] +** typ: liczba +** wartości: plain, scram-sha-1, scram-sha-256, scram-sha-512, ecdsa-nist256p-challenge, external +** domyślna wartość: `+plain+` + +* [[option_irc.server_default.sasl_password]] *irc.server_default.sasl_password* +** opis: pass:none[hasło dla uwierzytelniania SASL; ta opcja nie jest używana dla mechanizmów "ecdsa-nist256p-challenge" oraz "external" (uwaga: zawartość jest przetwarzana, zobacz /help eval; opcje serwera mogą zostać użytego w postaci ${irc_server.xxx} oraz ${server} jest zastępowany nazwą serwera)] +** typ: ciąg +** wartości: dowolny ciąg +** domyślna wartość: `+""+` + +* [[option_irc.server_default.sasl_timeout]] *irc.server_default.sasl_timeout* +** opis: pass:none[czas oczekiwania (w sekundach) przed zaprzestaniem uwierzytelniania SASL] +** typ: liczba +** wartości: 1 .. 3600 +** domyślna wartość: `+15+` + +* [[option_irc.server_default.sasl_username]] *irc.server_default.sasl_username* +** opis: pass:none[nazwa użytkownika dla uwierzytelniania SASL; ta opcja nie jest używana dla mechanizmu "external" (uwaga: zawartość jest przetwarzana, zobacz /help eval; opcje serwera mogą zostać użytego w postaci ${irc_server.xxx} oraz ${server} jest zastępowany nazwą serwera)] +** typ: ciąg +** wartości: dowolny ciąg +** domyślna wartość: `+""+` + +* [[option_irc.server_default.split_msg_max_length]] *irc.server_default.split_msg_max_length* +** opis: pass:none[podziel wychodzące wiadomości IRC aby mieściły się w podanej ilości znaków; domyślna wartość to 512, jest to bezpieczna i zalecana wartość; wartość 0 wyłącza podział (nie zalecane, chyba ze wiesz co robisz); dozwolone wartości to 0 lub dowolna liczba pomiędzy 128 a 4096; ta opcja powinna być zmieniana tylko dla niestandardowych serwerów IRC, na przykład dla bramek jak bitlbee] +** typ: liczba +** wartości: 0 .. 4096 +** domyślna wartość: `+512+` + +* [[option_irc.server_default.ssl]] *irc.server_default.ssl* +** opis: pass:none[użyj protokołu SSL do komunikacji z serwerem] +** typ: bool +** wartości: on, off +** domyślna wartość: `+off+` + +* [[option_irc.server_default.ssl_cert]] *irc.server_default.ssl_cert* +** opis: pass:none[Plik certyfikatu SSL używany do automatycznego uwierzytelnienia nicka (ś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_irc.server_default.ssl_dhkey_size]] *irc.server_default.ssl_dhkey_size* +** opis: pass:none[rozmiar klucza używanego podczas połączenia Wymiany Kluczy Diffie-Hellmana] +** typ: liczba +** wartości: 0 .. 2147483647 +** domyślna wartość: `+2048+` + +* [[option_irc.server_default.ssl_fingerprint]] *irc.server_default.ssl_fingerprint* +** opis: pass:none[skrót certyfikatu, który jest zaufany i akceptowany dla serwera; tylko cyfry heksadecymalne są dozwolone (0-9, a-f): 128 znaki dla SHA-512, 64 znaki dla SHA-256, 40 znaków dla SHA-1 (mało bezpieczne, nie zalecane); wiele skrótów można oddzielić przecinkami; jeśli ta opcja jest ustawiona, certyfikat NIE jest dalej sprawdzany (opcja "ssl_verify") (uwaga: zawartość jest przetwarzana, zobacz /help eval; opcje serwera mogą zostać użytego w postaci ${irc_server.xxx} oraz ${server} jest zastępowany nazwą serwera)] +** typ: ciąg +** wartości: dowolny ciąg +** domyślna wartość: `+""+` + +* [[option_irc.server_default.ssl_password]] *irc.server_default.ssl_password* +** opis: pass:none[hasło do klucza prywatnego certyfikatu SSL; tylko dla gnutls w wersji >= 3.1.0 (uwaga: zawartość jest przetwarzana zobacz /help eval; opcje serwera są przetwarzane w postaci ${irc_server.xxx}, ${server} jest zastępowany nazwą serwera)] +** typ: ciąg +** wartości: dowolny ciąg +** domyślna wartość: `+""+` + +* [[option_irc.server_default.ssl_priorities]] *irc.server_default.ssl_priorities* +** opis: pass:none[ciąg z priorytetami dla gnutls (składnię można znaleźć w dokumentacji gnutls dla funkcji gnutls_priority_init, często używane ciągi to: "PERFORMANCE", "NORMAL", "SECURE128", "SECURE256", "EXPORT", "NONE")] +** typ: ciąg +** wartości: dowolny ciąg +** domyślna wartość: `+"NORMAL:-VERS-SSL3.0"+` + +* [[option_irc.server_default.ssl_verify]] *irc.server_default.ssl_verify* +** opis: pass:none[sprawdź czy połączenie ssl jest w pełni zaufane] +** typ: bool +** wartości: on, off +** domyślna wartość: `+on+` + +* [[option_irc.server_default.usermode]] *irc.server_default.usermode* +** opis: pass:none[tryb(y) użytkowniak do ustawienia po połączeniu z serwerem przed wykonaniem komend oraz automatycznym wejściem na kanały; przykłady "+R" (w celu ustawienia trybu "R"), "+R-i" (w celu utawienia trbu "R" i zdjęcia trybu "i"); zobacz /help mode dla pełnej lity składni (uwaga: zawartość jest przetwarzana, zobacz /help eval; opcje serwera mogą zostać użytego w postaci ${irc_server.xxx} oraz ${server} jest zastępowany nazwą serwera)] +** typ: ciąg +** wartości: dowolny ciąg +** domyślna wartość: `+""+` + +* [[option_irc.server_default.username]] *irc.server_default.username* +** opis: pass:none[nazwa użytkownika używana na serwerze (uwaga: zawartość jest przetwarzana zobacz /help eval; opcje serwera mogą zostać użytego w postaci ${irc_server.xxx} oraz ${server} jest zastępowany nazwą serwera)] +** typ: ciąg +** wartości: dowolny ciąg +** 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] +** 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_relay.color.status_active]] *relay.color.status_active* +** opis: pass:none[kolor statusu "connected"] +** 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_relay.color.status_auth_failed]] *relay.color.status_auth_failed* +** opis: pass:none[kolor statusu "authentication 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ść: `+lightmagenta+` + +* [[option_relay.color.status_connecting]] *relay.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ść: `+white+` + +* [[option_relay.color.status_disconnected]] *relay.color.status_disconnected* +** opis: pass:none[kolor statusu "disconnected"] +** 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_relay.color.status_waiting_auth]] *relay.color.status_waiting_auth* +** opis: pass:none[kolor statusu "waiting authentication"] +** 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_relay.color.text]] *relay.color.text* +** opis: pass:none[kolor tekstu w buforze pośrednika] +** 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_relay.color.text_bg]] *relay.color.text_bg* +** opis: pass:none[kolor tła w buforze pośrednika] +** 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_relay.color.text_selected]] *relay.color.text_selected* +** opis: pass:none[kolor tekstu zaznaczonej linii w buforze pośrednika] +** 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_relay.irc.backlog_max_minutes]] *relay.irc.backlog_max_minutes* +** opis: pass:none[maksymalna ilość minut w historii każdego bufora dla kanału IRC (0 = bez ograniczeń, przykłady: 1440 = dzień, 10080 = tydzień, 43200 = miesiąc, 525600 = rok)] +** typ: liczba +** wartości: 0 .. 2147483647 +** domyślna wartość: `+0+` + +* [[option_relay.irc.backlog_max_number]] *relay.irc.backlog_max_number* +** opis: pass:none[maksymalna ilość linii w historii każdego bufora dla kanału IRC (0 = bez ograniczeń)] +** typ: liczba +** wartości: 0 .. 2147483647 +** domyślna wartość: `+1024+` + +* [[option_relay.irc.backlog_since_last_disconnect]] *relay.irc.backlog_since_last_disconnect* +** opis: pass:none[wyświetlaj backlog zaczynając od ostatniego rozłączenia klienta] +** typ: bool +** wartości: on, off +** domyślna wartość: `+on+` + +* [[option_relay.irc.backlog_since_last_message]] *relay.irc.backlog_since_last_message* +** opis: pass:none[wyświetlaj backlog zaczynając od twojej ostatniej wiadomości] +** typ: bool +** wartości: on, off +** domyślna wartość: `+off+` + +* [[option_relay.irc.backlog_tags]] *relay.irc.backlog_tags* +** opis: pass:none[oddzielona przecinkami lista tagów dla wiadomości, które są wyświetlane w backlogu dla kanałów IRC (wspierane tagi: "irc_join", "irc_part", "irc_quit", "irc_nick", "irc_privmsg"), "*" = dla wszystkich wspieranych tagów] +** typ: ciąg +** wartości: dowolny ciąg +** domyślna wartość: `+"irc_privmsg"+` + +* [[option_relay.irc.backlog_time_format]] *relay.irc.backlog_time_format* +** opis: pass:none[format czasu wiadomości w backlogu (zobacz man strftime dla formatu) (nie używane jeśli dla serwera ustawiono "server-time" przez klienta, ponieważ czas jest wysyłany jako tag irc); pusty ciąg = wyłącza znacznik czasu w backlogu] +** typ: ciąg +** wartości: dowolny ciąg +** domyślna wartość: `+"[%H:%M] "+` + +* [[option_relay.look.auto_open_buffer]] *relay.look.auto_open_buffer* +** opis: pass:none[automatycznie otwiera bufor kiedy podłącza się nowy klient] +** typ: bool +** wartości: on, off +** domyślna wartość: `+on+` + +* [[option_relay.look.raw_messages]] *relay.look.raw_messages* +** opis: pass:none[ilość nieprzetworzonych wiadomości do zachowania w pamięci, kiedy zamknięty jest bufor nieprzetworzonych danych (wiadomości zostaną wyświetlone po otworzeniu dla nich bufora)] +** typ: liczba +** wartości: 0 .. 65535 +** domyślna wartość: `+256+` + +* [[option_relay.network.allow_empty_password]] *relay.network.allow_empty_password* +** opis: pass:none[zezwala na puste haslo dla pośrednika (zaleca się włączać tylko dla testów albo dla sieci lokalnej)] +** typ: bool +** wartości: on, off +** domyślna wartość: `+off+` + +* [[option_relay.network.allowed_ips]] *relay.network.allowed_ips* +** opis: pass:none[Rozszerzone wyrażenia regularne POSIX z adresami IP dozwolonymi dla pośrednika (nie wrażliwe na wielkość znaków, umieszczenie "(?-i)" na początku sprawi, że wielość znaków będzie miała znaczenie), przykład: "^(123\.45\.67\.89|192\.160\..*)$"] +** typ: ciąg +** wartości: dowolny ciąg +** domyślna wartość: `+""+` + +* [[option_relay.network.auth_timeout]] *relay.network.auth_timeout* +** opis: pass:none[limit czasu (w sekundach) na uwierzytelnienie klienta: połączenie jest zamykane jeśli klient się nie uwierzytelni w tym czasie oraz status klienta jest ustawiany na „authentication failed” (0 = brak limitu)] +** typ: liczba +** wartości: 0 .. 2147483647 +** domyślna wartość: `+60+` + +* [[option_relay.network.bind_address]] *relay.network.bind_address* +** opis: pass:none[adres do przypisania (jeśli puste, połączenie jest możliwe na wszystkich interfejsach, użyj "127.0.0.1", aby pozwolić tylko na połączenia z tej maszyny)] +** typ: ciąg +** wartości: dowolny ciąg +** domyślna wartość: `+""+` + +* [[option_relay.network.clients_purge_delay]] *relay.network.clients_purge_delay* +** opis: pass:none[opóźnienie, z jakim zostaną skasowane rozłączone klienty (w minutach, 0 = natychmiast, -1 nigdy)] +** typ: liczba +** wartości: -1 .. 43200 +** domyślna wartość: `+0+` + +* [[option_relay.network.compression]] *relay.network.compression* +** opis: pass:none[kompresja wiadomości wysyłanych do klientów protokołu "weechat": 0 = wyłączona, 1 = niska kompresja / szybka ... 100 = najlepsza kompresja / wolna; 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: 0 .. 100 +** domyślna wartość: `+20+` + +* [[option_relay.network.ipv6]] *relay.network.ipv6* +** opis: pass:none[nasłuchuj domyślnie na gnieździe IPv6 (w dodatku do domyślnego IPv4); protokoły IPv4 i IPv6 mogą być wymuszane (pojedynczo lub razem) w nazwie protokołu (zobacz /help relay)] +** typ: bool +** wartości: on, off +** domyślna wartość: `+on+` + +* [[option_relay.network.max_clients]] *relay.network.max_clients* +** opis: pass:none[maksymalna ilość klientów łączących się na port (0 = brak limitu)] +** typ: liczba +** wartości: 0 .. 2147483647 +** domyślna wartość: `+5+` + +* [[option_relay.network.nonce_size]] *relay.network.nonce_size* +** opis: pass:none[rozmiar noncji (w bajtach), generowane podczas połączenia klienta; klient musi użyć tej noncji w połączeniu z noncją klienta i hasłem podczas hashowania hasła w komendzie „init” protokołu weechat] +** typ: liczba +** wartości: 8 .. 128 +** domyślna wartość: `+16+` + +* [[option_relay.network.password]] *relay.network.password* +** opis: pass:none[hasło wymagane od klientów do połączenia z tym pośrednikiem (pusta wartość oznacza brak hasła, zobacz opcję relay.network.allow_empty_password) (uwaga: zawartość jest przetwarzana, zobacz /help eval)] +** typ: ciąg +** wartości: dowolny ciąg +** domyślna wartość: `+""+` + +* [[option_relay.network.password_hash_algo]] *relay.network.password_hash_algo* +** opis: pass:none[oddzielona przecinkami lista algorytmów hashujących używanych dla uwierzytelnienia hasłem w protokole weechat, dostępne wartości: "plain" (hasło w postaci jawnej, nie zahashowane), "sha256", "sha512", "pbkdf2+sha256", "pbkdf2+sha512", "*" oznacza wszystkie algorytmy, nazwa zaczynająca się od "!" oznacza wartość negatywną w celu uniknięcia użycia algorytmu, znak "*" może zostać użyty w nazwie (przykłady: "*", "pbkdf2*", "*,!plain")] +** typ: ciąg +** wartości: dowolny ciąg +** domyślna wartość: `+"*"+` + +* [[option_relay.network.password_hash_iterations]] *relay.network.password_hash_iterations* +** opis: pass:none[ilość iteracji zapytań klienta protokołu weechat w przypadku hashowania haseł algorytmem PBKDF2 podczas uwierzytelnienia; im więcej iteracji tym lepiej w kwestii bezpieczeństwa, jednak zwiększa to czas przetwarzania; ta liczba nie powinna być zbyt wysoka jeśli masz słabe CPU] +** typ: liczba +** wartości: 1 .. 1000000 +** domyślna wartość: `+100000+` + +* [[option_relay.network.ssl_cert_key]] *relay.network.ssl_cert_key* +** opis: pass:none[plik z certyfikatem SSL i kluczem prywatnym (dla obsługi klientów poprzez SSL) (ś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ść: `+"${weechat_config_dir}/ssl/relay.pem"+` + +* [[option_relay.network.ssl_priorities]] *relay.network.ssl_priorities* +** opis: pass:none[ciąg z priorytetami dla gnutls (składnię można znaleźć w dokumentacji gnutls dla funkcji gnutls_priority_init, często używane ciągi to: "PERFORMANCE", "NORMAL", "SECURE128", "SECURE256", "EXPORT", "NONE")] +** typ: ciąg +** wartości: dowolny ciąg +** domyślna wartość: `+"NORMAL:-VERS-SSL3.0"+` + +* [[option_relay.network.totp_secret]] *relay.network.totp_secret* +** opis: pass:none[sekret do generowania Time-based One-Time Password (TOTP), zakodowany w base32 (tylko litery i cyfry od 2 do 7); używany jako drugi składnik uwierzytelniania przez protokół weechat, dodatkowo do hasła, które nie może być puste (pusta wartość oznacza brak TOTP) (uwaga: zawartość jest przetwarzana, zobacz /help eval)] +** typ: ciąg +** wartości: dowolny ciąg +** domyślna wartość: `+""+` + +* [[option_relay.network.totp_window]] *relay.network.totp_window* +** opis: pass:none[liczba Time-based One-Time Passwords do zaakceptowania przez i po obecnym: 0 = akceptuj tylko obecne hasło, 1 = akceptuj jedno wcześniejsze obecne i następne hasło, 2 = akceptuj dwa wcześniejsze obecne i dwa następne hasła, ...; wysoka liczba obniża poziom bezpieczeństwa (0 lub 1 to zalecane wartości)] +** typ: liczba +** wartości: 0 .. 256 +** domyślna wartość: `+0+` + +* [[option_relay.network.websocket_allowed_origins]] *relay.network.websocket_allowed_origins* +** opis: pass:none[Rozszerzone wyrażenia regularne POSIX ze źródłami dozwolonymi dla gniazd webowych (nie wrażliwe na wielkość znaków, umieszczenie "(?-i)" na początku sprawi, że wielość znaków będzie miała znaczenie), przykład: "^http://(www\.)?przykład\.(com|org)"] +** typ: ciąg +** wartości: dowolny ciąg +** domyślna wartość: `+""+` + +* [[option_relay.weechat.commands]] *relay.weechat.commands* +** opis: pass:none[oddzielona przecinkami lista poleceń dozwolonych/zakazanych kiedy dane (tekst lub polecenia) zostaną odebrane od klienta; "*" oznacza dowolną komendę, nazwa zaczynająca się od "!" oznacza nie dozwoloną komendę, znak "*" dozwolony jest w nazwach; ta opcja powinna być ustawiona jeśli pośrednik nie jest bezpieczny (ktoś może go użyć do wykonywania poleceń); na przykład "*,!exec,!quit" zezwala na wszystkie polecenia poza /exec i /quit] +** typ: ciąg +** wartości: dowolny ciąg +** domyślna wartość: `+""+` +// end::relay_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] +** typ: bool +** wartości: on, off +** domyślna wartość: `+off+` + +* [[option_ruby.look.eval_keep_context]] *ruby.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::ruby_options[] + +// tag::script_options[] +* [[option_script.color.status_autoloaded]] *script.color.status_autoloaded* +** opis: pass:none[kolor dla statusu "automatycznie ładowany" ("a")] +** 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_script.color.status_held]] *script.color.status_held* +** opis: pass:none[kolor dla statusu "wstrzymany" ("H")] +** 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_script.color.status_installed]] *script.color.status_installed* +** opis: pass:none[kolor dla statusu "zainstalowany" ("i")] +** 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_script.color.status_obsolete]] *script.color.status_obsolete* +** opis: pass:none[kolor dla statusu "przestarzały" ("N")] +** 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_script.color.status_popular]] *script.color.status_popular* +** opis: pass:none[kolor dla statusu "popularny" ("*")] +** 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_script.color.status_running]] *script.color.status_running* +** opis: pass:none[kolor dla statusu "uruchomiony" ("r")] +** 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_script.color.status_unknown]] *script.color.status_unknown* +** opis: pass:none[kolor dla statusu "nieznany" ("?")] +** 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_script.color.text]] *script.color.text* +** opis: pass:none[kolor tekstu w buforze skryptó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_script.color.text_bg]] *script.color.text_bg* +** opis: pass:none[kolor tła w buforze skryptó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_script.color.text_bg_selected]] *script.color.text_bg_selected* +** opis: pass:none[kolor tła dla zaznaczonej linii w buforze skryptó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+` + +* [[option_script.color.text_date]] *script.color.text_date* +** opis: pass:none[kolor dat w buforze skryptó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_script.color.text_date_selected]] *script.color.text_date_selected* +** opis: pass:none[kolor daty w zaznaczonej linii w buforze skryptó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_script.color.text_delimiters]] *script.color.text_delimiters* +** opis: pass:none[kolor ograniczników w buforze skryptó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_script.color.text_description]] *script.color.text_description* +** opis: pass:none[kolor opisu w buforze skryptó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_script.color.text_description_selected]] *script.color.text_description_selected* +** opis: pass:none[kolor opisu w zaznaczonej linii w buforze skryptó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_script.color.text_extension]] *script.color.text_extension* +** opis: pass:none[kolor rozszerzenia w buforze skryptó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_script.color.text_extension_selected]] *script.color.text_extension_selected* +** opis: pass:none[kolor rozszerzenia w zaznaczonej linii w buforze skryptó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_script.color.text_name]] *script.color.text_name* +** opis: pass:none[kolor nazwy skryptu w buforze skryptó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_script.color.text_name_selected]] *script.color.text_name_selected* +** opis: pass:none[kolor nazwy skryptu w zaznaczonej linii w buforze skryptó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+` + +* [[option_script.color.text_selected]] *script.color.text_selected* +** opis: pass:none[kolor tekstu w zaznaczonej linii w buforze skryptó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_script.color.text_tags]] *script.color.text_tags* +** opis: pass:none[kolor tagów w buforze skryptó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_script.color.text_tags_selected]] *script.color.text_tags_selected* +** opis: pass:none[kolor tagów w zaznaczonej linii w buforze skryptó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ść: `+yellow+` + +* [[option_script.color.text_version]] *script.color.text_version* +** opis: pass:none[kolor wersji w buforze skryptó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ść: `+magenta+` + +* [[option_script.color.text_version_loaded]] *script.color.text_version_loaded* +** opis: pass:none[kolor wersji załadowanego skryptu w buforze skryptó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_script.color.text_version_loaded_selected]] *script.color.text_version_loaded_selected* +** opis: pass:none[kolor załadowanej wersji skryptu w zaznaczonej linii w buforze skryptó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_script.color.text_version_selected]] *script.color.text_version_selected* +** opis: pass:none[kolor wersji w zaznaczonej linii w buforze skryptó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_script.look.columns]] *script.look.columns* +** opis: pass:none[format kolumn wyświetlanych w buforze skryptów: następujące identyfikatory kolumn są zastępowane przez ich wartość: %a=autor, %d=opis, %D=data dodania, %e=rozszerzenie, %l=język, %L=licencja, %n=nazwa z rozszerzeniem, %N=nazwa, %r=wymagania, %s=status, %t=tagi, %u=data aktualizacji, %v=wersja, %V=załadowana wersja, %w=min_weechat, %W=max_weechat)] +** typ: ciąg +** wartości: dowolny ciąg +** domyślna wartość: `+"%s %n %V %v %u | %d | %t"+` + +* [[option_script.look.diff_color]] *script.look.diff_color* +** opis: pass:none[koloruj wyjście diffa] +** typ: bool +** wartości: on, off +** domyślna wartość: `+on+` + +* [[option_script.look.diff_command]] *script.look.diff_command* +** opis: pass:none[komenda używana do pokazania różnic pomiędzy załadowanym skryptem i nową wersją w repozytorium ("auto" = automatyczna detekcja polecenie diff (git albo diff), pusta wartość = wyłączenie diffa, inny ciąg = nazwa komendy, na przykład "diff")] +** typ: ciąg +** wartości: dowolny ciąg +** domyślna wartość: `+"auto"+` + +* [[option_script.look.display_source]] *script.look.display_source* +** opis: pass:none[wyświetl kod źródłowy skryptu w buforze ze szczegółami o skrypcie (skrypt jest pobierany do pliku tymczasowego, kiedy pokazywane są szczegółowe informacje na jego temat)] +** typ: bool +** wartości: on, off +** domyślna wartość: `+on+` + +* [[option_script.look.quiet_actions]] *script.look.quiet_actions* +** opis: pass:none[ciche akcje na buforze skryptów: nie wyświetlaj wiadomości w głównym buforze, kiedy skrypty są instalowane/usuwane/ładowane/wyładowywane (wyświetlane są tylko błędy)] +** typ: bool +** wartości: on, off +** domyślna wartość: `+on+` + +* [[option_script.look.sort]] *script.look.sort* +** opis: pass:none[domyślne sortowania dla skryptów: oddzielona przecinkami lista identyfikatorów: a=autor, A=automatycznie ładowany, d=data dodania, e=rozszerzenie, i=zainstalowany, l=język, n=nazwa, o=przestarzały, p=popularność, r=uruchomiony, u=data aktualizacji; znak "-" może zostać użyty przed identyfikatorem w celu odwrócenia kolejności; przykład: "i,u": najpierw zainstalowane skrypty, sortowane po dacie aktualizacji] +** typ: ciąg +** wartości: dowolny ciąg +** domyślna wartość: `+"i,p,n"+` + +* [[option_script.look.translate_description]] *script.look.translate_description* +** opis: pass:none[przetłumaczony opis skryptu (jeśli tłumaczenie jest dostępne w twoim języku, w przeciwnym wypadku zostanie użyta angielska wersja)] +** typ: bool +** wartości: on, off +** domyślna wartość: `+on+` + +* [[option_script.look.use_keys]] *script.look.use_keys* +** opis: pass:none[użyj skrótu alt+X w buforze skryptów, aby wykonać akcję na skrypcie (alt+i = zainstaluj, alt+r = usuń, ...); jeśli wyłączone dozwolone jest tylko wprowadzanie: i, r, ...] +** typ: bool +** wartości: on, off +** domyślna wartość: `+on+` + +* [[option_script.scripts.autoload]] *script.scripts.autoload* +** opis: pass:none[automatycznie ładuj zainstalowane skrypty (tworzy link w katalogu "autoload" do skryptu w katalogu nadrzędnym)] +** typ: bool +** wartości: on, off +** domyślna wartość: `+on+` + +* [[option_script.scripts.cache_expire]] *script.scripts.cache_expire* +** opis: pass:none[lokalnie zapisany czas wygaśnięcia, w minutach (-1 = nigdy nie wygasa, 0 = zawsze wygasa)] +** typ: liczba +** wartości: -1 .. 525600 +** domyślna wartość: `+1440+` + +* [[option_script.scripts.download_enabled]] *script.scripts.download_enabled* +** opis: pass:none[włącza pobieranie plików z repozytorium skryptów podczas użycia komendy /script (lista skryptów i same skrypty); lista skryptów pobierana jest z adresu URL podanego w opcji script.scripts.url; WeeChat czasami ponownie pobierze listę skryptów podczas użycia komendy /script, nawet w przypadku nie instalowania żadnego skryptu] +** typ: bool +** wartości: on, off +** domyślna wartość: `+off+` + +* [[option_script.scripts.download_timeout]] *script.scripts.download_timeout* +** opis: pass:none[czas oczekiwania (w sekundach) na pobranie skryptu i listy skryptów] +** typ: liczba +** wartości: 1 .. 3600 +** domyślna wartość: `+30+` + +* [[option_script.scripts.hold]] *script.scripts.hold* +** opis: pass:none[skrypty do "wstrzymania": oddzielona przecinkami lista skryptów, które nigdy nie zostaną zaktualizowane i nie mogą być usunięte, na przykład: "go.py,urlserver.py"] +** typ: ciąg +** wartości: dowolny ciąg +** domyślna wartość: `+""+` + +* [[option_script.scripts.path]] *script.scripts.path* +** opis: pass:none[katalog z lokalnym cache dla skryptó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_cache_dir}/script"+` + +* [[option_script.scripts.url]] *script.scripts.url* +** opis: pass:none[Adres URL pliku z listą skryptów] +** typ: ciąg +** wartości: dowolny ciąg +** domyślna wartość: `+"https://weechat.org/files/plugins.xml.gz"+` +// end::script_options[] + // 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)] @@ -29,6 +2287,218 @@ ** 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ść: `+lightred+` + +* [[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_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ść: `+cyan+` + +* [[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ść: `+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::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ść: `+lightgreen+` + +* [[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_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ść: `+lightblue+` + +* [[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ść: `+lightcyan+` + +* [[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ść: `+lightmagenta+` + +* [[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_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ść: `+cyan+` + +* [[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ść: `+green+` + +* [[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ść: `+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::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] @@ -1381,544 +3851,6 @@ ** 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[] - -// 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::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ść: `+lightred+` - -* [[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ść: `+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[] - -// 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ść: `+lightgreen+` - -* [[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_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ść: `+lightblue+` - -* [[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ść: `+lightcyan+` - -* [[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ść: `+lightmagenta+` - -* [[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_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ść: `+cyan+` - -* [[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ść: `+green+` - -* [[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ść: `+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+` - -* [[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ść: `+lightred+` - -* [[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_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ść: `+cyan+` - -* [[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ść: `+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},"+` - -* [[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+` - -* [[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_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_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+` - -* [[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_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] -** typ: liczba -** wartości: 1 .. 3 -** 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)] -** 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+` - -* [[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::xfer_options[] * [[option_xfer.color.status_aborted]] *xfer.color.status_aborted* ** opis: pass:none[kolor statusu "aborted"] @@ -2106,1935 +4038,3 @@ ** wartości: 5 .. 2147483647 ** domyślna wartość: `+300+` // end::xfer_options[] - -// tag::irc_options[] -* [[option_irc.color.input_nick]] *irc.color.input_nick* -** opis: pass:none[kolor nicka w pasku danych wejściowych] -** 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_irc.color.item_channel_modes]] *irc.color.item_channel_modes* -** opis: pass:none[kolor trybów kanału, przy nazwie kanału] -** 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_irc.color.item_lag_counting]] *irc.color.item_lag_counting* -** opis: pass:none[kolor wskaźnika opóźnienia, podczas naliczania (pong nie otrzymany od serwera, lag rośnie)] -** 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_irc.color.item_lag_finished]] *irc.color.item_lag_finished* -** opis: pass:none[kolor wskaźnika opóźnienia, kiedy otrzymamy pong od serwera] -** 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_irc.color.item_nick_modes]] *irc.color.item_nick_modes* -** opis: pass:none[kolor dla atrybutów nicka w elemencie paska "input_prompt"] -** 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_irc.color.item_tls_version_deprecated]] *irc.color.item_tls_version_deprecated* -** opis: pass:none[kolor dla przestarzałych wersji TLS w lemencie paska "tls_version"] -** 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_irc.color.item_tls_version_insecure]] *irc.color.item_tls_version_insecure* -** opis: pass:none[kolor dla niebezpiecznej wersji TLS w elemencie paska "tls_version"] -** 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_irc.color.item_tls_version_ok]] *irc.color.item_tls_version_ok* -** opis: pass:none[kolor dla wyższej wspieranej wersji TLS w elemencie paska "tls_version"] -** 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_irc.color.message_account]] *irc.color.message_account* -** opis: pass:none[kolor tekstu w wiadomościach konta] -** 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_irc.color.message_chghost]] *irc.color.message_chghost* -** opis: pass:none[kolor tekstu dla wiadomości "chghost"] -** 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_irc.color.message_join]] *irc.color.message_join* -** opis: pass:none[kolor tekstu w wiadomościach o wejściu 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ść: `+green+` - -* [[option_irc.color.message_kick]] *irc.color.message_kick* -** opis: pass:none[kolor tekstu w wiadomości kick/kill] -** 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_irc.color.message_quit]] *irc.color.message_quit* -** opis: pass:none[kolor tekstu w wiadomościach o opuszczeniu kanału/wyjściu 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ść: `+red+` - -* [[option_irc.color.message_setname]] *irc.color.message_setname* -** opis: pass:none[kolor tekstu dla wiadomości "setname"] -** 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_irc.color.mirc_remap]] *irc.color.mirc_remap* -** opis: pass:none[zamień kolory mirca w wiadomościach używając tablicy hashy: klucze to "fg,bg" przyjmują one wartości pomiędzy -1 (nie określono) a 15, wartości to nazwy lub numery kolorów WeeChat (format: "1,-1:kolor1;2,7:kolor2"), przykład: "1,-1:darkgray;1,2:white,blue" w celu przemapowania czarnego na "darkgray" oraz czarnego na niebieskim tle na "white,blue"; domyślne kolory WeeChat dla kodów IRC: 0=white, 1=black, 2=blue, 3=green, 4=lightred, 5=red, 6=magenta, 7=brown, 8=yellow, 9=lightgreen, 10=cyan, 11=lightcyan, 12=lightblue, 13=lightmagenta, 14=darkgray, 15=gray] -** typ: ciąg -** wartości: dowolny ciąg -** domyślna wartość: `+"1,-1:darkgray"+` - -* [[option_irc.color.nick_prefixes]] *irc.color.nick_prefixes* -** opis: pass:none[kolor dla przedrostków nicków zawierających oznaczenie statusu (o=operator, h=halfop, v=voice, ..), format: "o:kolor1;h:kolor2;v:kolor3" (jeśli nie znaleziono statusu, WeeChat sprawdzi następne atrybuty uzyskane od serwera ("PREFIX"); specjalny tryb "*" może zostać użyty jako domyślny kolor jeśli nie znaleziono atrybutu na liście)] -** typ: ciąg -** wartości: dowolny ciąg -** domyślna wartość: `+"y:lightred;q:lightred;a:lightcyan;o:lightgreen;h:lightmagenta;v:yellow;*:lightblue"+` - -* [[option_irc.color.notice]] *irc.color.notice* -** opis: pass:none[kolor tekstu "Notice" w podświetleniach] -** 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_irc.color.reason_kick]] *irc.color.reason_kick* -** opis: pass:none[kolor tekstu powodu w wiadomości kick/kill] -** 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_irc.color.reason_quit]] *irc.color.reason_quit* -** opis: pass:none[kolor tekstu powodu opuszczenia kanału/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+` - -* [[option_irc.color.topic_current]] *irc.color.topic_current* -** opis: pass:none[kolor obecnego tematu kanału (podczas wejścia na kanał lub użycia /topic)] -** 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_irc.color.topic_new]] *irc.color.topic_new* -** opis: pass:none[kolor nowego tematu kanału (kiedy temat został zmieniony)] -** 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_irc.color.topic_old]] *irc.color.topic_old* -** opis: pass:none[kolor starego tematu kanału (kiedy temat został zmieniony)] -** 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_irc.look.buffer_open_before_autojoin]] *irc.look.buffer_open_before_autojoin* -** opis: pass:none[otwórz bufor kanału przed odebraniem JOIN od serwera, kiedy automatyczne wchodzenie na kanały jest włączone (opcja serwera "autojoin"); przydatne żeby bufory kanałów miały zawsze ten sam numer po uruchomieniu] -** typ: bool -** wartości: on, off -** domyślna wartość: `+on+` - -* [[option_irc.look.buffer_open_before_join]] *irc.look.buffer_open_before_join* -** opis: pass:none[otwórz bufor kanału przed otrzymaniem JOIN od serwera, przy manualnym wejściu (za pomocą komendy /join)] -** typ: bool -** wartości: on, off -** domyślna wartość: `+off+` - -* [[option_irc.look.buffer_switch_autojoin]] *irc.look.buffer_switch_autojoin* -** opis: pass:none[automatycznie przełącz się na bufor kanału po automatycznym wejściu (opcja serwera "autojoin")] -** typ: bool -** wartości: on, off -** domyślna wartość: `+on+` - -* [[option_irc.look.buffer_switch_join]] *irc.look.buffer_switch_join* -** opis: pass:none[automatycznie przełącz się na bufor kanału po ręcznym wejściu (za pomocą komendy /join)] -** typ: bool -** wartości: on, off -** domyślna wartość: `+on+` - -* [[option_irc.look.color_nicks_in_names]] *irc.look.color_nicks_in_names* -** opis: pass:none[użyj koloru nicka w wynikach komendy /names (lub liście nicków wyświetlanej po wejściu na kanał)] -** typ: bool -** wartości: on, off -** domyślna wartość: `+off+` - -* [[option_irc.look.color_nicks_in_nicklist]] *irc.look.color_nicks_in_nicklist* -** opis: pass:none[używaj kolorów nicków na liście nicków] -** typ: bool -** wartości: on, off -** domyślna wartość: `+off+` - -* [[option_irc.look.color_nicks_in_server_messages]] *irc.look.color_nicks_in_server_messages* -** opis: pass:none[użyj koloru nicka w wiadomościach od serwera] -** typ: bool -** wartości: on, off -** domyślna wartość: `+on+` - -* [[option_irc.look.color_pv_nick_like_channel]] *irc.look.color_pv_nick_like_channel* -** opis: pass:none[użyj takiego samego koloru nicka na kanałach i prywatnych rozmowach] -** typ: bool -** wartości: on, off -** domyślna wartość: `+on+` - -* [[option_irc.look.ctcp_time_format]] *irc.look.ctcp_time_format* -** opis: pass:none[format czasu używany w odpowiedzi na wiadomość CTCP TIME (zobacz man strftime dla specyfikatorów daty/czasu)] -** typ: ciąg -** wartości: dowolny ciąg -** domyślna wartość: `+"%a, %d %b %Y %T %z"+` - -* [[option_irc.look.display_account_message]] *irc.look.display_account_message* -** opis: pass:none[wyświetl wiadomość ACCOUNT otrzymaną, kiedy opcja account-notify jest włączona] -** typ: bool -** wartości: on, off -** domyślna wartość: `+on+` - -* [[option_irc.look.display_away]] *irc.look.display_away* -** opis: pass:none[wyświetl wiadomość, kiedy w(y)łączamy tryb oddalenia (off: nie wyświetlaj/wysyłaj nic, local: wyświetl lokalnie, channel: wyślij akcję na kanały)] -** typ: liczba -** wartości: off, local, channel -** domyślna wartość: `+local+` - -* [[option_irc.look.display_ctcp_blocked]] *irc.look.display_ctcp_blocked* -** opis: pass:none[wyświetl wiadomość CTCP nawet jeśli jest blokowana] -** typ: bool -** wartości: on, off -** domyślna wartość: `+on+` - -* [[option_irc.look.display_ctcp_reply]] *irc.look.display_ctcp_reply* -** opis: pass:none[wyświetlaj odpowiedź CTCP wysłaną przez WeeChat] -** typ: bool -** wartości: on, off -** domyślna wartość: `+on+` - -* [[option_irc.look.display_ctcp_unknown]] *irc.look.display_ctcp_unknown* -** opis: pass:none[wyświetl wiadomość CTCP nawet jeśli jest to nieznana CTCP] -** typ: bool -** wartości: on, off -** domyślna wartość: `+on+` - -* [[option_irc.look.display_extended_join]] *irc.look.display_extended_join* -** opis: pass:none[wyświetl dodatkowe informacje w wiadomości JOIN: nazwa konta i real name (opcja extended-join musi być włączona)] -** typ: bool -** wartości: on, off -** domyślna wartość: `+on+` - -* [[option_irc.look.display_host_join]] *irc.look.display_host_join* -** opis: pass:none[wyświetlaj host w wiadomościach o wejściu na kanał] -** typ: bool -** wartości: on, off -** domyślna wartość: `+on+` - -* [[option_irc.look.display_host_join_local]] *irc.look.display_host_join_local* -** opis: pass:none[wyświetlaj host podczas wchodzenia na kanał] -** typ: bool -** wartości: on, off -** domyślna wartość: `+on+` - -* [[option_irc.look.display_host_quit]] *irc.look.display_host_quit* -** opis: pass:none[pokazuj host w wiadomościach o opuszczeniu kanału/wyjściu z IRC] -** typ: bool -** wartości: on, off -** domyślna wartość: `+on+` - -* [[option_irc.look.display_join_message]] *irc.look.display_join_message* -** opis: pass:none[oddzielona przecinkami lista wiadomości wyświetlanych po wejściu na kanał: 324 = atrybuty kanału, 329 = data utworzenia, 332 = temat, 333 = autor/data tematu, 353 = osoby na kanale, 366 = ilość osób na kanale] -** typ: ciąg -** wartości: dowolny ciąg -** domyślna wartość: `+"329,332,333,366"+` - -* [[option_irc.look.display_old_topic]] *irc.look.display_old_topic* -** opis: pass:none[wyświetl stary temat, kiedy zmieniany jest temat kanału] -** typ: bool -** wartości: on, off -** domyślna wartość: `+on+` - -* [[option_irc.look.display_pv_away_once]] *irc.look.display_pv_away_once* -** opis: pass:none[pokazuj wiadomości o nieobecności rozmówcy tylko raz w prywatnej rozmowie] -** typ: bool -** wartości: on, off -** domyślna wartość: `+on+` - -* [[option_irc.look.display_pv_back]] *irc.look.display_pv_back* -** opis: pass:none[pokaż prywatną wiadomość, kiedy użytkownik wróci na serwer] -** typ: bool -** wartości: on, off -** domyślna wartość: `+on+` - -* [[option_irc.look.display_pv_nick_change]] *irc.look.display_pv_nick_change* -** opis: pass:none[wyświetlaj zmiany nicków w prywatnych wiadomościach] -** typ: bool -** wartości: on, off -** domyślna wartość: `+on+` - -* [[option_irc.look.display_pv_warning_address]] *irc.look.display_pv_warning_address* -** opis: pass:none[wyświetl ostrzeżenie w prywatnym buforze jeśli adres zdalnego nicka uległ zmianie; ta opcja jest domyślnie wyłączona ponieważ serwery jak bitlbee powodują wyświetlanie tego ostrzeżenia, kiedy nie powinny (adres zdalnego nicka zmienia się wiele razy przy logowaniu)] -** typ: bool -** wartości: on, off -** domyślna wartość: `+off+` - -* [[option_irc.look.highlight_channel]] *irc.look.highlight_channel* -** opis: pass:none[oddzielona przecinkami lista słów do podświetleń w buforach kanałów (wielkość liter nie ma znaczenia, użyj "(?-i)" na początku słów, dla których wielkość liter ma znaczenie; zmienne specjalne $nick, $channel i $server są zastępowane odpowiednimi wartościami), słowa te są dodawane do zmiennej lokalnej bufora "highlight_words" tylko kiedy bufor jest tworzony (nie ma wpływu na obecne bufory), pusty ciąg wyłącza domyślne podświetlenia nicka, przykłady: "$nick", "(?-i)$nick"] -** typ: ciąg -** wartości: dowolny ciąg -** domyślna wartość: `+"$nick"+` - -* [[option_irc.look.highlight_pv]] *irc.look.highlight_pv* -** opis: pass:none[oddzielona przecinkami lista słów do podświetleń w prywatnych buforach (wielkość liter nie ma znaczenia, użyj "(?-i)" na początku słów, dla których wielkość liter ma znaczenie; zmienne specjalne $nick, $channel i $server są zastępowane odpowiednimi wartościami), słowa te są dodawane do zmiennej lokalnej bufora "highlight_words" tylko kiedy bufor jest tworzony (nie ma wpływu na obecne bufory), pusty ciąg wyłącza domyślne podświetlenia nicka, przykłady: "$nick", "(?-i)$nick"] -** typ: ciąg -** wartości: dowolny ciąg -** domyślna wartość: `+"$nick"+` - -* [[option_irc.look.highlight_server]] *irc.look.highlight_server* -** opis: pass:none[oddzielona przecinkami lista słów do podświetleń w buforach serwera (wielkość liter nie ma znaczenia, użyj "(?-i)" na początku słów, dla których wielkość liter ma znaczenie; zmienne specjalne $nick, $channel i $server są zastępowane odpowiednimi wartościami), słowa te są dodawane do zmiennej lokalnej bufora "highlight_words" tylko kiedy bufor jest tworzony (nie ma wpływu na obecne bufory), pusty ciąg wyłącza domyślne podświetlenia nicka, przykłady: "$nick", "(?-i)$nick"] -** typ: ciąg -** wartości: dowolny ciąg -** domyślna wartość: `+"$nick"+` - -* [[option_irc.look.highlight_tags_restrict]] *irc.look.highlight_tags_restrict* -** opis: pass:none[ogranicza podświetlenia do tych tagów w buforach irc (żeby mieć podświetlenia tylko od wiadomości użytkowników ale nie serwera); tagi muszą być oddzielone przecinkami, "+" może zostać użyty w celu uzyskania logicznego "i" pomiędzy tagami; wildcard "*" jest dozwolony w tagach; pusta wartość zezwala na podświetlenia przez dowolny tag] -** typ: ciąg -** wartości: dowolny ciąg -** domyślna wartość: `+"irc_privmsg,irc_notice"+` - -* [[option_irc.look.item_channel_modes_hide_args]] *irc.look.item_channel_modes_hide_args* -** opis: pass:none[ukryj atrybuty trybów kanałów jeśli przynajmniej jeden z tych trybów jest ustawiony ("*" zawsze ukrywaj argumenty, pusta wartość - nigdy nie ukrywaj); przykład: "kf" dla ukrycia argumentów, jeśli ustawiony jest tryb "k" lub "f"] -** typ: ciąg -** wartości: dowolny ciąg -** domyślna wartość: `+"k"+` - -* [[option_irc.look.item_display_server]] *irc.look.item_display_server* -** opis: pass:none[nazwa paska, w którym wyświetlany jest serwer IRC (dla paska stanu)] -** typ: liczba -** wartości: buffer_plugin, buffer_name -** domyślna wartość: `+buffer_plugin+` - -* [[option_irc.look.item_nick_modes]] *irc.look.item_nick_modes* -** opis: pass:none[wyświetlaj tryby nicka w elemencie paska "input_prompt"] -** typ: bool -** wartości: on, off -** domyślna wartość: `+on+` - -* [[option_irc.look.item_nick_prefix]] *irc.look.item_nick_prefix* -** opis: pass:none[wyświetlaj przedrostek nicka w elemencie paska "input_prompt"] -** typ: bool -** wartości: on, off -** domyślna wartość: `+on+` - -* [[option_irc.look.join_auto_add_chantype]] *irc.look.join_auto_add_chantype* -** opis: pass:none[automatycznie dodawaj typ kanału z przodu nazwy kanału dla komendy /join jeśli nazwa kanału nie zaczyna się od poprawnego typu kanału na serwerze; na przykład: "/join weechat" zostanie wysłane jako: "/join #weechat"] -** typ: bool -** wartości: on, off -** domyślna wartość: `+off+` - -* [[option_irc.look.msgbuffer_fallback]] *irc.look.msgbuffer_fallback* -** opis: pass:none[domyślny bufor docelowy dla bufora wiadomości, kiedy cel jest prywatny i nie odnaleziono tego prywatnego bufora] -** typ: liczba -** wartości: current, server -** domyślna wartość: `+current+` - -* [[option_irc.look.new_channel_position]] *irc.look.new_channel_position* -** opis: pass:none[wymusza pozycję nowych kanałów na liście buforów (none = domyślna pozycja (powinien być to ostatni bufor), next = obecny bufor + 1, near_server = po ostatnim kanale/pv serwera)] -** typ: liczba -** wartości: none, next, near_server -** domyślna wartość: `+none+` - -* [[option_irc.look.new_pv_position]] *irc.look.new_pv_position* -** opis: pass:none[wymusza pozycję nowych prywatnych wiadomości na liście buforów (none = domyślna pozycja (powinien być to ostatni bufor), next = obecny bufor + 1, near_server = po ostatnim kanale/pv serwera)] -** typ: liczba -** wartości: none, next, near_server -** domyślna wartość: `+none+` - -* [[option_irc.look.nick_completion_smart]] *irc.look.nick_completion_smart* -** opis: pass:none[inteligentne dopełnianie nicków (dopełnia najpierw ostatnimi rozmówcami): speakers = wszyscy rozmówcy (włączając podświetlenia), speakers_highlights = tylko rozmówcy z podświetleniem] -** typ: liczba -** wartości: off, speakers, speakers_highlights -** domyślna wartość: `+speakers+` - -* [[option_irc.look.nick_mode]] *irc.look.nick_mode* -** opis: pass:none[wyświetlaj atrybuty nicku (op, voice, ...) przed nickiem (none = nigdy, prefix = tylko prefiks (domyślnie), action = w wiadomości akcji, both = prefiks + wiadomość akcji)] -** typ: liczba -** wartości: none, prefix, action, both -** domyślna wartość: `+prefix+` - -* [[option_irc.look.nick_mode_empty]] *irc.look.nick_mode_empty* -** opis: pass:none[wyświetl spację jeśli wyświetlanie atrybutów dla nicków jest włączone, ale nick nie ma atrybutu (brak opa, voice, ...)] -** typ: bool -** wartości: on, off -** domyślna wartość: `+off+` - -* [[option_irc.look.nicks_hide_password]] *irc.look.nicks_hide_password* -** opis: pass:none[oddzielona przecinkami lista nicków, dla których hasła będą ukrywane podczas wysyłania wiadomości, na przykład w celu ukrycia hasła w wiadomości wyświetlanej przez "/msg nickserv identify hasło", przykład: "nickserv,nickbot"] -** typ: ciąg -** wartości: dowolny ciąg -** domyślna wartość: `+"nickserv"+` - -* [[option_irc.look.notice_as_pv]] *irc.look.notice_as_pv* -** opis: pass:none[wyświetlaj powiadomienia jako prywatne wiadomości (jeśli auto, używa prywatnego bufora jeśli taki istnieje)] -** typ: liczba -** wartości: auto, never, always -** domyślna wartość: `+auto+` - -* [[option_irc.look.notice_welcome_redirect]] *irc.look.notice_welcome_redirect* -** opis: pass:none[automatyczne przekierowanie powiadomień powitalnych do bufora kanału; takie powiadomienia mają nick jako cel i nazwę kanału na początku wiadomości, na przykład powiadomienia ENTRYMSG wysyłane przez Atheme IRC Services wyglądają następująco: "[#kanał\] Witaj na tym kanale..."] -** typ: bool -** wartości: on, off -** domyślna wartość: `+on+` - -* [[option_irc.look.notice_welcome_tags]] *irc.look.notice_welcome_tags* -** opis: pass:none[oddzielona przecinkami lista tagów użytych w wiadomościach powitalnych przekierowywanych na kanał, na przykład: "notify_private"] -** typ: ciąg -** wartości: dowolny ciąg -** domyślna wartość: `+""+` - -* [[option_irc.look.notify_tags_ison]] *irc.look.notify_tags_ison* -** opis: pass:none[oddzielona przecinkami lista tagów użytych w wiadomościach wyświetlanych przez powiadomienie, kiedy nick wejdzie lub wyjdzie z serwera (rezultat komendy ison lub monitor), na przykład: "notify_message", "notify_private" lub "notify_higlight"] -** typ: ciąg -** wartości: dowolny ciąg -** domyślna wartość: `+"notify_message"+` - -* [[option_irc.look.notify_tags_whois]] *irc.look.notify_tags_whois* -** opis: pass:none[oddzielona przecinkami lista tagów użytych w wiadomościach wyświetlanych przez powiadomienie, kiedy zmienia się status nieobecności nicka (wynik komendy whois), na przykład: "notify_message", "notify_private" or "notify_highlight"] -** typ: ciąg -** wartości: dowolny ciąg -** domyślna wartość: `+"notify_message"+` - -* [[option_irc.look.part_closes_buffer]] *irc.look.part_closes_buffer* -** opis: pass:none[zamyka bufor, kiedy na kanale wykonamy /part] -** typ: bool -** wartości: on, off -** domyślna wartość: `+off+` - -* [[option_irc.look.pv_buffer]] *irc.look.pv_buffer* -** opis: pass:none[połącz bufory prywatne] -** typ: liczba -** wartości: independent, merge_by_server, merge_all -** domyślna wartość: `+independent+` - -* [[option_irc.look.pv_tags]] *irc.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_irc.look.raw_messages]] *irc.look.raw_messages* -** opis: pass:none[ilość nieprzetworzonych wiadomości do zachowania w pamięci, kiedy zamknięty jest bufor nieprzetworzonych danych (wiadomości zostaną wyświetlone po otworzeniu dla nich bufora)] -** typ: liczba -** wartości: 0 .. 65535 -** domyślna wartość: `+256+` - -* [[option_irc.look.server_buffer]] *irc.look.server_buffer* -** opis: pass:none[łączy bufory serwerów; ta opcja nie ma wpływu jeśli układ jest zapisany i nie pasuje do tej opcji (zobacz /help layout)] -** typ: liczba -** wartości: merge_with_core, merge_without_core, independent -** domyślna wartość: `+merge_with_core+` - -* [[option_irc.look.smart_filter]] *irc.look.smart_filter* -** opis: pass:none[filtruj wiadomości wejścia/opuszczenia/wyjścia/nick od nicków nie będących aktywnymi od kilku minut na kanale (musisz stworzyć filtr na tagu "irc_smart_filter", zobacz /help filter)] -** typ: bool -** wartości: on, off -** domyślna wartość: `+on+` - -* [[option_irc.look.smart_filter_account]] *irc.look.smart_filter_account* -** opis: pass:none[włącza mądre filtrowanie dla wiadomości "account"] -** typ: bool -** wartości: on, off -** domyślna wartość: `+on+` - -* [[option_irc.look.smart_filter_chghost]] *irc.look.smart_filter_chghost* -** opis: pass:none[włącza mądre filtrowanie dla wiadomości "chghost"] -** typ: bool -** wartości: on, off -** domyślna wartość: `+on+` - -* [[option_irc.look.smart_filter_delay]] *irc.look.smart_filter_delay* -** opis: pass:none[opóźnienie dla filtrowania wiadomości o wejściu/opuszczeniu/wyjściu (w minutach): jeśli osoba nie odezwała się podczas ostatnich N minut, wiadomość jest filtrowana] -** typ: liczba -** wartości: 1 .. 10080 -** domyślna wartość: `+5+` - -* [[option_irc.look.smart_filter_join]] *irc.look.smart_filter_join* -** opis: pass:none[włącza mądre filtrowanie dla wiadomości "join"] -** typ: bool -** wartości: on, off -** domyślna wartość: `+on+` - -* [[option_irc.look.smart_filter_join_unmask]] *irc.look.smart_filter_join_unmask* -** opis: pass:none[opóźnienie dla odmaskowywania wiadomości o wejściu na kanał odfiltrowanych przez tag "irc_smart_filter" (w minutach): jeśli ktoś wszedł na kanał maksymalnie N minut temu i powiedział coś na kanale (wiadomość, powiadomienie lub aktualizacja tematu), jego wejście zostaje odmaskowane, podobnie jak zmiany nicków po jego wejściu (0 = wyłączone: nigdy nie odmaskowuj)] -** typ: liczba -** wartości: 0 .. 10080 -** domyślna wartość: `+30+` - -* [[option_irc.look.smart_filter_mode]] *irc.look.smart_filter_mode* -** opis: pass:none[włącz inteligentny filtr dla wiadomości "mode": "*" filtruje wszystkie tryby, "+" filtruje wszystkie tryby w prefiksach serwera (na przykład "ovh"), "xyz" filtruje tylko tryby x/y/z, "-xyz" filtruje wszystkie tryby poza x/y/z; przykład: "ovh": filtruje tryby o/v/h, "-bkl" filtruje wszystkie tryby poza b/k/l] -** typ: ciąg -** wartości: dowolny ciąg -** domyślna wartość: `+"+"+` - -* [[option_irc.look.smart_filter_nick]] *irc.look.smart_filter_nick* -** opis: pass:none[włącza mądre filtrowanie dla wiadomości "nick" (zmiana nicka)] -** typ: bool -** wartości: on, off -** domyślna wartość: `+on+` - -* [[option_irc.look.smart_filter_quit]] *irc.look.smart_filter_quit* -** opis: pass:none[włącza inteligentne filtrowanie dla wiadomości "part" oraz "quit"] -** typ: bool -** wartości: on, off -** domyślna wartość: `+on+` - -* [[option_irc.look.smart_filter_setname]] *irc.look.smart_filter_setname* -** opis: pass:none[włącza mądre filtrowanie dla wiadomości "setname"] -** typ: bool -** wartości: on, off -** domyślna wartość: `+on+` - -* [[option_irc.look.temporary_servers]] *irc.look.temporary_servers* -** opis: pass:none[włącza tworzenie tymczasowych serwerów za pomocą komendy /connect] -** typ: bool -** wartości: on, off -** domyślna wartość: `+off+` - -* [[option_irc.look.topic_strip_colors]] *irc.look.topic_strip_colors* -** opis: pass:none[usuń kolory w tematach (używane przy wyświetlaniu tytułu bufora)] -** typ: bool -** wartości: on, off -** domyślna wartość: `+off+` - -* [[option_irc.look.typing_status_nicks]] *irc.look.typing_status_nicks* -** opis: pass:none[wyświetlaj nicki osób, które coś piszą w elemencie paska "typing" (opcja typing.look.enabled_nicks musi zostać włączona i opcja "message-tags" musi być wspierana przez serwer)] -** typ: bool -** wartości: on, off -** domyślna wartość: `+off+` - -* [[option_irc.look.typing_status_self]] *irc.look.typing_status_self* -** opis: pass:none[wyślij status pisania do kanałów tak, że inni użytkownicy będą mogli zobaczyć, kiedy piszesz wiadomość (opcja typing.look.enabled_self musi zostać włączona i opcja "message-tags" musi być wspierana przez serwer)] -** typ: bool -** wartości: on, off -** domyślna wartość: `+off+` - -* [[option_irc.network.autoreconnect_delay_growing]] *irc.network.autoreconnect_delay_growing* -** opis: pass:none[rosnący współczynnik opóźnienia ponownego połączenia z serwerem (1 = stała wartość, 2 = opóźnienie*2 dla każdej próby, etc.)] -** typ: liczba -** wartości: 1 .. 100 -** domyślna wartość: `+2+` - -* [[option_irc.network.autoreconnect_delay_max]] *irc.network.autoreconnect_delay_max* -** opis: pass:none[maksymalne opóźnienie do ponownego połączenia z serwerem (w sekundach, 0 = brak maksimum)] -** typ: liczba -** wartości: 0 .. 604800 -** domyślna wartość: `+600+` - -* [[option_irc.network.ban_mask_default]] *irc.network.ban_mask_default* -** opis: pass:none[domyślna maska dla bana dla komend /ban, /unban i /kickban; zmienne $nick, $user, $ident i $host są zastępowane odpowiednimi wartościami (pobranymi z "nick!user@host"); $ident jest taki sam jak $user, jeśli $user nie zaczyna się od "~", w przeciwnym wypadku jest ustawiany na "*"; domyślna maska używana jest tylko, kiedy WeeChat zna nazwę hosta dla nicka] -** typ: ciąg -** wartości: dowolny ciąg -** domyślna wartość: `+"*!$ident@$host"+` - -* [[option_irc.network.colors_receive]] *irc.network.colors_receive* -** opis: pass:none[kiedy wyłączone (off) kody kolorów są ignorowane w przychodzących wiadomościach] -** typ: bool -** wartości: on, off -** domyślna wartość: `+on+` - -* [[option_irc.network.colors_send]] *irc.network.colors_send* -** opis: pass:none[zezwala użytkownikowi wysyłać kolory za pomocą specjalnych kodów (ctrl-c + kod i opcjonalny kolor: b=pogrubiony, cxx=kolor, cxx,yy=kolor+tło, i=kursywa, o=wyłącz kolor/atrybuty, u=podkreślenie, r=rewers)] -** typ: bool -** wartości: on, off -** domyślna wartość: `+on+` - -* [[option_irc.network.lag_check]] *irc.network.lag_check* -** opis: pass:none[przerwa między dwoma sprawdzeniami opóźnienia (w sekundach, 0 = nigdy nie sprawdzaj)] -** typ: liczba -** wartości: 0 .. 604800 -** domyślna wartość: `+60+` - -* [[option_irc.network.lag_max]] *irc.network.lag_max* -** opis: pass:none[maksymalne opóźnienie (w sekundach): jeśli ta wartość zostanie osiągnięta WeeChat założy, że odpowiedź od serwera (pong) nie zostanie odebrana i przestanie liczyć opóźnienie (0 = nigdy nie przestawaj)] -** typ: liczba -** wartości: 0 .. 604800 -** domyślna wartość: `+1800+` - -* [[option_irc.network.lag_min_show]] *irc.network.lag_min_show* -** opis: pass:none[minimalne pokazywane opóźnienie (w milisekundach)] -** typ: liczba -** wartości: 0 .. 86400000 -** domyślna wartość: `+500+` - -* [[option_irc.network.lag_reconnect]] *irc.network.lag_reconnect* -** opis: pass:none[łączy ponownie, jeśli serwer posiada opóźnienie większe lub równe tej wartości (w sekundach, 0 = nigdy nie łącz ponownie); wartość musi być mniejsza lub równa irc.network.lag_max] -** typ: liczba -** wartości: 0 .. 604800 -** domyślna wartość: `+300+` - -* [[option_irc.network.lag_refresh_interval]] *irc.network.lag_refresh_interval* -** opis: pass:none[przerwa między dwoma odświeżeniami wskaźnika lagu, kiedy się on zwiększa (w sekundach)] -** typ: liczba -** wartości: 1 .. 3600 -** domyślna wartość: `+1+` - -* [[option_irc.network.notify_check_ison]] *irc.network.notify_check_ison* -** opis: pass:none[przerwa pomiędzy dwoma sprawdzeniami powiadomień komendą IRC "ison" (w minutach)] -** typ: liczba -** wartości: 1 .. 10080 -** domyślna wartość: `+1+` - -* [[option_irc.network.notify_check_whois]] *irc.network.notify_check_whois* -** opis: pass:none[przerwa pomiędzy dwoma sprawdzeniami powiadomień komendą IRC "whois" (w minutach)] -** typ: liczba -** wartości: 1 .. 10080 -** domyślna wartość: `+5+` - -* [[option_irc.network.sasl_fail_unavailable]] *irc.network.sasl_fail_unavailable* -** opis: pass:none[powoduje niepowodzenie autentykacji SASL, kiedy została ona zarządana ale nie jest dostępna po stronie serwera; kiedy ta opcja jest włączona, ma ona wpływ tylko jeśli opcja "sasl_fail" jest ustawiona na "reconnect" lub "disconnect" dla serwera] -** typ: bool -** wartości: on, off -** domyślna wartość: `+on+` - -* [[option_irc.network.send_unknown_commands]] *irc.network.send_unknown_commands* -** opis: pass:none[wysyłaj nieznane komendy do serwera] -** typ: bool -** wartości: on, off -** domyślna wartość: `+off+` - -* [[option_irc.network.whois_double_nick]] *irc.network.whois_double_nick* -** opis: pass:none[podwaja nick w komendzie /whois (jeśli podano tylko jeden nick), w celu otrzymania w odpowiedzi czasu bezczynności; na przykład: "/whois nick" wyśle "whois nick nick"] -** typ: bool -** wartości: on, off -** domyślna wartość: `+off+` - -* [[option_irc.server_default.addresses]] *irc.server_default.addresses* -** opis: pass:none[lista nazw hostów/port lub IP/port dla serwera (oddzielone przecinkiem) (uwaga: zawartość jest przetwarzana, zobacz /help eval; opcje serwera ${irc_server.xxx} i ${server} są zamieniane na nazwę serwera)] -** typ: ciąg -** wartości: dowolny ciąg -** domyślna wartość: `+""+` - -* [[option_irc.server_default.anti_flood_prio_high]] *irc.server_default.anti_flood_prio_high* -** opis: pass:none[anty-flood dla kolejki o wysokim priorytecie: liczba sekund pomiędzy dwoma wiadomościami użytkownika, bądź komendami wysłanymi do serwera IRC (0 = brak anty-flooda)] -** typ: liczba -** wartości: 0 .. 60 -** domyślna wartość: `+2+` - -* [[option_irc.server_default.anti_flood_prio_low]] *irc.server_default.anti_flood_prio_low* -** opis: pass:none[anty-flood dla kolejek o niskim priorytecie: liczba sekund pomiędzy dwoma wiadomościami wysłanymi do serwera IRC (wiadomości jak automatyczne odpowiedzi na CTCP) (0 = brak anty-flooda)] -** typ: liczba -** wartości: 0 .. 60 -** domyślna wartość: `+2+` - -* [[option_irc.server_default.autoconnect]] *irc.server_default.autoconnect* -** opis: pass:none[automatycznie połącz się z serwerem przy uruchamianiu WeeChat] -** typ: bool -** wartości: on, off -** domyślna wartość: `+off+` - -* [[option_irc.server_default.autojoin]] *irc.server_default.autojoin* -** opis: pass:none[oddzielona przecinkami lista kanałów do wejścia po połączeniu z serwerem (po wykonaniu komendy + opóźnienie jeśli są ustawione); kanały wymagające hasła muszą znajdować się na początku listy, wszystkie hasła muszą zostać podane po kanałach (oddzielone spacją) (przykład: "#kanał1,#kanał2,#kanał3 hasło1,hasło2", gdzie #kanał1 i #kanał2 wymagają odpowiednio hasło1 i hasło2) (zawartość jest przetwarzana, zobacz /help eval; opcje serwera mogą zostać użytego w postaci ${irc_server.xxx} oraz ${server} jest zastępowany nazwą serwera)] -** typ: ciąg -** wartości: dowolny ciąg -** domyślna wartość: `+""+` - -* [[option_irc.server_default.autojoin_dynamic]] *irc.server_default.autojoin_dynamic* -** opis: pass:none[ustawia automatycznie opcję "autojoin" zgodnie z listą kanałów na które ręcznie wszedłeś i z których sam wyszedłeś za pomocą komend /join i /part] -** typ: bool -** wartości: on, off -** domyślna wartość: `+off+` - -* [[option_irc.server_default.autoreconnect]] *irc.server_default.autoreconnect* -** opis: pass:none[automatycznie połącz się z serwerem po rozłączeniu] -** typ: bool -** wartości: on, off -** domyślna wartość: `+on+` - -* [[option_irc.server_default.autoreconnect_delay]] *irc.server_default.autoreconnect_delay* -** opis: pass:none[opóźnienie (w sekundach) przed próbą ponownego połączenia się z serwerem] -** typ: liczba -** wartości: 1 .. 65535 -** domyślna wartość: `+10+` - -* [[option_irc.server_default.autorejoin]] *irc.server_default.autorejoin* -** opis: pass:none[automatycznie wejdź na kanały po wykopaniu; możesz zdefiniować lokalną zmienną bufora do nadpisania tej wartości (nazwa zmiennej: "autorejoin", wartości: "on" lub "off")] -** typ: bool -** wartości: on, off -** domyślna wartość: `+off+` - -* [[option_irc.server_default.autorejoin_delay]] *irc.server_default.autorejoin_delay* -** opis: pass:none[opóźnienie (w sekundach) przed wejściem na kanał (po wykopaniu)] -** typ: liczba -** wartości: 0 .. 86400 -** domyślna wartość: `+30+` - -* [[option_irc.server_default.away_check]] *irc.server_default.away_check* -** opis: pass:none[przerwa pomiędzy dwoma sprawdzeniami stanu nieobecności (w minutach, 0 = nigdy nie sprawdzaj)] -** typ: liczba -** wartości: 0 .. 10080 -** domyślna wartość: `+0+` - -* [[option_irc.server_default.away_check_max_nicks]] *irc.server_default.away_check_max_nicks* -** opis: pass:none[nie sprawdzaj nieobecności osób na kanałach z dużą ilością użytkowników (0 = nieograniczone)] -** typ: liczba -** wartości: 0 .. 1000000 -** domyślna wartość: `+25+` - -* [[option_irc.server_default.capabilities]] *irc.server_default.capabilities* -** opis: pass:none[oddzielona przecinkami lista opcji klienta do włączenia dla serwera, jeśli są dostępne (zobacz /help cap żeby poznać listę opcji wspieranych przez WeeChat); "*" włącza domyślnie wszystkie opcje (wspierane zarówno przez serwer i WeeChat); wildcard "*" jest dozwolony; opcje zaczynające się od "!" są pomijane (przykład: "*,!account-*,!extended-join")] -** typ: ciąg -** wartości: dowolny ciąg -** domyślna wartość: `+"*"+` - -* [[option_irc.server_default.charset_message]] *irc.server_default.charset_message* -** opis: pass:none[część wiadomości IRC (otrzymanej lub wysłanej), która jest kodowana na ustawione kodowanie; message = cała wiadomość IRC (domyślne), channel = zaczynając od nazwy kanału (jeśli znaleziona, w przeciwnym wypadku text), text = zaczynając od samego tekstu (powinieneś spróbować tej wartości, jeśli masz problem z kodowaniem nazwy kanału)] -** typ: liczba -** wartości: message, channel, text -** domyślna wartość: `+message+` - -* [[option_irc.server_default.command]] *irc.server_default.command* -** opis: pass:none[komenda(y) do wykonania po połączeniu z serwerem przed automatycznym wejściem na kanały (wiele komend powinno zostać oddzielone ";", użyj "\;" dla średnika, specjalne zmienne $nick, $channel oraz $server są zastępowane ich wartościami) (uwaga: zawartość jest przetwarzana, zobacz /help eval; opcje serwera mogą zostać użytego w postaci ${irc_server.xxx} oraz ${server} jest zastępowany nazwą serwera)] -** typ: ciąg -** wartości: dowolny ciąg -** domyślna wartość: `+""+` - -* [[option_irc.server_default.command_delay]] *irc.server_default.command_delay* -** opis: pass:none[odstęp (w sekundach) po wykonaniu komendy i przed automatycznym wejściem na kanały (na przykład: daj trochę czasu na uwierzytelnienie przed wejściem na kanały)] -** typ: liczba -** wartości: 0 .. 3600 -** domyślna wartość: `+0+` - -* [[option_irc.server_default.connection_timeout]] *irc.server_default.connection_timeout* -** opis: pass:none[czas oczekiwania (w sekundach) pomiędzy połączeniem TCP z serwerem a otrzymaniem wiadomości 001, jeśli czas zostanie przekroczony przed odebraniem wiadomości 001, WeeChat rozłączy się z serwerem] -** typ: liczba -** wartości: 1 .. 3600 -** domyślna wartość: `+60+` - -* [[option_irc.server_default.default_chantypes]] *irc.server_default.default_chantypes* -** opis: pass:none[prefiks typu kanału jeśli serwer nie wyśle jego w wiadomości 005 (domyślnie „#&”)] -** typ: ciąg -** wartości: dowolny ciąg -** domyślna wartość: `+"#&"+` - -* [[option_irc.server_default.ipv6]] *irc.server_default.ipv6* -** opis: pass:none[używaj protokołu IPv6 do komunikacji z serwerem (próbuj IPv6 później wróć do IPv4); jeśli wyłączone używane jest tylko IPv4] -** typ: bool -** wartości: on, off -** domyślna wartość: `+on+` - -* [[option_irc.server_default.local_hostname]] *irc.server_default.local_hostname* -** opis: pass:none[własna lokalna nazwa hosta/adres IP dla serwera (opcjonalne, jeśli puste użyta zostanie lokalna nazwa hosta)] -** typ: ciąg -** wartości: dowolny ciąg -** domyślna wartość: `+""+` - -* [[option_irc.server_default.msg_kick]] *irc.server_default.msg_kick* -** opis: pass:none[domyślna wiadomość dla wykopania z kanału używana przez komendy "/kick" i "/kickban" (uwaga: zawartość jest przetwarzana zobacz /help eval; specjalne zmienne jak ${nick} (własny nick), ${target} (docelowy nick), ${channel} i ${server} są zamieniane na odpowiednie wartości)] -** typ: ciąg -** wartości: dowolny ciąg -** domyślna wartość: `+""+` - -* [[option_irc.server_default.msg_part]] *irc.server_default.msg_part* -** opis: pass:none[domyślna wiadomość przy wyjściu z kanału (uwaga: zawartość jest przetwarzana zobacz /help eval; specjalne zmienne jak ${nick}, ${channel} i ${server} są zamieniane na odpowiednie wartości; "%v" jest zamieniane na wersję WeeChat jeśli w ciągu nie ma ${...})] -** typ: ciąg -** wartości: dowolny ciąg -** domyślna wartość: `+"WeeChat ${info:version}"+` - -* [[option_irc.server_default.msg_quit]] *irc.server_default.msg_quit* -** opis: pass:none[domyślna wiadomość przy odłączeniu od serwera (uwaga: zawartość jest przetwarzana zobacz /help eval; specjalne zmienne jak ${nick}, ${channel} i ${server} są zamieniane na odpowiednie wartości; "%v" jest zamieniane na wersję WeeChat jeśli w ciągu nie ma ${...})] -** typ: ciąg -** wartości: dowolny ciąg -** domyślna wartość: `+"WeeChat ${info:version}"+` - -* [[option_irc.server_default.nicks]] *irc.server_default.nicks* -** opis: pass:none[nicki do użycia na serwerze (oddzielone przecinkiem) (uwaga: zawartość jest przetwarzana, zobacz /help eval; opcje serwera mogą zostać użytego w postaci ${irc_server.xxx} oraz ${server} jest zastępowany nazwą serwera)] -** typ: ciąg -** wartości: dowolny ciąg -** domyślna wartość: `+""+` - -* [[option_irc.server_default.nicks_alternate]] *irc.server_default.nicks_alternate* -** opis: pass:none[alternatywny nick, kiedy nick jest już zajęty na serwerze: dodaje kilka "_", aż nick będzie miał długość 9, następnie zamienia ostatni znak (lub ostatnie dwa znaki) na numer od 1 do 99, do czasu aż zostanie znaleziony nick nie użyty na swerwerze] -** typ: bool -** wartości: on, off -** domyślna wartość: `+on+` - -* [[option_irc.server_default.notify]] *irc.server_default.notify* -** opis: pass:none[lista powiadomień dla tego serwera (nie powinieneś zmieniać tej opcji tylko użyć w zamian komendy /notify)] -** typ: ciąg -** wartości: dowolny ciąg -** domyślna wartość: `+""+` - -* [[option_irc.server_default.password]] *irc.server_default.password* -** opis: pass:none[hasło dla serwera (uwaga: zawartość jest przetwarzana zobacz /help eval; opcje serwera mogą zostać użytego w postaci ${irc_server.xxx} oraz ${server} jest zastępowany nazwą serwera)] -** typ: ciąg -** wartości: dowolny ciąg -** domyślna wartość: `+""+` - -* [[option_irc.server_default.proxy]] *irc.server_default.proxy* -** opis: pass:none[nazwa pośrednika używanego dla tego serwera (opcjonalne, pośrednik musi być zdefiniowany za pomocą komendy /proxy)] -** typ: ciąg -** wartości: dowolny ciąg -** domyślna wartość: `+""+` - -* [[option_irc.server_default.realname]] *irc.server_default.realname* -** opis: pass:none[real name używany na serwerze (uwaga: zawartość jest przetwarzana zobacz /help eval; opcje serwera mogą zostać użytego w postaci ${irc_server.xxx} oraz ${server} jest zastępowany nazwą serwera)] -** typ: ciąg -** wartości: dowolny ciąg -** domyślna wartość: `+""+` - -* [[option_irc.server_default.sasl_fail]] *irc.server_default.sasl_fail* -** opis: pass:none[akcja do wykonania jeśli uwierzytelnianie SASL się nie powiedzie: "continue" dla zignorowania problemu, "reconnect" ponownie połącz się z serwerem, "disconnect" odłącz od serwera (zobacz też opcję irc.network.sasl_fail_unavailable)] -** typ: liczba -** wartości: continue, reconnect, disconnect -** domyślna wartość: `+reconnect+` - -* [[option_irc.server_default.sasl_key]] *irc.server_default.sasl_key* -** opis: pass:none[plik z kluczem prywatnym ECC dla mechanizmu "ecdsa-nist256p-challenge" (ś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_irc.server_default.sasl_mechanism]] *irc.server_default.sasl_mechanism* -** opis: pass:none[mechanizm autentykacji SASL: "plain" dla hasła w czystym tekście, "scram-sha-1" dla uwierzytelnienia SCRAM za pomocą algorytmu SHA-1, "scram-sha-256" dla uwierzytelnienia SCRAM za pomocą algorytmu SHA-256, "scram-sha-512" dla uwierzytelnienia SCRAM za pomocą algorytmu SHA-512, "ecdsa-nist256p-challenge" uwierzytelnianie na podstawie pary kluczy, "external" dla uwierzytelnienia za pomocą certyfikatu SSL po stronie klienta] -** typ: liczba -** wartości: plain, scram-sha-1, scram-sha-256, scram-sha-512, ecdsa-nist256p-challenge, external -** domyślna wartość: `+plain+` - -* [[option_irc.server_default.sasl_password]] *irc.server_default.sasl_password* -** opis: pass:none[hasło dla uwierzytelniania SASL; ta opcja nie jest używana dla mechanizmów "ecdsa-nist256p-challenge" oraz "external" (uwaga: zawartość jest przetwarzana, zobacz /help eval; opcje serwera mogą zostać użytego w postaci ${irc_server.xxx} oraz ${server} jest zastępowany nazwą serwera)] -** typ: ciąg -** wartości: dowolny ciąg -** domyślna wartość: `+""+` - -* [[option_irc.server_default.sasl_timeout]] *irc.server_default.sasl_timeout* -** opis: pass:none[czas oczekiwania (w sekundach) przed zaprzestaniem uwierzytelniania SASL] -** typ: liczba -** wartości: 1 .. 3600 -** domyślna wartość: `+15+` - -* [[option_irc.server_default.sasl_username]] *irc.server_default.sasl_username* -** opis: pass:none[nazwa użytkownika dla uwierzytelniania SASL; ta opcja nie jest używana dla mechanizmu "external" (uwaga: zawartość jest przetwarzana, zobacz /help eval; opcje serwera mogą zostać użytego w postaci ${irc_server.xxx} oraz ${server} jest zastępowany nazwą serwera)] -** typ: ciąg -** wartości: dowolny ciąg -** domyślna wartość: `+""+` - -* [[option_irc.server_default.split_msg_max_length]] *irc.server_default.split_msg_max_length* -** opis: pass:none[podziel wychodzące wiadomości IRC aby mieściły się w podanej ilości znaków; domyślna wartość to 512, jest to bezpieczna i zalecana wartość; wartość 0 wyłącza podział (nie zalecane, chyba ze wiesz co robisz); dozwolone wartości to 0 lub dowolna liczba pomiędzy 128 a 4096; ta opcja powinna być zmieniana tylko dla niestandardowych serwerów IRC, na przykład dla bramek jak bitlbee] -** typ: liczba -** wartości: 0 .. 4096 -** domyślna wartość: `+512+` - -* [[option_irc.server_default.ssl]] *irc.server_default.ssl* -** opis: pass:none[użyj protokołu SSL do komunikacji z serwerem] -** typ: bool -** wartości: on, off -** domyślna wartość: `+off+` - -* [[option_irc.server_default.ssl_cert]] *irc.server_default.ssl_cert* -** opis: pass:none[Plik certyfikatu SSL używany do automatycznego uwierzytelnienia nicka (ś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_irc.server_default.ssl_dhkey_size]] *irc.server_default.ssl_dhkey_size* -** opis: pass:none[rozmiar klucza używanego podczas połączenia Wymiany Kluczy Diffie-Hellmana] -** typ: liczba -** wartości: 0 .. 2147483647 -** domyślna wartość: `+2048+` - -* [[option_irc.server_default.ssl_fingerprint]] *irc.server_default.ssl_fingerprint* -** opis: pass:none[skrót certyfikatu, który jest zaufany i akceptowany dla serwera; tylko cyfry heksadecymalne są dozwolone (0-9, a-f): 128 znaki dla SHA-512, 64 znaki dla SHA-256, 40 znaków dla SHA-1 (mało bezpieczne, nie zalecane); wiele skrótów można oddzielić przecinkami; jeśli ta opcja jest ustawiona, certyfikat NIE jest dalej sprawdzany (opcja "ssl_verify") (uwaga: zawartość jest przetwarzana, zobacz /help eval; opcje serwera mogą zostać użytego w postaci ${irc_server.xxx} oraz ${server} jest zastępowany nazwą serwera)] -** typ: ciąg -** wartości: dowolny ciąg -** domyślna wartość: `+""+` - -* [[option_irc.server_default.ssl_password]] *irc.server_default.ssl_password* -** opis: pass:none[hasło do klucza prywatnego certyfikatu SSL; tylko dla gnutls w wersji >= 3.1.0 (uwaga: zawartość jest przetwarzana zobacz /help eval; opcje serwera są przetwarzane w postaci ${irc_server.xxx}, ${server} jest zastępowany nazwą serwera)] -** typ: ciąg -** wartości: dowolny ciąg -** domyślna wartość: `+""+` - -* [[option_irc.server_default.ssl_priorities]] *irc.server_default.ssl_priorities* -** opis: pass:none[ciąg z priorytetami dla gnutls (składnię można znaleźć w dokumentacji gnutls dla funkcji gnutls_priority_init, często używane ciągi to: "PERFORMANCE", "NORMAL", "SECURE128", "SECURE256", "EXPORT", "NONE")] -** typ: ciąg -** wartości: dowolny ciąg -** domyślna wartość: `+"NORMAL:-VERS-SSL3.0"+` - -* [[option_irc.server_default.ssl_verify]] *irc.server_default.ssl_verify* -** opis: pass:none[sprawdź czy połączenie ssl jest w pełni zaufane] -** typ: bool -** wartości: on, off -** domyślna wartość: `+on+` - -* [[option_irc.server_default.usermode]] *irc.server_default.usermode* -** opis: pass:none[tryb(y) użytkowniak do ustawienia po połączeniu z serwerem przed wykonaniem komend oraz automatycznym wejściem na kanały; przykłady "+R" (w celu ustawienia trybu "R"), "+R-i" (w celu utawienia trbu "R" i zdjęcia trybu "i"); zobacz /help mode dla pełnej lity składni (uwaga: zawartość jest przetwarzana, zobacz /help eval; opcje serwera mogą zostać użytego w postaci ${irc_server.xxx} oraz ${server} jest zastępowany nazwą serwera)] -** typ: ciąg -** wartości: dowolny ciąg -** domyślna wartość: `+""+` - -* [[option_irc.server_default.username]] *irc.server_default.username* -** opis: pass:none[nazwa użytkownika używana na serwerze (uwaga: zawartość jest przetwarzana zobacz /help eval; opcje serwera mogą zostać użytego w postaci ${irc_server.xxx} oraz ${server} jest zastępowany nazwą serwera)] -** typ: ciąg -** wartości: dowolny ciąg -** domyślna wartość: `+""+` -// end::irc_options[] - -// tag::relay_options[] -* [[option_relay.color.client]] *relay.color.client* -** opis: pass:none[kolor tekstu dla opisu klienta] -** 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_relay.color.status_active]] *relay.color.status_active* -** opis: pass:none[kolor statusu "connected"] -** 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_relay.color.status_auth_failed]] *relay.color.status_auth_failed* -** opis: pass:none[kolor statusu "authentication 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ść: `+lightmagenta+` - -* [[option_relay.color.status_connecting]] *relay.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ść: `+white+` - -* [[option_relay.color.status_disconnected]] *relay.color.status_disconnected* -** opis: pass:none[kolor statusu "disconnected"] -** 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_relay.color.status_waiting_auth]] *relay.color.status_waiting_auth* -** opis: pass:none[kolor statusu "waiting authentication"] -** 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_relay.color.text]] *relay.color.text* -** opis: pass:none[kolor tekstu w buforze pośrednika] -** 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_relay.color.text_bg]] *relay.color.text_bg* -** opis: pass:none[kolor tła w buforze pośrednika] -** 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_relay.color.text_selected]] *relay.color.text_selected* -** opis: pass:none[kolor tekstu zaznaczonej linii w buforze pośrednika] -** 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_relay.irc.backlog_max_minutes]] *relay.irc.backlog_max_minutes* -** opis: pass:none[maksymalna ilość minut w historii każdego bufora dla kanału IRC (0 = bez ograniczeń, przykłady: 1440 = dzień, 10080 = tydzień, 43200 = miesiąc, 525600 = rok)] -** typ: liczba -** wartości: 0 .. 2147483647 -** domyślna wartość: `+0+` - -* [[option_relay.irc.backlog_max_number]] *relay.irc.backlog_max_number* -** opis: pass:none[maksymalna ilość linii w historii każdego bufora dla kanału IRC (0 = bez ograniczeń)] -** typ: liczba -** wartości: 0 .. 2147483647 -** domyślna wartość: `+1024+` - -* [[option_relay.irc.backlog_since_last_disconnect]] *relay.irc.backlog_since_last_disconnect* -** opis: pass:none[wyświetlaj backlog zaczynając od ostatniego rozłączenia klienta] -** typ: bool -** wartości: on, off -** domyślna wartość: `+on+` - -* [[option_relay.irc.backlog_since_last_message]] *relay.irc.backlog_since_last_message* -** opis: pass:none[wyświetlaj backlog zaczynając od twojej ostatniej wiadomości] -** typ: bool -** wartości: on, off -** domyślna wartość: `+off+` - -* [[option_relay.irc.backlog_tags]] *relay.irc.backlog_tags* -** opis: pass:none[oddzielona przecinkami lista tagów dla wiadomości, które są wyświetlane w backlogu dla kanałów IRC (wspierane tagi: "irc_join", "irc_part", "irc_quit", "irc_nick", "irc_privmsg"), "*" = dla wszystkich wspieranych tagów] -** typ: ciąg -** wartości: dowolny ciąg -** domyślna wartość: `+"irc_privmsg"+` - -* [[option_relay.irc.backlog_time_format]] *relay.irc.backlog_time_format* -** opis: pass:none[format czasu wiadomości w backlogu (zobacz man strftime dla formatu) (nie używane jeśli dla serwera ustawiono "server-time" przez klienta, ponieważ czas jest wysyłany jako tag irc); pusty ciąg = wyłącza znacznik czasu w backlogu] -** typ: ciąg -** wartości: dowolny ciąg -** domyślna wartość: `+"[%H:%M] "+` - -* [[option_relay.look.auto_open_buffer]] *relay.look.auto_open_buffer* -** opis: pass:none[automatycznie otwiera bufor kiedy podłącza się nowy klient] -** typ: bool -** wartości: on, off -** domyślna wartość: `+on+` - -* [[option_relay.look.raw_messages]] *relay.look.raw_messages* -** opis: pass:none[ilość nieprzetworzonych wiadomości do zachowania w pamięci, kiedy zamknięty jest bufor nieprzetworzonych danych (wiadomości zostaną wyświetlone po otworzeniu dla nich bufora)] -** typ: liczba -** wartości: 0 .. 65535 -** domyślna wartość: `+256+` - -* [[option_relay.network.allow_empty_password]] *relay.network.allow_empty_password* -** opis: pass:none[zezwala na puste haslo dla pośrednika (zaleca się włączać tylko dla testów albo dla sieci lokalnej)] -** typ: bool -** wartości: on, off -** domyślna wartość: `+off+` - -* [[option_relay.network.allowed_ips]] *relay.network.allowed_ips* -** opis: pass:none[Rozszerzone wyrażenia regularne POSIX z adresami IP dozwolonymi dla pośrednika (nie wrażliwe na wielkość znaków, umieszczenie "(?-i)" na początku sprawi, że wielość znaków będzie miała znaczenie), przykład: "^(123\.45\.67\.89|192\.160\..*)$"] -** typ: ciąg -** wartości: dowolny ciąg -** domyślna wartość: `+""+` - -* [[option_relay.network.auth_timeout]] *relay.network.auth_timeout* -** opis: pass:none[limit czasu (w sekundach) na uwierzytelnienie klienta: połączenie jest zamykane jeśli klient się nie uwierzytelni w tym czasie oraz status klienta jest ustawiany na „authentication failed” (0 = brak limitu)] -** typ: liczba -** wartości: 0 .. 2147483647 -** domyślna wartość: `+60+` - -* [[option_relay.network.bind_address]] *relay.network.bind_address* -** opis: pass:none[adres do przypisania (jeśli puste, połączenie jest możliwe na wszystkich interfejsach, użyj "127.0.0.1", aby pozwolić tylko na połączenia z tej maszyny)] -** typ: ciąg -** wartości: dowolny ciąg -** domyślna wartość: `+""+` - -* [[option_relay.network.clients_purge_delay]] *relay.network.clients_purge_delay* -** opis: pass:none[opóźnienie, z jakim zostaną skasowane rozłączone klienty (w minutach, 0 = natychmiast, -1 nigdy)] -** typ: liczba -** wartości: -1 .. 43200 -** domyślna wartość: `+0+` - -* [[option_relay.network.compression]] *relay.network.compression* -** opis: pass:none[kompresja wiadomości wysyłanych do klientów protokołu "weechat": 0 = wyłączona, 1 = niska kompresja / szybka ... 100 = najlepsza kompresja / wolna; 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: 0 .. 100 -** domyślna wartość: `+20+` - -* [[option_relay.network.ipv6]] *relay.network.ipv6* -** opis: pass:none[nasłuchuj domyślnie na gnieździe IPv6 (w dodatku do domyślnego IPv4); protokoły IPv4 i IPv6 mogą być wymuszane (pojedynczo lub razem) w nazwie protokołu (zobacz /help relay)] -** typ: bool -** wartości: on, off -** domyślna wartość: `+on+` - -* [[option_relay.network.max_clients]] *relay.network.max_clients* -** opis: pass:none[maksymalna ilość klientów łączących się na port (0 = brak limitu)] -** typ: liczba -** wartości: 0 .. 2147483647 -** domyślna wartość: `+5+` - -* [[option_relay.network.nonce_size]] *relay.network.nonce_size* -** opis: pass:none[rozmiar noncji (w bajtach), generowane podczas połączenia klienta; klient musi użyć tej noncji w połączeniu z noncją klienta i hasłem podczas hashowania hasła w komendzie „init” protokołu weechat] -** typ: liczba -** wartości: 8 .. 128 -** domyślna wartość: `+16+` - -* [[option_relay.network.password]] *relay.network.password* -** opis: pass:none[hasło wymagane od klientów do połączenia z tym pośrednikiem (pusta wartość oznacza brak hasła, zobacz opcję relay.network.allow_empty_password) (uwaga: zawartość jest przetwarzana, zobacz /help eval)] -** typ: ciąg -** wartości: dowolny ciąg -** domyślna wartość: `+""+` - -* [[option_relay.network.password_hash_algo]] *relay.network.password_hash_algo* -** opis: pass:none[oddzielona przecinkami lista algorytmów hashujących używanych dla uwierzytelnienia hasłem w protokole weechat, dostępne wartości: "plain" (hasło w postaci jawnej, nie zahashowane), "sha256", "sha512", "pbkdf2+sha256", "pbkdf2+sha512", "*" oznacza wszystkie algorytmy, nazwa zaczynająca się od "!" oznacza wartość negatywną w celu uniknięcia użycia algorytmu, znak "*" może zostać użyty w nazwie (przykłady: "*", "pbkdf2*", "*,!plain")] -** typ: ciąg -** wartości: dowolny ciąg -** domyślna wartość: `+"*"+` - -* [[option_relay.network.password_hash_iterations]] *relay.network.password_hash_iterations* -** opis: pass:none[ilość iteracji zapytań klienta protokołu weechat w przypadku hashowania haseł algorytmem PBKDF2 podczas uwierzytelnienia; im więcej iteracji tym lepiej w kwestii bezpieczeństwa, jednak zwiększa to czas przetwarzania; ta liczba nie powinna być zbyt wysoka jeśli masz słabe CPU] -** typ: liczba -** wartości: 1 .. 1000000 -** domyślna wartość: `+100000+` - -* [[option_relay.network.ssl_cert_key]] *relay.network.ssl_cert_key* -** opis: pass:none[plik z certyfikatem SSL i kluczem prywatnym (dla obsługi klientów poprzez SSL) (ś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ść: `+"${weechat_config_dir}/ssl/relay.pem"+` - -* [[option_relay.network.ssl_priorities]] *relay.network.ssl_priorities* -** opis: pass:none[ciąg z priorytetami dla gnutls (składnię można znaleźć w dokumentacji gnutls dla funkcji gnutls_priority_init, często używane ciągi to: "PERFORMANCE", "NORMAL", "SECURE128", "SECURE256", "EXPORT", "NONE")] -** typ: ciąg -** wartości: dowolny ciąg -** domyślna wartość: `+"NORMAL:-VERS-SSL3.0"+` - -* [[option_relay.network.totp_secret]] *relay.network.totp_secret* -** opis: pass:none[sekret do generowania Time-based One-Time Password (TOTP), zakodowany w base32 (tylko litery i cyfry od 2 do 7); używany jako drugi składnik uwierzytelniania przez protokół weechat, dodatkowo do hasła, które nie może być puste (pusta wartość oznacza brak TOTP) (uwaga: zawartość jest przetwarzana, zobacz /help eval)] -** typ: ciąg -** wartości: dowolny ciąg -** domyślna wartość: `+""+` - -* [[option_relay.network.totp_window]] *relay.network.totp_window* -** opis: pass:none[liczba Time-based One-Time Passwords do zaakceptowania przez i po obecnym: 0 = akceptuj tylko obecne hasło, 1 = akceptuj jedno wcześniejsze obecne i następne hasło, 2 = akceptuj dwa wcześniejsze obecne i dwa następne hasła, ...; wysoka liczba obniża poziom bezpieczeństwa (0 lub 1 to zalecane wartości)] -** typ: liczba -** wartości: 0 .. 256 -** domyślna wartość: `+0+` - -* [[option_relay.network.websocket_allowed_origins]] *relay.network.websocket_allowed_origins* -** opis: pass:none[Rozszerzone wyrażenia regularne POSIX ze źródłami dozwolonymi dla gniazd webowych (nie wrażliwe na wielkość znaków, umieszczenie "(?-i)" na początku sprawi, że wielość znaków będzie miała znaczenie), przykład: "^http://(www\.)?przykład\.(com|org)"] -** typ: ciąg -** wartości: dowolny ciąg -** domyślna wartość: `+""+` - -* [[option_relay.weechat.commands]] *relay.weechat.commands* -** opis: pass:none[oddzielona przecinkami lista poleceń dozwolonych/zakazanych kiedy dane (tekst lub polecenia) zostaną odebrane od klienta; "*" oznacza dowolną komendę, nazwa zaczynająca się od "!" oznacza nie dozwoloną komendę, znak "*" dozwolony jest w nazwach; ta opcja powinna być ustawiona jeśli pośrednik nie jest bezpieczny (ktoś może go użyć do wykonywania poleceń); na przykład "*,!exec,!quit" zezwala na wszystkie polecenia poza /exec i /quit] -** typ: ciąg -** wartości: dowolny ciąg -** 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] -** typ: bool -** wartości: on, off -** domyślna wartość: `+off+` - -* [[option_ruby.look.eval_keep_context]] *ruby.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::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")] -** 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_script.color.status_held]] *script.color.status_held* -** opis: pass:none[kolor dla statusu "wstrzymany" ("H")] -** 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_script.color.status_installed]] *script.color.status_installed* -** opis: pass:none[kolor dla statusu "zainstalowany" ("i")] -** 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_script.color.status_obsolete]] *script.color.status_obsolete* -** opis: pass:none[kolor dla statusu "przestarzały" ("N")] -** 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_script.color.status_popular]] *script.color.status_popular* -** opis: pass:none[kolor dla statusu "popularny" ("*")] -** 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_script.color.status_running]] *script.color.status_running* -** opis: pass:none[kolor dla statusu "uruchomiony" ("r")] -** 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_script.color.status_unknown]] *script.color.status_unknown* -** opis: pass:none[kolor dla statusu "nieznany" ("?")] -** 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_script.color.text]] *script.color.text* -** opis: pass:none[kolor tekstu w buforze skryptó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_script.color.text_bg]] *script.color.text_bg* -** opis: pass:none[kolor tła w buforze skryptó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_script.color.text_bg_selected]] *script.color.text_bg_selected* -** opis: pass:none[kolor tła dla zaznaczonej linii w buforze skryptó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+` - -* [[option_script.color.text_date]] *script.color.text_date* -** opis: pass:none[kolor dat w buforze skryptó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_script.color.text_date_selected]] *script.color.text_date_selected* -** opis: pass:none[kolor daty w zaznaczonej linii w buforze skryptó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_script.color.text_delimiters]] *script.color.text_delimiters* -** opis: pass:none[kolor ograniczników w buforze skryptó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_script.color.text_description]] *script.color.text_description* -** opis: pass:none[kolor opisu w buforze skryptó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_script.color.text_description_selected]] *script.color.text_description_selected* -** opis: pass:none[kolor opisu w zaznaczonej linii w buforze skryptó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_script.color.text_extension]] *script.color.text_extension* -** opis: pass:none[kolor rozszerzenia w buforze skryptó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_script.color.text_extension_selected]] *script.color.text_extension_selected* -** opis: pass:none[kolor rozszerzenia w zaznaczonej linii w buforze skryptó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_script.color.text_name]] *script.color.text_name* -** opis: pass:none[kolor nazwy skryptu w buforze skryptó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_script.color.text_name_selected]] *script.color.text_name_selected* -** opis: pass:none[kolor nazwy skryptu w zaznaczonej linii w buforze skryptó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+` - -* [[option_script.color.text_selected]] *script.color.text_selected* -** opis: pass:none[kolor tekstu w zaznaczonej linii w buforze skryptó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_script.color.text_tags]] *script.color.text_tags* -** opis: pass:none[kolor tagów w buforze skryptó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_script.color.text_tags_selected]] *script.color.text_tags_selected* -** opis: pass:none[kolor tagów w zaznaczonej linii w buforze skryptó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ść: `+yellow+` - -* [[option_script.color.text_version]] *script.color.text_version* -** opis: pass:none[kolor wersji w buforze skryptó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ść: `+magenta+` - -* [[option_script.color.text_version_loaded]] *script.color.text_version_loaded* -** opis: pass:none[kolor wersji załadowanego skryptu w buforze skryptó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_script.color.text_version_loaded_selected]] *script.color.text_version_loaded_selected* -** opis: pass:none[kolor załadowanej wersji skryptu w zaznaczonej linii w buforze skryptó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_script.color.text_version_selected]] *script.color.text_version_selected* -** opis: pass:none[kolor wersji w zaznaczonej linii w buforze skryptó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_script.look.columns]] *script.look.columns* -** opis: pass:none[format kolumn wyświetlanych w buforze skryptów: następujące identyfikatory kolumn są zastępowane przez ich wartość: %a=autor, %d=opis, %D=data dodania, %e=rozszerzenie, %l=język, %L=licencja, %n=nazwa z rozszerzeniem, %N=nazwa, %r=wymagania, %s=status, %t=tagi, %u=data aktualizacji, %v=wersja, %V=załadowana wersja, %w=min_weechat, %W=max_weechat)] -** typ: ciąg -** wartości: dowolny ciąg -** domyślna wartość: `+"%s %n %V %v %u | %d | %t"+` - -* [[option_script.look.diff_color]] *script.look.diff_color* -** opis: pass:none[koloruj wyjście diffa] -** typ: bool -** wartości: on, off -** domyślna wartość: `+on+` - -* [[option_script.look.diff_command]] *script.look.diff_command* -** opis: pass:none[komenda używana do pokazania różnic pomiędzy załadowanym skryptem i nową wersją w repozytorium ("auto" = automatyczna detekcja polecenie diff (git albo diff), pusta wartość = wyłączenie diffa, inny ciąg = nazwa komendy, na przykład "diff")] -** typ: ciąg -** wartości: dowolny ciąg -** domyślna wartość: `+"auto"+` - -* [[option_script.look.display_source]] *script.look.display_source* -** opis: pass:none[wyświetl kod źródłowy skryptu w buforze ze szczegółami o skrypcie (skrypt jest pobierany do pliku tymczasowego, kiedy pokazywane są szczegółowe informacje na jego temat)] -** typ: bool -** wartości: on, off -** domyślna wartość: `+on+` - -* [[option_script.look.quiet_actions]] *script.look.quiet_actions* -** opis: pass:none[ciche akcje na buforze skryptów: nie wyświetlaj wiadomości w głównym buforze, kiedy skrypty są instalowane/usuwane/ładowane/wyładowywane (wyświetlane są tylko błędy)] -** typ: bool -** wartości: on, off -** domyślna wartość: `+on+` - -* [[option_script.look.sort]] *script.look.sort* -** opis: pass:none[domyślne sortowania dla skryptów: oddzielona przecinkami lista identyfikatorów: a=autor, A=automatycznie ładowany, d=data dodania, e=rozszerzenie, i=zainstalowany, l=język, n=nazwa, o=przestarzały, p=popularność, r=uruchomiony, u=data aktualizacji; znak "-" może zostać użyty przed identyfikatorem w celu odwrócenia kolejności; przykład: "i,u": najpierw zainstalowane skrypty, sortowane po dacie aktualizacji] -** typ: ciąg -** wartości: dowolny ciąg -** domyślna wartość: `+"i,p,n"+` - -* [[option_script.look.translate_description]] *script.look.translate_description* -** opis: pass:none[przetłumaczony opis skryptu (jeśli tłumaczenie jest dostępne w twoim języku, w przeciwnym wypadku zostanie użyta angielska wersja)] -** typ: bool -** wartości: on, off -** domyślna wartość: `+on+` - -* [[option_script.look.use_keys]] *script.look.use_keys* -** opis: pass:none[użyj skrótu alt+X w buforze skryptów, aby wykonać akcję na skrypcie (alt+i = zainstaluj, alt+r = usuń, ...); jeśli wyłączone dozwolone jest tylko wprowadzanie: i, r, ...] -** typ: bool -** wartości: on, off -** domyślna wartość: `+on+` - -* [[option_script.scripts.autoload]] *script.scripts.autoload* -** opis: pass:none[automatycznie ładuj zainstalowane skrypty (tworzy link w katalogu "autoload" do skryptu w katalogu nadrzędnym)] -** typ: bool -** wartości: on, off -** domyślna wartość: `+on+` - -* [[option_script.scripts.cache_expire]] *script.scripts.cache_expire* -** opis: pass:none[lokalnie zapisany czas wygaśnięcia, w minutach (-1 = nigdy nie wygasa, 0 = zawsze wygasa)] -** typ: liczba -** wartości: -1 .. 525600 -** domyślna wartość: `+1440+` - -* [[option_script.scripts.download_enabled]] *script.scripts.download_enabled* -** opis: pass:none[włącza pobieranie plików z repozytorium skryptów podczas użycia komendy /script (lista skryptów i same skrypty); lista skryptów pobierana jest z adresu URL podanego w opcji script.scripts.url; WeeChat czasami ponownie pobierze listę skryptów podczas użycia komendy /script, nawet w przypadku nie instalowania żadnego skryptu] -** typ: bool -** wartości: on, off -** domyślna wartość: `+off+` - -* [[option_script.scripts.download_timeout]] *script.scripts.download_timeout* -** opis: pass:none[czas oczekiwania (w sekundach) na pobranie skryptu i listy skryptów] -** typ: liczba -** wartości: 1 .. 3600 -** domyślna wartość: `+30+` - -* [[option_script.scripts.hold]] *script.scripts.hold* -** opis: pass:none[skrypty do "wstrzymania": oddzielona przecinkami lista skryptów, które nigdy nie zostaną zaktualizowane i nie mogą być usunięte, na przykład: "go.py,urlserver.py"] -** typ: ciąg -** wartości: dowolny ciąg -** domyślna wartość: `+""+` - -* [[option_script.scripts.path]] *script.scripts.path* -** opis: pass:none[katalog z lokalnym cache dla skryptó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_cache_dir}/script"+` - -* [[option_script.scripts.url]] *script.scripts.url* -** opis: pass:none[Adres URL pliku z listą skryptów] -** typ: ciąg -** wartości: dowolny ciąg -** 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+` - -* [[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_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ść: `+default+` - -* [[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_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_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ść: `+brown+` - -* [[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ść: `+yellow+` - -* [[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ść: `+white+` - -* [[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ść: `+white+` - -* [[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ść: `+default+` - -* [[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ść: `+white+` - -* [[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ść: `+darkgray+` - -* [[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_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ść: `+cyan+` - -* [[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ść: `+lightcyan+` - -* [[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ść: `+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)] -** 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)] -** 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+` - -* [[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ść: `+red+` - -* [[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ść: `+brown+` - -* [[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_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ść: `+default+` - -* [[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ść: `+white+` - -* [[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ść: `+default+` - -* [[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ść: `+white+` - -* [[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ść: `+default+` - -* [[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ść: `+brown+` - -* [[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ść: `+yellow+` - -* [[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ść: `+white+` - -* [[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ść: `+default+` - -* [[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ść: `+brown+` - -* [[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ść: `+yellow+` - -* [[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ść: `+white+` - -* [[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ść: `+default+` - -* [[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ść: `+white+` - -* [[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ść: `+cyan+` - -* [[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ść: `+lightcyan+` - -* [[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ść: `+darkgray+` - -* [[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ść: `+default+` - -* [[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_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ść: `+default+` - -* [[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_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ść: `+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] -** 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] -** 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.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_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ść: `+white+` - -* [[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ść: `+cyan+` - -* [[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ść: `+lightcyan+` - -* [[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_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ść: `+lightgreen+` - -* [[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ść: `+white+` - -* [[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ść: `+green+` - -* [[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ść: `+lightgreen+` - -* [[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ść: `+default+` - -* [[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ść: `+white+` - -* [[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ść: `+cyan+` - -* [[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ść: `+brown+` - -* [[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ść: `+yellow+` - -* [[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ść: `+lightcyan+` - -* [[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ść: `+magenta+` - -* [[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ść: `+lightmagenta+` - -* [[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ść: `+"# ${description2}"+` - -* [[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ść: `+"/set ${name} ${quoted_value}"+` - -* [[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ść: `+"/unset ${name}"+` - -* [[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ść: `+""+` - -* [[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ść: `+"${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* -** 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ść: `+"*"+` - -* [[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ść: `+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] -** typ: ciąg -** wartości: dowolny ciąg -** domyślna wartość: `+"${count} >= 1"+` - -* [[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_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 .. 2 -** domyślna wartość: `+1+` - -* [[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ść: `+"*"+` - -* [[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 .. 100 -** domyślna wartość: `+10+` - -* [[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_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_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ść: `+" "+` - -* [[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_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_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ść: `+off+` -// end::fset_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 <алијас> [<алијас>...] +/alias list [] + add [[;...]] + addcompletion [[;...]] + del [...] + rename - list: исписује алијасе (без аргумента, приказује се ова листа) - add: додавање алијаса -addcompletion: додавање алијаса са кориснички дефинисаним довршавањем - del: брисање алијаса - completion: довршавање за алијас: довршавање се подразумевано врши са target командом - напомена: за довршавање постојеће команде можете да употребите %%команда - алијас: име алијаса - команда: име команде са аргументима (више команди може да се раздвоји тачка запетама) + 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) -Напомена: у команди се замењују специјалне променљиве: - $n: аргумент ’n’ (између 1 и 9) - $-m: аргументи од 1 до ’m’ - $n-: аргументи од ’n’ до последњег - $n-m: аргументи од ’n’ до ’m’ - $*: сви аргументи - $~: последњи аргумент - $var: где је „var” локална променљива или бафер (погледајте /buffer listvar) - примери: $nick, $channel, $server, $plugin, $name +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,6 +3,2264 @@ // DO NOT EDIT BY HAND! // +// 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},"+` + +* [[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+` + +* [[option_buflist.look.auto_scroll]] *buflist.look.auto_scroll* +** опис: pass:none[аутоматски скролује листу бафера тако да се текући бафер увек приказује (ово функционише само са траком на левој/десној позицији са „vertical” испуном); ова вредност је проценат линија које се приказује испред текућег бафера када се скролује (-1 = искључује скроловање); на пример, 50 значи да је текући бафер након скроловања у средини траке, 0 значи на врху траке, а 100 на дну] +** тип: целобројна +** вредности: -1 .. 100 +** подразумевана вредност: `+50+` + +* [[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_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+` + +* [[option_buflist.look.nick_prefix_empty]] *buflist.look.nick_prefix_empty* +** опис: pass:none[када је укључен префикс надимка, у случају да за бафер није дефинисан префикс надимка, приказује се размак] +** тип: логичка +** вредности: 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”; будите пажљиви, употреба више од једне ставке траке успорава приказ листе бафера] +** тип: целобројна +** вредности: 1 .. 3 +** подразумевана вредност: `+1+` +// end::buflist_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[] + +// 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 +** подразумевана вредност: `+lightred+` + +* [[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 +** подразумевана вредност: `+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[] + +// 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 додатака)] +** тип: стринг +** вредности: било који стринг +** подразумевана вредност: `+"${weechat_runtime_dir}/weechat_fifo_${info:pid}"+` +// end::fifo_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+` + +* [[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_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 +** подразумевана вредност: `+default+` + +* [[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_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_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 +** подразумевана вредност: `+brown+` + +* [[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 +** подразумевана вредност: `+yellow+` + +* [[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 +** подразумевана вредност: `+white+` + +* [[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 +** подразумевана вредност: `+white+` + +* [[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 +** подразумевана вредност: `+default+` + +* [[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 +** подразумевана вредност: `+white+` + +* [[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 +** подразумевана вредност: `+darkgray+` + +* [[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_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 +** подразумевана вредност: `+cyan+` + +* [[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 +** подразумевана вредност: `+lightcyan+` + +* [[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 +** подразумевана вредност: `+default+` + +* [[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_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 +** подразумевана вредност: `+blue+` + +* [[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 +** подразумевана вредност: `+red+` + +* [[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 +** подразумевана вредност: `+brown+` + +* [[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_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 +** подразумевана вредност: `+default+` + +* [[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 +** подразумевана вредност: `+white+` + +* [[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 +** подразумевана вредност: `+default+` + +* [[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 +** подразумевана вредност: `+white+` + +* [[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 +** подразумевана вредност: `+default+` + +* [[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 +** подразумевана вредност: `+brown+` + +* [[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 +** подразумевана вредност: `+yellow+` + +* [[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 +** подразумевана вредност: `+white+` + +* [[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 +** подразумевана вредност: `+default+` + +* [[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 +** подразумевана вредност: `+brown+` + +* [[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 +** подразумевана вредност: `+yellow+` + +* [[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 +** подразумевана вредност: `+white+` + +* [[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 +** подразумевана вредност: `+default+` + +* [[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 +** подразумевана вредност: `+white+` + +* [[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 +** подразумевана вредност: `+cyan+` + +* [[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 +** подразумевана вредност: `+lightcyan+` + +* [[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 +** подразумевана вредност: `+darkgray+` + +* [[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 +** подразумевана вредност: `+default+` + +* [[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_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 +** подразумевана вредност: `+default+` + +* [[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_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 +** подразумевана вредност: `+brown+` + +* [[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 +** подразумевана вредност: `+yellow+` + +* [[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 +** подразумевана вредност: `+white+` + +* [[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_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 +** подразумевана вредност: `+white+` + +* [[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 +** подразумевана вредност: `+cyan+` + +* [[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 +** подразумевана вредност: `+lightcyan+` + +* [[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_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 +** подразумевана вредност: `+lightgreen+` + +* [[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 +** подразумевана вредност: `+white+` + +* [[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 +** подразумевана вредност: `+green+` + +* [[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 +** подразумевана вредност: `+lightgreen+` + +* [[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 +** подразумевана вредност: `+default+` + +* [[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 +** подразумевана вредност: `+white+` + +* [[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 +** подразумевана вредност: `+cyan+` + +* [[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 +** подразумевана вредност: `+brown+` + +* [[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 +** подразумевана вредност: `+yellow+` + +* [[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 +** подразумевана вредност: `+lightcyan+` + +* [[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 +** подразумевана вредност: `+magenta+` + +* [[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 +** подразумевана вредност: `+lightmagenta+` + +* [[option_fset.format.export_help]] *fset.format.export_help* +** опис: pass:none[формат линије помоћи која се записује пре сваке опције која се извози у фајл (напомена: садржај се израчунава, погледајте /help fset)] +** тип: стринг +** вредности: било који стринг +** подразумевана вредност: `+"# ${description2}"+` + +* [[option_fset.format.export_option]] *fset.format.export_option* +** опис: pass:none[формат сваке опције која се извози у фајл (напомена: садржај се израчунава, погледајте /help fset)] +** тип: стринг +** вредности: било који стринг +** подразумевана вредност: `+"/set ${name} ${quoted_value}"+` + +* [[option_fset.format.export_option_null]] *fset.format.export_option_null* +** опис: pass:none[формат сваке опција која има „null” вредност а извози се у фајл (напомена: садржај се израчунава, погледајте /help fset)] +** тип: стринг +** вредности: било који стринг +** подразумевана вредност: `+"/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_fset.format.option2]] *fset.format.option2* +** опис: pass:none[други формат сваке линије, користи се када је вредност опције fset.look.format_number постављена на 2 (напомена: садржај се израчунава, погледајте /help fset); празан стринг значи да се користи подразумевани формат („${marked} ${name} ${type} ${value2}”), који је без израчунавања, дакле и много бржи; формати могу да се пребацују тастером ctrl+X] +** тип: стринг +** вредности: било који стринг +** подразумевана вредност: `+"${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_fset.look.auto_unmark]] *fset.look.auto_unmark* +** опис: pass:none[аутоматско уклањање маркирања са свих опција након акције над маркираним опцијама или након освежавања] +** тип: логичка +** вредности: 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 командом] +** тип: стринг +** вредности: било који стринг +** подразумевана вредност: `+"${count} >= 1"+` + +* [[option_fset.look.export_help_default]] *fset.look.export_help_default* +** опис: pass:none[подразумевано се уз сваку извезену опцију записује и помоћ (ово може да се премости аргументима „-help” и „-nohelp” за команду /fset -export)] +** тип: логичка +** вредности: on, off +** подразумевана вредност: `+on+` + +* [[option_fset.look.format_number]] *fset.look.format_number* +** опис: pass:none[број формата који се користи за приказ опција; ово се динамички мења тастером ctrl-X у fset баферу] +** тип: целобројна +** вредности: 1 .. 2 +** подразумевана вредност: `+1+` + +* [[option_fset.look.marked_string]] *fset.look.marked_string* +** опис: pass:none[стринг који се приказује када се опција маркира (како ви се извршила акција над више опција одједном)] +** тип: стринг +** вредности: било који стринг +** подразумевана вредност: `+"*"+` + +* [[option_fset.look.scroll_horizontal]] *fset.look.scroll_horizontal* +** опис: pass:none[скроловање у лево/десно у fset баферу (проценат ширине)] +** тип: целобројна +** вредности: 1 .. 100 +** подразумевана вредност: `+10+` + +* [[option_fset.look.show_plugins_desc]] *fset.look.show_plugins_desc* +** опис: pass:none[приказивање описа опција додатака (plugins.desc.*)] +** тип: логичка +** вредности: on, off +** подразумевана вредност: `+off+` + +* [[option_fset.look.sort]] *fset.look.sort* +** опис: pass:none[листа поља за сортирање опција раздвојених запетама (погледајте /help fset за листу поља); карактер „-” може да се користи испред поља чиме се обрће редослед, карактер „~” може да се употреби за поређење које не прави разлику у величини слова; пример: „-~name” за поређење које не прави разлику у величини слова и обрнуто сортирање по имену опције] +** тип: стринг +** вредности: било који стринг +** подразумевана вредност: `+"~name"+` + +* [[option_fset.look.unmarked_string]] *fset.look.unmarked_string* +** опис: pass:none[стринг који се приказује када опција није маркирана] +** тип: стринг +** вредности: било који стринг +** подразумевана вредност: `+" "+` + +* [[option_fset.look.use_color_value]] *fset.look.use_color_value* +** опис: pass:none[опције у вези боја се приказују обојено] +** тип: логичка +** вредности: on, off +** подразумевана вредност: `+off+` + +* [[option_fset.look.use_keys]] *fset.look.use_keys* +** опис: pass:none[употреба тастера alt+X у fset баферу за извршавање акција над опцијама; ако је искључено, дозвољен је само унос] +** тип: логичка +** вредности: on, off +** подразумевана вредност: `+on+` + +* [[option_fset.look.use_mute]] *fset.look.use_mute* +** опис: pass:none[за постављање опција се користи команда /mute] +** тип: логичка +** вредности: on, off +** подразумевана вредност: `+off+` +// end::fset_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::irc_options[] +* [[option_irc.color.input_nick]] *irc.color.input_nick* +** опис: pass:none[боја за надимак у траци уноса] +** тип: боја +** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_irc.color.item_channel_modes]] *irc.color.item_channel_modes* +** опис: pass:none[боја за режиме канала, у близини имена канала] +** тип: боја +** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are 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_irc.color.item_lag_counting]] *irc.color.item_lag_counting* +** опис: pass:none[боја за индикатор кашњења, када се броји (понг се не прима од сервера, кашњење се увећава)] +** тип: боја +** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are 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_irc.color.item_lag_finished]] *irc.color.item_lag_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 +** подразумевана вредност: `+yellow+` + +* [[option_irc.color.item_nick_modes]] *irc.color.item_nick_modes* +** опис: pass:none[боја за режиме надимка у ставки траке „input_prompt”] +** тип: боја +** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are 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_irc.color.item_tls_version_deprecated]] *irc.color.item_tls_version_deprecated* +** опис: pass:none[боја за застареле TLS верзије у ставки траке „tls_version”] +** тип: боја +** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_irc.color.item_tls_version_insecure]] *irc.color.item_tls_version_insecure* +** опис: pass:none[боја за небезбедне TLS верзије у ставки траке „tls_version”] +** тип: боја +** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_irc.color.item_tls_version_ok]] *irc.color.item_tls_version_ok* +** опис: pass:none[боја за више подржане TLS верзије у ставки траке „tls_version”] +** тип: боја +** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_irc.color.message_account]] *irc.color.message_account* +** опис: pass:none[боја за текст у account порукама] +** тип: боја +** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_irc.color.message_chghost]] *irc.color.message_chghost* +** опис: pass:none[боја за текст у „chghost” порукама] +** тип: боја +** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_irc.color.message_join]] *irc.color.message_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 +** подразумевана вредност: `+green+` + +* [[option_irc.color.message_kick]] *irc.color.message_kick* +** опис: pass:none[боја за текст у kick/kill порукама] +** тип: боја +** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_irc.color.message_quit]] *irc.color.message_quit* +** опис: pass:none[боја за текст у part/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 +** подразумевана вредност: `+red+` + +* [[option_irc.color.message_setname]] *irc.color.message_setname* +** опис: pass:none[боја за текст у „setname” порукама] +** тип: боја +** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_irc.color.mirc_remap]] *irc.color.mirc_remap* +** опис: pass:none[ремапирање mirc боја у порукама користећи хеш табелу: кључеви су „fg,bg” као цели бројеви између -1 (није наведена) и 15, вредности су WeeChat имена или бројеви боја (формат је: „1,-1:боја1;2,7:боја2”), пример: „1,-1:darkgray;1,2:white,blue” да се црна ремапира на „darkgray” и црна на плавој позадини у „white,blue”; подразумеване WeeChat боје за IRC кодове: 0=white, 1=black, 2=blue, 3=green, 4=lightred, 5=red, 6=magenta, 7=brown, 8=yellow, 9=lightgreen, 10=cyan, 11=lightcyan, 12=lightblue, 13=lightmagenta, 14=darkgray, 15=gray] +** тип: стринг +** вредности: било који стринг +** подразумевана вредност: `+"1,-1:darkgray"+` + +* [[option_irc.color.nick_prefixes]] *irc.color.nick_prefixes* +** опис: pass:none[боја за префиксе надимака употребом карактера режима (o=оп, h=полуоп, v=глас, ...), формат је: „o:боја1;h:боја2;v:боја3” (ако се режим не пронађе, програм WeeChat ће покушати са наредним режимима који су примењени са сервера („PREFIX”); за дефинисање подразумеване боје која се користи у случају да се у листи не пронађе ниједан режим може да се употреби специјални режим „*”)] +** тип: стринг +** вредности: било који стринг +** подразумевана вредност: `+"y:lightred;q:lightred;a:lightcyan;o:lightgreen;h:lightmagenta;v:yellow;*:lightblue"+` + +* [[option_irc.color.notice]] *irc.color.notice* +** опис: pass:none[боја за текст „Обавештење” у обавештењима] +** тип: боја +** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_irc.color.reason_kick]] *irc.color.reason_kick* +** опис: pass:none[боја за разлог у kick/kill порукама] +** тип: боја +** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are 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_irc.color.reason_quit]] *irc.color.reason_quit* +** опис: pass:none[боја за разлог у part/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+` + +* [[option_irc.color.topic_current]] *irc.color.topic_current* +** опис: pass:none[боја за тему текућег канала (када се приступа каналу или користи /topic)] +** тип: боја +** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are 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_irc.color.topic_new]] *irc.color.topic_new* +** опис: pass:none[боја за тему новог канала (када се измени тема)] +** тип: боја +** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_irc.color.topic_old]] *irc.color.topic_old* +** опис: pass:none[боја за стару тему канала (када се тема измени)] +** тип: боја +** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are 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_irc.look.buffer_open_before_autojoin]] *irc.look.buffer_open_before_autojoin* +** опис: pass:none[бафер канала се отвара пре него што се од сервера прими JOIN онда када је за сервер постављено аутоматско приступање каналима (опцијом сервера „autojoin”); ово је корисно да се приликом покретања увек отворе канали са истим бројем бафера] +** тип: логичка +** вредности: on, off +** подразумевана вредност: `+on+` + +* [[option_irc.look.buffer_open_before_join]] *irc.look.buffer_open_before_join* +** опис: pass:none[бафер канала се отвара пре него што се од сервера прими JOIN онда када се ручно приступа каналима на серверу (командом /join)] +** тип: логичка +** вредности: on, off +** подразумевана вредност: `+off+` + +* [[option_irc.look.buffer_switch_autojoin]] *irc.look.buffer_switch_autojoin* +** опис: pass:none[аутоматски прелазак на бафер канала када му се аутоматски приступи (опцијом сервера „autojoin”)] +** тип: логичка +** вредности: on, off +** подразумевана вредност: `+on+` + +* [[option_irc.look.buffer_switch_join]] *irc.look.buffer_switch_join* +** опис: pass:none[аутоматски прелазак на бафер канала онда када му се ручно приступа (командом /join)] +** тип: логичка +** вредности: on, off +** подразумевана вредност: `+on+` + +* [[option_irc.look.color_nicks_in_names]] *irc.look.color_nicks_in_names* +** опис: pass:none[у излазу команде /names се користе обојени надимци (или листа надимака која се приказује приликом приступања каналу)] +** тип: логичка +** вредности: on, off +** подразумевана вредност: `+off+` + +* [[option_irc.look.color_nicks_in_nicklist]] *irc.look.color_nicks_in_nicklist* +** опис: pass:none[у листи надимака се користе обојени надимци] +** тип: логичка +** вредности: on, off +** подразумевана вредност: `+off+` + +* [[option_irc.look.color_nicks_in_server_messages]] *irc.look.color_nicks_in_server_messages* +** опис: pass:none[у порукама са сервера се користе обојени надимци] +** тип: логичка +** вредности: on, off +** подразумевана вредност: `+on+` + +* [[option_irc.look.color_pv_nick_like_channel]] *irc.look.color_pv_nick_like_channel* +** опис: pass:none[иста боја надимка се користи и за канал и за приватни разговор] +** тип: логичка +** вредности: on, off +** подразумевана вредност: `+on+` + +* [[option_irc.look.ctcp_time_format]] *irc.look.ctcp_time_format* +** опис: pass:none[формат времена који се користи у одговору на CTCP поруку TIME (погледајте man strftime за спецификаторе датума/времена)] +** тип: стринг +** вредности: било који стринг +** подразумевана вредност: `+"%a, %d %b %Y %T %z"+` + +* [[option_irc.look.display_account_message]] *irc.look.display_account_message* +** опис: pass:none[приказ ACCOUNT порука које се примају када је укључена могућност account-notify] +** тип: логичка +** вредности: on, off +** подразумевана вредност: `+on+` + +* [[option_irc.look.display_away]] *irc.look.display_away* +** опис: pass:none[приказ поруке када се (де)маркира као одсутан (off: не приказује/шаље се ништа, local: приказује се локално, channel: слање акције каналу)] +** тип: целобројна +** вредности: off, local, channel +** подразумевана вредност: `+local+` + +* [[option_irc.look.display_ctcp_blocked]] *irc.look.display_ctcp_blocked* +** опис: pass:none[приказ CTCP поруке чак и ако је блокирана] +** тип: логичка +** вредности: on, off +** подразумевана вредност: `+on+` + +* [[option_irc.look.display_ctcp_reply]] *irc.look.display_ctcp_reply* +** опис: pass:none[приказ CTCP одговора који шаље програм WeeChat] +** тип: логичка +** вредности: on, off +** подразумевана вредност: `+on+` + +* [[option_irc.look.display_ctcp_unknown]] *irc.look.display_ctcp_unknown* +** опис: pass:none[приказ CTCP поруке чак и ако је непознат CTCP] +** тип: логичка +** вредности: on, off +** подразумевана вредност: `+on+` + +* [[option_irc.look.display_extended_join]] *irc.look.display_extended_join* +** опис: pass:none[приказ додатних информација у JOIN порукама: име налога и реално име (мора бити укључена могућност extended-join)] +** тип: логичка +** вредности: on, off +** подразумевана вредност: `+on+` + +* [[option_irc.look.display_host_join]] *irc.look.display_host_join* +** опис: pass:none[приказ хоста у порукама приступа] +** тип: логичка +** вредности: on, off +** подразумевана вредност: `+on+` + +* [[option_irc.look.display_host_join_local]] *irc.look.display_host_join_local* +** опис: pass:none[приказ хоста у порукама приступа из локалног клијента] +** тип: логичка +** вредности: on, off +** подразумевана вредност: `+on+` + +* [[option_irc.look.display_host_quit]] *irc.look.display_host_quit* +** опис: pass:none[приказ хоста у порукама напуштања/изласка] +** тип: логичка +** вредности: on, off +** подразумевана вредност: `+on+` + +* [[option_irc.look.display_join_message]] *irc.look.display_join_message* +** опис: pass:none[листа порука раздвојених запетама које треба да се прикажу након приступа каналу: 324 = режими канала, 329 = датум креирања канала, 332 = тема, 333 = надимак/име за тему, 353 = имена на каналу, 366 = укупан број имена] +** тип: стринг +** вредности: било који стринг +** подразумевана вредност: `+"329,332,333,366"+` + +* [[option_irc.look.display_old_topic]] *irc.look.display_old_topic* +** опис: pass:none[приказ старе теме када се измени тема] +** тип: логичка +** вредности: on, off +** подразумевана вредност: `+on+` + +* [[option_irc.look.display_pv_away_once]] *irc.look.display_pv_away_once* +** опис: pass:none[порука одсутности саговорника се приказује само једном у приватном разговору] +** тип: логичка +** вредности: on, off +** подразумевана вредност: `+on+` + +* [[option_irc.look.display_pv_back]] *irc.look.display_pv_back* +** опис: pass:none[приказ поруке када се саговорник врати у приватни разговор (након изласка са сервера)] +** тип: логичка +** вредности: on, off +** подразумевана вредност: `+on+` + +* [[option_irc.look.display_pv_nick_change]] *irc.look.display_pv_nick_change* +** опис: pass:none[приказ промене надимка у приватном разговору] +** тип: логичка +** вредности: on, off +** подразумевана вредност: `+on+` + +* [[option_irc.look.display_pv_warning_address]] *irc.look.display_pv_warning_address* +** опис: pass:none[приказ упозорења у приватном баферу ако се промени адреса удаљеног надимка; ова опција је подразумевано искључена јер сервери као што је bitlbee чине да се ово упозорење прикаже и онда када се то не очекује (адреса удаљеног надимка се током пријављивања мења више пута)] +** тип: логичка +** вредности: on, off +** подразумевана вредност: `+off+` + +* [[option_irc.look.highlight_channel]] *irc.look.highlight_channel* +** опис: pass:none[листа речи раздвојених запетама које треба да се истакну у баферима канала (не прави се разлика у величини слова, употребите „(?-i)” на почетку речи ако желите да се поштује разлика између малих и великих слова; специјалне променљиве $nick, $channel и $server се замењују својим вредностима), ове речи се додају у особину бафера „highlight_words” само онда када се бафер креира (не утичу на већ постојеће бафере), празан стринг искључује подразумевано истицање надимака, примери: „$nick”, „(?-i)$nick”] +** тип: стринг +** вредности: било који стринг +** подразумевана вредност: `+"$nick"+` + +* [[option_irc.look.highlight_pv]] *irc.look.highlight_pv* +** опис: pass:none[листа речи раздвојених запетама које треба да се истакну у приватним баферима (не прави се разлика у величини слова, употребите „(?-i)” на почетку речи ако желите да се поштује разлика између малих и великих слова; специјалне променљиве $nick, $channel и $server се замењују својим вредностима), ове речи се додају у особину бафера „highlight_words” само онда када се бафер креира (не утичу на већ постојеће бафере), празан стринг искључује подразумевано истицање надимака, примери: „$nick”, „(?-i)$nick”] +** тип: стринг +** вредности: било који стринг +** подразумевана вредност: `+"$nick"+` + +* [[option_irc.look.highlight_server]] *irc.look.highlight_server* +** опис: pass:none[листа речи раздвојених запетама које треба да се истакну у серверским баферима (не прави се разлика у величини слова, употребите „(?-i)” на почетку речи ако желите да се поштује разлика између малих и великих слова; специјалне променљиве $nick, $channel и $server се замењују својим вредностима), ове речи се додају у особину бафера „highlight_words” само онда када се бафер креира (не утичу на већ постојеће бафере), празан стринг искључује подразумевано истицање надимака, примери: „$nick”, „(?-i)$nick”] +** тип: стринг +** вредности: било који стринг +** подразумевана вредност: `+"$nick"+` + +* [[option_irc.look.highlight_tags_restrict]] *irc.look.highlight_tags_restrict* +** опис: pass:none[ограничава истицање на ове ознаке у irc баферима (како би се истицале само корисничке поруке, а не и поруке од сервера); ознаке морају да се раздвоје запетама и „+” може да се користи за логичко „и” између ознака; и ознакама је дозвољен џокер „*”; празна вредност дозвољава истицање било које ознаке] +** тип: стринг +** вредности: било који стринг +** подразумевана вредност: `+"irc_privmsg,irc_notice"+` + +* [[option_irc.look.item_channel_modes_hide_args]] *irc.look.item_channel_modes_hide_args* +** опис: pass:none[hide channel modes arguments if at least one of these modes is in channel modes („*” to always hide all arguments, empty value to never hide arguments); example: „kf” to hide arguments if „k” or „f” are in channel modes] +** тип: стринг +** вредности: било који стринг +** подразумевана вредност: `+"k"+` + +* [[option_irc.look.item_display_server]] *irc.look.item_display_server* +** опис: pass:none[име ставке траке у којој се приказује IRC сервер (за статусну линију)] +** тип: целобројна +** вредности: buffer_plugin, buffer_name +** подразумевана вредност: `+buffer_plugin+` + +* [[option_irc.look.item_nick_modes]] *irc.look.item_nick_modes* +** опис: pass:none[приказ режима надимка у ставки траке „input_prompt”] +** тип: логичка +** вредности: on, off +** подразумевана вредност: `+on+` + +* [[option_irc.look.item_nick_prefix]] *irc.look.item_nick_prefix* +** опис: pass:none[приказ префикса надимка у ставки траке „input_prompt”] +** тип: логичка +** вредности: on, off +** подразумевана вредност: `+on+` + +* [[option_irc.look.join_auto_add_chantype]] *irc.look.join_auto_add_chantype* +** опис: pass:none[тип канала се аутоматски додаје испред имена канала приликом команде /join ако име канала не почиње са важећим типом канала за сервер; на пример: „/join weechat” ће уствари да пошаље „/join #weechat”] +** тип: логичка +** вредности: on, off +** подразумевана вредност: `+off+` + +* [[option_irc.look.msgbuffer_fallback]] *irc.look.msgbuffer_fallback* +** опис: pass:none[подразумевани циљни бафер за msgbuffer опције када је циљ приватни и када се тај приватни бафер не пронађе] +** тип: целобројна +** вредности: current, server +** подразумевана вредност: `+current+` + +* [[option_irc.look.new_channel_position]] *irc.look.new_channel_position* +** опис: pass:none[форсира позицију новог канала у листи бафера (none = подразумевана позиција (требало би да буде последњи бафер), next = текући бафер + 1, near_server = након последњег канала/приватног сервера)] +** тип: целобројна +** вредности: none, next, near_server +** подразумевана вредност: `+none+` + +* [[option_irc.look.new_pv_position]] *irc.look.new_pv_position* +** опис: pass:none[форсира позицију новог приватног бафера у листи бафера (none = подразумевана позиција (требало би да буде последњи бафер), next = текући бафер + 1, near_server = након последњег канала/приватног сервера)] +** тип: целобројна +** вредности: none, next, near_server +** подразумевана вредност: `+none+` + +* [[option_irc.look.nick_completion_smart]] *irc.look.nick_completion_smart* +** опис: pass:none[паметно довршавање за надимке (најпре довршава оне који су последњи говорили): speakers = сви говорници (укључујући и истакнуте), speakers_highlights = само говорници који су истакнути] +** тип: целобројна +** вредности: off, speakers, speakers_highlights +** подразумевана вредност: `+speakers+` + +* [[option_irc.look.nick_mode]] *irc.look.nick_mode* +** опис: pass:none[приказ режима надимка (оп, право гласа, ...) испред надимка (none = никада, prefix = само у префиксу (подразумевано), action = само у акционим порукама, both = префикс + акционе поруке)] +** тип: целобројна +** вредности: none, prefix, action, both +** подразумевана вредност: `+prefix+` + +* [[option_irc.look.nick_mode_empty]] *irc.look.nick_mode_empty* +** опис: pass:none[приказ размака ако је режим за надимак укључен, али надимак нема режим (није оп, нема право гласа, ...)] +** тип: логичка +** вредности: on, off +** подразумевана вредност: `+off+` + +* [[option_irc.look.nicks_hide_password]] *irc.look.nicks_hide_password* +** опис: pass:none[листа надимака раздвојених запетама за које ће се лозинке скривати када се шаље порука, на пример, да се у поруци коју исписује „/msg nickserv identify password” сакрије лозинка, пример: „nickserv,nickbot”] +** тип: стринг +** вредности: било који стринг +** подразумевана вредност: `+"nickserv"+` + +* [[option_irc.look.notice_as_pv]] *irc.look.notice_as_pv* +** опис: pass:none[приказ обавештења као приватних порука (ако је ауто, користи се приватни бафер ако се пронађе)] +** тип: целобројна +** вредности: auto, never, always +** подразумевана вредност: `+auto+` + +* [[option_irc.look.notice_welcome_redirect]] *irc.look.notice_welcome_redirect* +** опис: pass:none[аутоматско преусмеравање поздравних обавештења канала у бафер канала; таква обавештења као циљ имају надимак, али име канала на почетку поруке обавештења, на пример ENTRYMSG обавештења која шаље Atheme IRC Services и која изгледају овако: „[#канал\] Добро дошли на овај канал...”] +** тип: логичка +** вредности: on, off +** подразумевана вредност: `+on+` + +* [[option_irc.look.notice_welcome_tags]] *irc.look.notice_welcome_tags* +** опис: pass:none[листа ознака раздвојених запетама које се користе у поздравним обавештењима преусмереним на канал, на пример: „notify_private”] +** тип: стринг +** вредности: било који стринг +** подразумевана вредност: `+""+` + +* [[option_irc.look.notify_tags_ison]] *irc.look.notify_tags_ison* +** опис: pass:none[листа ознака раздвојених запетама које се користе у порукама обавештења да се надимак повезао или прекинуо везу са сервером (резултат команде ison или monitor), на пример: „notify_message”, „notify_private” или „notify_highlight”] +** тип: стринг +** вредности: било који стринг +** подразумевана вредност: `+"notify_message"+` + +* [[option_irc.look.notify_tags_whois]] *irc.look.notify_tags_whois* +** опис: pass:none[листа ознака раздвојених запетама које се користе у порукама обавештења када се статус одсуства надимка промени (резултат команде whois), на пример: „notify_message”, „notify_private” или „notify_highlight”] +** тип: стринг +** вредности: било који стринг +** подразумевана вредност: `+"notify_message"+` + +* [[option_irc.look.part_closes_buffer]] *irc.look.part_closes_buffer* +** опис: pass:none[затварање бафера када се на каналу изврши /part] +** тип: логичка +** вредности: on, off +** подразумевана вредност: `+off+` + +* [[option_irc.look.pv_buffer]] *irc.look.pv_buffer* +** опис: pass:none[спајање приватних бафера] +** тип: целобројна +** вредности: independent, merge_by_server, merge_all +** подразумевана вредност: `+independent+` + +* [[option_irc.look.pv_tags]] *irc.look.pv_tags* +** опис: pass:none[листа ознака раздвојених запетама које се користе у приватним порукама, на пример: „notify_message”, „notify_private” или „notify_highlight”] +** тип: стринг +** вредности: било који стринг +** подразумевана вредност: `+"notify_private"+` + +* [[option_irc.look.raw_messages]] *irc.look.raw_messages* +** опис: pass:none[број сирових порука које ће се чувати у меморији онда када се бафер сирових података затвори (поруке ће се приказати онда када се отвори бафер сирових података)] +** тип: целобројна +** вредности: 0 .. 65535 +** подразумевана вредност: `+256+` + +* [[option_irc.look.server_buffer]] *irc.look.server_buffer* +** опис: pass:none[спајање серверских бафера; ова опција нема ефекта ако се распоред сачува и у конфликту је са овом вредности (погледајте /help layout)] +** тип: целобројна +** вредности: merge_with_core, merge_without_core, independent +** подразумевана вредност: `+merge_with_core+` + +* [[option_irc.look.smart_filter]] *irc.look.smart_filter* +** опис: pass:none[ако надимак не говори на каналу неколико минута, филтрирају се join/part/quit/nick поруке за њега (морате да креирате филтер на ознаку „irc_smart_filter”, погледајте /help filter)] +** тип: логичка +** вредности: on, off +** подразумевана вредност: `+on+` + +* [[option_irc.look.smart_filter_account]] *irc.look.smart_filter_account* +** опис: pass:none[укључивање паметног филтера за „account” поруке] +** тип: логичка +** вредности: on, off +** подразумевана вредност: `+on+` + +* [[option_irc.look.smart_filter_chghost]] *irc.look.smart_filter_chghost* +** опис: pass:none[укључивање паметног филтера за „chghost” поруке] +** тип: логичка +** вредности: on, off +** подразумевана вредност: `+on+` + +* [[option_irc.look.smart_filter_delay]] *irc.look.smart_filter_delay* +** опис: pass:none[време за почетак филтрирања join/part/quit порука (у минутима): ако надимак није говорио у последњих N минута, join/part/quit се филтирира] +** тип: целобројна +** вредности: 1 .. 10080 +** подразумевана вредност: `+5+` + +* [[option_irc.look.smart_filter_join]] *irc.look.smart_filter_join* +** опис: pass:none[укључивање паметног филтера за „join” поруке] +** тип: логичка +** вредности: on, off +** подразумевана вредност: `+on+` + +* [[option_irc.look.smart_filter_join_unmask]] *irc.look.smart_filter_join_unmask* +** опис: pass:none[време након кога се уклања маскирање join поруке која је филтирана ознаком „irc_smart_filter” (у минутима): ако је надимак приступио пре максимално N минута и онда каже нешто на каналу (порука, обавештење или ажурирање теме), са join се уклања маскирање, као и ако се надимак промени након овог приступања (0 = искључено: маскирање се никада не уклања са join)] +** тип: целобројна +** вредности: 0 .. 10080 +** подразумевана вредност: `+30+` + +* [[option_irc.look.smart_filter_mode]] *irc.look.smart_filter_mode* +** опис: pass:none[укључивање паметног филтера за „mode” поруке: „*” за филтрирање свих режима, „+” за филтрирање свих режима у префиксима сервера (на пример „ovh”), „xyz” за филтрирање само режима x/y/z, „-xyz” за филтрирање свих режима осим x/y/z; примери: „ovh”: филтрирају се режими o/v/h, „-bkl”: филтрирају се сви режими осим b/k/l] +** тип: стринг +** вредности: било који стринг +** подразумевана вредност: `+"+"+` + +* [[option_irc.look.smart_filter_nick]] *irc.look.smart_filter_nick* +** опис: pass:none[укључивање паметног филтера за „nick” поруке (измене надимка)] +** тип: логичка +** вредности: on, off +** подразумевана вредност: `+on+` + +* [[option_irc.look.smart_filter_quit]] *irc.look.smart_filter_quit* +** опис: pass:none[укључивање паметног филтера за „part” и „quit” поруке] +** тип: логичка +** вредности: on, off +** подразумевана вредност: `+on+` + +* [[option_irc.look.smart_filter_setname]] *irc.look.smart_filter_setname* +** опис: pass:none[укључивање паметног филтера за „setname” поруке] +** тип: логичка +** вредности: on, off +** подразумевана вредност: `+on+` + +* [[option_irc.look.temporary_servers]] *irc.look.temporary_servers* +** опис: pass:none[укључивање аутоматског додавања привремених сервера командом /connect] +** тип: логичка +** вредности: on, off +** подразумевана вредност: `+off+` + +* [[option_irc.look.topic_strip_colors]] *irc.look.topic_strip_colors* +** опис: pass:none[уклањање боја из теме (користи се само онда када се приказује наслов бафера)] +** тип: логичка +** вредности: on, off +** подразумевана вредност: `+off+` + +* [[option_irc.look.typing_status_nicks]] *irc.look.typing_status_nicks* +** опис: pass:none[приказивање надимака који куцају у ставци траке „typing” (опција typing.look.enabled_nicks мора бити укључена и на серверу мора бити укључена опција „message-tags”)] +** тип: логичка +** вредности: on, off +** подразумевана вредност: `+off+` + +* [[option_irc.look.typing_status_self]] *irc.look.typing_status_self* +** опис: pass:none[слање сопственог статуса куцања каналима тако да остали корисници виде када куцате поруку (опција typing.look.enabled_self мора бити укључена и на серверу мора бити укључена опција „message-tags”)] +** тип: логичка +** вредности: on, off +** подразумевана вредност: `+off+` + +* [[option_irc.network.autoreconnect_delay_growing]] *irc.network.autoreconnect_delay_growing* +** опис: pass:none[фактор увећавања паузе пре аутоматског поновног повезивања са сервером (1 = увек иста пауза, 2 = пауза*2 за сваки наредни покушај, итд.)] +** тип: целобројна +** вредности: 1 .. 100 +** подразумевана вредност: `+2+` + +* [[option_irc.network.autoreconnect_delay_max]] *irc.network.autoreconnect_delay_max* +** опис: pass:none[максимална пауза пре аутоматског поновног повезивања са сервером (у секундама, 0 = нема ограничења)] +** тип: целобројна +** вредности: 0 .. 604800 +** подразумевана вредност: `+600+` + +* [[option_irc.network.ban_mask_default]] *irc.network.ban_mask_default* +** опис: pass:none[подразумевана маска забране за команде /ban, /unban и /kickban; променљиве $nick, $user, $ident и $host се замењују својим вредностима (издвојеним из „надимак!корисник@хост”); $ident је исто што и $user ако $user не почиње са „~”, у супротном се поставља на „*”; ова подразумевана маска се користи само ако програм WeeChat зна на ком хосту је надимак] +** тип: стринг +** вредности: било који стринг +** подразумевана вредност: `+"*!$ident@$host"+` + +* [[option_irc.network.colors_receive]] *irc.network.colors_receive* +** опис: pass:none[када је искључено, кодови боја у долазним порукама се игноришу] +** тип: логичка +** вредности: on, off +** подразумевана вредност: `+on+` + +* [[option_irc.network.colors_send]] *irc.network.colors_send* +** опис: pass:none[кориснику се дозвољава да шаље боје специјалним кодовима (ctrl-c + a кôд и необавезна боја: b=подебљано, cxx=боја, cxx,yy=боја+позадина, i=курзив, o=боја се искључује/атрибути, r=обрнуто, u=подвучено)] +** тип: логичка +** вредности: on, off +** подразумевана вредност: `+on+` + +* [[option_irc.network.lag_check]] *irc.network.lag_check* +** опис: pass:none[интервал између две провере кашњења (у секундама, 0 = без провере)] +** тип: целобројна +** вредности: 0 .. 604800 +** подразумевана вредност: `+60+` + +* [[option_irc.network.lag_max]] *irc.network.lag_max* +** опис: pass:none[максимално кашњење (у секундама): ако се достигне ово кашњење, програм WeeChat ће сматрати да се одговор од сервера (понг) никада неће примити, па ће одустати од бројања кашњења (0 = никада се не одустаје)] +** тип: целобројна +** вредности: 0 .. 604800 +** подразумевана вредност: `+1800+` + +* [[option_irc.network.lag_min_show]] *irc.network.lag_min_show* +** опис: pass:none[минимално кашњење које се приказује (у милисекундама)] +** тип: целобројна +** вредности: 0 .. 86400000 +** подразумевана вредност: `+500+` + +* [[option_irc.network.lag_reconnect]] *irc.network.lag_reconnect* +** опис: pass:none[веза са сервером се поново успоставља ако је кашњење веће или једнако овој вредности, 0 = нема поновног успостављања везе); ова вредност мора бити мања или једнака од irc.network.lag_max] +** тип: целобројна +** вредности: 0 .. 604800 +** подразумевана вредност: `+300+` + +* [[option_irc.network.lag_refresh_interval]] *irc.network.lag_refresh_interval* +** опис: pass:none[интервал између сва освежавања ставке кашњења, када се кашњење повећава (у секундама)] +** тип: целобројна +** вредности: 1 .. 3600 +** подразумевана вредност: `+1+` + +* [[option_irc.network.notify_check_ison]] *irc.network.notify_check_ison* +** опис: pass:none[интервал између две провере има ли обавештења IRC командом „ison” (у минутима)] +** тип: целобројна +** вредности: 1 .. 10080 +** подразумевана вредност: `+1+` + +* [[option_irc.network.notify_check_whois]] *irc.network.notify_check_whois* +** опис: pass:none[интервал између две провере има ли обавештења IRC командом „whois” (у минутима)] +** тип: целобројна +** вредности: 1 .. 10080 +** подразумевана вредност: `+5+` + +* [[option_irc.network.sasl_fail_unavailable]] *irc.network.sasl_fail_unavailable* +** опис: pass:none[изазива неуспех SASL аутентификације када се SASL захтева, али није доступан на серверу; када је ова опција укључена, има ефекат само ако је за сервер вредност опције „sasl_fail” постављена на „reconnect” или „disconnect”] +** тип: логичка +** вредности: on, off +** подразумевана вредност: `+on+` + +* [[option_irc.network.send_unknown_commands]] *irc.network.send_unknown_commands* +** опис: pass:none[слање непознатих команди серверу] +** тип: логичка +** вредности: on, off +** подразумевана вредност: `+off+` + +* [[option_irc.network.whois_double_nick]] *irc.network.whois_double_nick* +** опис: pass:none[дуплирање надимка у команди /whois command (ако је наведен само један надимак), како би се у одговору добило време неактивности; на пример: „/whois nick” ће послати „whois nick nick”] +** тип: логичка +** вредности: on, off +** подразумевана вредност: `+off+` + +* [[option_irc.server_default.addresses]] *irc.server_default.addresses* +** опис: pass:none[листа имехоста/порт или IP/порт за сервер (раздвојених запетама) (напомена: садржај се израчунава, погледајте /help eval; опције сервера се израчунавају са ${irc_server.xxx} и ${server} се замењује са именом сервера)] +** тип: стринг +** вредности: било који стринг +** подразумевана вредност: `+""+` + +* [[option_irc.server_default.anti_flood_prio_high]] *irc.server_default.anti_flood_prio_high* +** опис: pass:none[спречавање засипања за ред са високим приоритетом: број секунди између две корисникове поруке које се шаљу IRC серверу (0 = нема спречавања засипања)] +** тип: целобројна +** вредности: 0 .. 60 +** подразумевана вредност: `+2+` + +* [[option_irc.server_default.anti_flood_prio_low]] *irc.server_default.anti_flood_prio_low* +** опис: pass:none[спречавање засипања за ред са ниским приоритетом: број секунди између две поруке које се шаљу IRC серверу (поруке као што су аутоматски CTCP одговори) (0 = нема спречавања засипања)] +** тип: целобројна +** вредности: 0 .. 60 +** подразумевана вредност: `+2+` + +* [[option_irc.server_default.autoconnect]] *irc.server_default.autoconnect* +** опис: pass:none[аутоматско повезивање са сервером током покретања се програма WeeChat] +** тип: логичка +** вредности: on, off +** подразумевана вредност: `+off+` + +* [[option_irc.server_default.autojoin]] *irc.server_default.autojoin* +** опис: pass:none[листа канала раздвојених запетама којима треба да се приступи након успостављања везе са сервером (и након извршавања команде + додатно време у случају да су постављени); канали којима је неопходан кључ за приступ морају да се наведу на почетку листе, и сви кључеви морају да се задају након канала (раздвојени запетом или размаком) (пример: „#channel1,#channel2,#channel3 key1,key2” где су #channel1 и #channel2 заштићени са key1 и key2) (напомена: садржај се израчунава, погледајте /help eval; опције сервера се израчунавају са ${irc_server.xxx} и ${server} се замењује са именом сервера)] +** тип: стринг +** вредности: било који стринг +** подразумевана вредност: `+""+` + +* [[option_irc.server_default.autojoin_dynamic]] *irc.server_default.autojoin_dynamic* +** опис: pass:none[аутоматско постављање опције „autojoin” према каналима којима ручно приступате и које науштате командама /join и /part] +** тип: логичка +** вредности: on, off +** подразумевана вредност: `+off+` + +* [[option_irc.server_default.autoreconnect]] *irc.server_default.autoreconnect* +** опис: pass:none[аутоматско поновно повезивање са сервером када се веза прекине] +** тип: логичка +** вредности: on, off +** подразумевана вредност: `+on+` + +* [[option_irc.server_default.autoreconnect_delay]] *irc.server_default.autoreconnect_delay* +** опис: pass:none[време (у секундама) пре него што се покуша поновно повезивање са сервером] +** тип: целобројна +** вредности: 1 .. 65535 +** подразумевана вредност: `+10+` + +* [[option_irc.server_default.autorejoin]] *irc.server_default.autorejoin* +** опис: pass:none[аутоматско поновно приступање каналу након избацивања; можете да дефинишете бафер локалну на каналу ако желите да премостите ову вредност (име променљиве: „autorejoin”, вредност: „on” или „off”)] +** тип: логичка +** вредности: on, off +** подразумевана вредност: `+off+` + +* [[option_irc.server_default.autorejoin_delay]] *irc.server_default.autorejoin_delay* +** опис: pass:none[време (у секундама) пре него што се обави аутоматско поновно приступање каналу (након избацивања)] +** тип: целобројна +** вредности: 0 .. 86400 +** подразумевана вредност: `+30+` + +* [[option_irc.server_default.away_check]] *irc.server_default.away_check* +** опис: pass:none[интервал између две провере на одсутност (у минутима, 0 = провера се не врши)] +** тип: целобројна +** вредности: 0 .. 10080 +** подразумевана вредност: `+0+` + +* [[option_irc.server_default.away_check_max_nicks]] *irc.server_default.away_check_max_nicks* +** опис: pass:none[на каналима са великим бројем надимака се не врши провера одсутности надимка (0 = неограничено)] +** тип: целобројна +** вредности: 0 .. 1000000 +** подразумевана вредност: `+25+` + +* [[option_irc.server_default.capabilities]] *irc.server_default.capabilities* +** опис: pass:none[листа могућности клијента (client capabilities) раздвојених запетама које треба да се укључе за сервер у случају да су доступне (погледајте /help cap за листу могућности које подржава програм WeeChat); дозвољен је џокер „*”; могућност која почиње са „!” није укључена (пример: „*,!account-*,!extended-join”)] +** тип: стринг +** вредности: било који стринг +** подразумевана вредност: `+"*"+` + +* [[option_irc.server_default.charset_message]] *irc.server_default.charset_message* +** опис: pass:none[део IRC поруке (примљене или послате) који се декодира/кодира у циљни скуп карактера; порука = комплетна IRC порука (подразумевано), канал = почевши само од имена канала (ако се пронађе, ако не онда се узима текст), текст = почевши само од текста (требало би да пробате ову вредност ако имате проблеме са кодирањем имена канала)] +** тип: целобројна +** вредности: message, channel, text +** подразумевана вредност: `+message+` + +* [[option_irc.server_default.command]] *irc.server_default.command* +** опис: pass:none[команд(а/е) која се извршава након успостављања везе са сервером и пре ауто-приступа каналима (више команди може да се раздвоји са „;”, користите „\;” за тачка запету, специјалне променљиве $nick, $channel и $server се замењују са својим вредностима) (напомена: команде се израчунавају, погледајте /help eval; опције сервера се израчунавају са ${irc_server.xxx} и ${server} се замењује са именом сервера)] +** тип: стринг +** вредности: било који стринг +** подразумевана вредност: `+""+` + +* [[option_irc.server_default.command_delay]] *irc.server_default.command_delay* +** опис: pass:none[време (у секундама) након извршавања команде и пре ауто-приступа каналима (пример: давање мало времена за аутентификацију пре него што се приступи каналима)] +** тип: целобројна +** вредности: 0 .. 3600 +** подразумевана вредност: `+0+` + +* [[option_irc.server_default.connection_timeout]] *irc.server_default.connection_timeout* +** опис: pass:none[време (у секундама) између TCP повезивања са сервером и пријема поруке 001, ако се достигне овај тајмаут пре него што се прими порука 001, програм WeeChat ће прекинути везу са сервером] +** тип: целобројна +** вредности: 1 .. 3600 +** подразумевана вредност: `+60+` + +* [[option_irc.server_default.default_chantypes]] *irc.server_default.default_chantypes* +** опис: pass:none[префикси типа канала који треба да се користе у случају да их сервер не шаље у поруци 005 (подразумевана вредност је „#&”)] +** тип: стринг +** вредности: било који стринг +** подразумевана вредност: `+"#&"+` + +* [[option_irc.server_default.ipv6]] *irc.server_default.ipv6* +** опис: pass:none[за комуникацију са сервером се користи IPv6 протокол (покушава се IPv6 па се прелази на IPv4 ако не ради); ако је искључено, користи се само IPv4] +** тип: логичка +** вредности: on, off +** подразумевана вредност: `+on+` + +* [[option_irc.server_default.local_hostname]] *irc.server_default.local_hostname* +** опис: pass:none[прилагођено хост/IP локално име за сервер (није обавезно, ако је празно користи се име локалног хоста)] +** тип: стринг +** вредности: било који стринг +** подразумевана вредност: `+""+` + +* [[option_irc.server_default.msg_kick]] *irc.server_default.msg_kick* +** опис: pass:none[подразумевана порука избацивања која се користи са командама „/kick” и „/kickban” (напомена: садржај се израчунава, погледајте /help eval; специјалне променљиве ${nick}, (сопствени надимак), ${target} (циљни надимак), ${channel} и ${server} се замењују својим вредностима)] +** тип: стринг +** вредности: било који стринг +** подразумевана вредност: `+""+` + +* [[option_irc.server_default.msg_part]] *irc.server_default.msg_part* +** опис: pass:none[подразумевана поздравна порука (приликом напуштања канала) (напомена: садржај се израчунава, погледајте /help eval; специјалне променљиве ${nick}, ${channel} и ${server} се замењују својим вредностима; „%v” се замењује верзијом програма WeeChat ако у стрингу не постоји ниједно ${...})] +** тип: стринг +** вредности: било који стринг +** подразумевана вредност: `+"WeeChat ${info:version}"+` + +* [[option_irc.server_default.msg_quit]] *irc.server_default.msg_quit* +** опис: pass:none[подразумевана порука изласка (прекидања везе са сервером) (напомена: садржај се израчунава, погледајте /help eval; специјалне променљиве ${nick}, ${channel} и ${server} се замењују својим вредностима; „%v” се замењује верзијом програма WeeChat ако у стрингу не постоји ниједно ${...})] +** тип: стринг +** вредности: било који стринг +** подразумевана вредност: `+"WeeChat ${info:version}"+` + +* [[option_irc.server_default.nicks]] *irc.server_default.nicks* +** опис: pass:none[надимци који треба да се користе на серверу (раздвојени запетом) (напомена: садржај се израчунава, погледајте /help eval; опције сервера се израчунавају са ${irc_server.xxx} и ${server} се замењује са именом сервера)] +** тип: стринг +** вредности: било који стринг +** подразумевана вредност: `+""+` + +* [[option_irc.server_default.nicks_alternate]] *irc.server_default.nicks_alternate* +** опис: pass:none[узима се алтернативни надимак када су сви наведени надимци већ заузети на серверу: додаје неколико „_” све док надимак не буде дужине 9, па онда замењује последњи карактер (или два последња карактера) бројем од 1 до 99, све док се не пронађе надимак који је на серверу слободан] +** тип: логичка +** вредности: on, off +** подразумевана вредност: `+on+` + +* [[option_irc.server_default.notify]] *irc.server_default.notify* +** опис: pass:none[листа обавештавања за сервер (не би требало да мењате ову опцију, употребите команду /notify)] +** тип: стринг +** вредности: било који стринг +** подразумевана вредност: `+""+` + +* [[option_irc.server_default.password]] *irc.server_default.password* +** опис: pass:none[лозинка за сервер (напомена: садржај се израчунава, погледајте /help eval; опције сервера се израчунавају са ${irc_server.xxx} и ${server} се замењује са именом сервера)] +** тип: стринг +** вредности: било који стринг +** подразумевана вредност: `+""+` + +* [[option_irc.server_default.proxy]] *irc.server_default.proxy* +** опис: pass:none[име проксија који се користи за овај сервер (необавезно, прокси мора бити дефинисан командом /proxy)] +** тип: стринг +** вредности: било који стринг +** подразумевана вредност: `+""+` + +* [[option_irc.server_default.realname]] *irc.server_default.realname* +** опис: pass:none[реално име које че се користити на серверу (напомена: садржај се израчунава, погледајте /help eval; опције сервера се израчунавају са ${irc_server.xxx} и ${server} се замењује са именом сервера)] +** тип: стринг +** вредности: било који стринг +** подразумевана вредност: `+""+` + +* [[option_irc.server_default.sasl_fail]] *irc.server_default.sasl_fail* +** опис: pass:none[радња која се преузима у случају да SASL аутентификација не успе: „continue” да се игнорише проблем аутентификације, „reconnect” да се закаже поновно повезивање са сервером, „disconnect” да се прекине веза са сервером (погледајте и опцију irc.network.sasl_fail_unavailable)] +** тип: целобројна +** вредности: continue, reconnect, disconnect +** подразумевана вредност: `+reconnect+` + +* [[option_irc.server_default.sasl_key]] *irc.server_default.sasl_key* +** опис: pass:none[фајл са ECC приватним кључем за механизам „ecdsa-nist256p-challenge” (путања се израчунава, погледајте функцију string_eval_path_home у референтном приручнику API додатака)] +** тип: стринг +** вредности: било који стринг +** подразумевана вредност: `+""+` + +* [[option_irc.server_default.sasl_mechanism]] *irc.server_default.sasl_mechanism* +** опис: pass:none[механизам SASL аутентификације: „plain” за просту текст лозинку, „scram-sha-1” за SCRAM аутентификацију са SHA-1 digest алгоритмом, „scram-sha-256” за SCRAM аутентификацију са SHA-256 digest алгоритмом, „scram-sha-512” за SCRAM аутентификацију са SHA-512 digest алгоритмом, „ecdsa-nist256p-challenge” за аутентификацију са изазовом базираним на кључу, „external” за аутентификацију употребом SSL сертификата са клијентске стране] +** тип: целобројна +** вредности: plain, scram-sha-1, scram-sha-256, scram-sha-512, ecdsa-nist256p-challenge, external +** подразумевана вредност: `+plain+` + +* [[option_irc.server_default.sasl_password]] *irc.server_default.sasl_password* +** опис: pass:none[лозинка за SASL аутентификацију; ова опција се не користи за механизме „ecdsa-nist256p-challenge” и „external” (напомена: садржај се израчунава, погледајте /help eval; опције сервера се израчунавају са ${irc_server.xxx} и ${server} се замењује са именом сервера)] +** тип: стринг +** вредности: било који стринг +** подразумевана вредност: `+""+` + +* [[option_irc.server_default.sasl_timeout]] *irc.server_default.sasl_timeout* +** опис: pass:none[тајмаут (у секундама) пре него што се одустане од SASL аутентификације] +** тип: целобројна +** вредности: 1 .. 3600 +** подразумевана вредност: `+15+` + +* [[option_irc.server_default.sasl_username]] *irc.server_default.sasl_username* +** опис: pass:none[корисничко име за SASL аутентификацију; ова опција се не користи за механизам „external” (напомена: садржај се израчунава, погледајте /help eval; опције сервера се израчунавају са ${irc_server.xxx} и ${server} се замењује са именом сервера)] +** тип: стринг +** вредности: било који стринг +** подразумевана вредност: `+""+` + +* [[option_irc.server_default.split_msg_max_length]] *irc.server_default.split_msg_max_length* +** опис: pass:none[одлазне IRC поруке се деле тако да стају у овај број карактера; подразумевана вредност је 512, ово је безбедна и препоручена вредност; вредност 0 искључује поделу (не препоручује се, осим ако знате шта радите); дозвољене вредности су 0 или било који цео број између 128 и 4096; ова опција би требало да се промени само за нестандардне IRC сервере, као што су на пример гејтвеји као bitlbee] +** тип: целобројна +** вредности: 0 .. 4096 +** подразумевана вредност: `+512+` + +* [[option_irc.server_default.ssl]] *irc.server_default.ssl* +** опис: pass:none[за комуникацију са сервером се користи SSL] +** тип: логичка +** вредности: on, off +** подразумевана вредност: `+off+` + +* [[option_irc.server_default.ssl_cert]] *irc.server_default.ssl_cert* +** опис: pass:none[Фајл SSL сертификата који се користи за аутоматску идентификацију вашег надимка (путања се израчунава, функцију погледајте string_eval_path_home у референтном приручнику API додатака)] +** тип: стринг +** вредности: било који стринг +** подразумевана вредност: `+""+` + +* [[option_irc.server_default.ssl_dhkey_size]] *irc.server_default.ssl_dhkey_size* +** опис: pass:none[величина кључа који се користи током Дифи-Хелман размене кључа] +** тип: целобројна +** вредности: 0 .. 2147483647 +** подразумевана вредност: `+2048+` + +* [[option_irc.server_default.ssl_fingerprint]] *irc.server_default.ssl_fingerprint* +** опис: pass:none[отисак сертификата којем се верује и који сервер прихвата; дозвољене су само хексадецималне цифре (0-9, a-f): 128 карактера за SHA-512, 64 карактера за SHA-256, 40 карактера за SHA-1 (није безбедно, не препоручује се); више отисака може да се раздвоји запетама; ако је ова опција постављена, остале провере над сертификатом се НЕ врше (опција „ssl_verify”) (напомена: садржај се израчунава, погледајте /help eval; опције сервера се израчунавају са ${irc_server.xxx} и ${server} се замењује са именом сервера)] +** тип: стринг +** вредности: било који стринг +** подразумевана вредност: `+""+` + +* [[option_irc.server_default.ssl_password]] *irc.server_default.ssl_password* +** опис: pass:none[лозинка за приватни кључ SSL сертификата; користи се ако ако је gnutls верзија >= 3.1.0 (напомена: садржај се израчунава, погледајте /help eval; опције сервера се израчунавају са ${irc_server.xxx} и ${server} се замењује са именом сервера)] +** тип: стринг +** вредности: било који стринг +** подразумевана вредност: `+""+` + +* [[option_irc.server_default.ssl_priorities]] *irc.server_default.ssl_priorities* +** опис: pass:none[стринг са приоритетима за gnutls (за синтаксу погледајте документацију функције gnutls_priority_init у gnutls упутству, уобичајени стрингови су: „PERFORMANCE”, „NORMAL”, „SECURE128”, „SECURE256”, „EXPORT”, „NONE”)] +** тип: стринг +** вредности: било који стринг +** подразумевана вредност: `+"NORMAL:-VERS-SSL3.0"+` + +* [[option_irc.server_default.ssl_verify]] *irc.server_default.ssl_verify* +** опис: pass:none[провера да ли се SSL конекцији потпуно верује] +** тип: логичка +** вредности: on, off +** подразумевана вредност: `+on+` + +* [[option_irc.server_default.usermode]] *irc.server_default.usermode* +** опис: pass:none[кориснички режим(и) који треба да се поставе након повезивања са сервером и пре извршавања команде и ауто-приступа каналима; примери: „+R” (да се постави режим „R”), „+R-i” (да се постави режим „R” и уклони „i”); погледајте /help mode за комплетну синтаксу режима (напомена: садржај се израчунава, погледајте /help eval; опције сервера се израчунавају са ${irc_server.xxx} и ${server} се замењује са именом сервера)] +** тип: стринг +** вредности: било који стринг +** подразумевана вредност: `+""+` + +* [[option_irc.server_default.username]] *irc.server_default.username* +** опис: pass:none[корисничко име које се користи на серверу (напомена: садржај се израчунава, погледајте /help eval; опције сервера се израчунавају са ${irc_server.xxx} и ${server} се замењује са именом сервера)] +** тип: стринг +** вредности: било који стринг +** подразумевана вредност: `+""+` +// 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[боја текста за опис клијента] +** тип: боја +** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_relay.color.status_active]] *relay.color.status_active* +** опис: pass:none[боја текста за статус „connected”] +** тип: боја +** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_relay.color.status_auth_failed]] *relay.color.status_auth_failed* +** опис: pass:none[боја текста за статус „authentication failed”] +** тип: боја +** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_relay.color.status_connecting]] *relay.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 +** подразумевана вредност: `+white+` + +* [[option_relay.color.status_disconnected]] *relay.color.status_disconnected* +** опис: pass:none[боја текста за статус „disconnected”] +** тип: боја +** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_relay.color.status_waiting_auth]] *relay.color.status_waiting_auth* +** опис: pass:none[боја текста за статус „waiting authentication”] +** тип: боја +** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_relay.color.text]] *relay.color.text* +** опис: pass:none[боја текста у релеј баферу] +** тип: боја +** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are 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_relay.color.text_bg]] *relay.color.text_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_relay.color.text_selected]] *relay.color.text_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_relay.irc.backlog_max_minutes]] *relay.irc.backlog_max_minutes* +** опис: pass:none[максимални број минута у старијим линијама по IRC каналу (0 = без ограничења, примери: 1440 = један дан, 10080 = једна недеља, 43200 = један месец, 525600 = једна година)] +** тип: целобројна +** вредности: 0 .. 2147483647 +** подразумевана вредност: `+0+` + +* [[option_relay.irc.backlog_max_number]] *relay.irc.backlog_max_number* +** опис: pass:none[максимални број старијих линија по IRC каналу (0 = без ограничења)] +** тип: целобројна +** вредности: 0 .. 2147483647 +** подразумевана вредност: `+1024+` + +* [[option_relay.irc.backlog_since_last_disconnect]] *relay.irc.backlog_since_last_disconnect* +** опис: pass:none[старије линије се приказују од тренутка последњег прекида везе са клијентом] +** тип: логичка +** вредности: on, off +** подразумевана вредност: `+on+` + +* [[option_relay.irc.backlog_since_last_message]] *relay.irc.backlog_since_last_message* +** опис: pass:none[старије линије се приказују од ваше последње поруке] +** тип: логичка +** вредности: on, off +** подразумевана вредност: `+off+` + +* [[option_relay.irc.backlog_tags]] *relay.irc.backlog_tags* +** опис: pass:none[листа ознака порука раздвојених запетама које се приказују у старијим линијама по IRC каналу (подржане су следеће ознаке: „irc_join”, „irc_part”, „irc_quit”, „irc_nick”, „irc_privmsg”), „*” = све подржане ознаке] +** тип: стринг +** вредности: било који стринг +** подразумевана вредност: `+"irc_privmsg"+` + +* [[option_relay.irc.backlog_time_format]] *relay.irc.backlog_time_format* +** опис: pass:none[формат времена у линијама старијих порука (погледајте man strftime за формат) (не користи се ако је клијент укључио „server-time” могућност сервера, јер се време шаље као irc ознака); празан стринг = време је искључено у линијама старијих порука] +** тип: стринг +** вредности: било који стринг +** подразумевана вредност: `+"[%H:%M] "+` + +* [[option_relay.look.auto_open_buffer]] *relay.look.auto_open_buffer* +** опис: pass:none[ауто отварање релеј бафера када се повезује нови корисник] +** тип: логичка +** вредности: on, off +** подразумевана вредност: `+on+` + +* [[option_relay.look.raw_messages]] *relay.look.raw_messages* +** опис: pass:none[број сирових порука које ће се чувати у меморији онда када се бафер сирових података затвори (поруке ће се приказати онда када се отвори бафер сирових података)] +** тип: целобројна +** вредности: 0 .. 65535 +** подразумевана вредност: `+256+` + +* [[option_relay.network.allow_empty_password]] *relay.network.allow_empty_password* +** опис: pass:none[у релеју се дозвољава празна лозинка (требало би да се укључи само током тестирања или у локалној мрежи)] +** тип: логичка +** вредности: on, off +** подразумевана вредност: `+off+` + +* [[option_relay.network.allowed_ips]] *relay.network.allowed_ips* +** опис: pass:none[POSIX проширени регуларни израз са IP адресама којима је дозвољено да користе релеј (без разликовања величине слова, употребите „(?-i)” на почетку ако желите да се разликују мала и велика слова), пример: „^(123\.45\.67\.89|192\.160\..*)$”] +** тип: стринг +** вредности: било који стринг +** подразумевана вредност: `+""+` + +* [[option_relay.network.auth_timeout]] *relay.network.auth_timeout* +** опис: pass:none[тајмаут (у секундама) за аутентификацију клијента: веза се прекида ако се клијент не аутентификује након протека овог времена и статус клијента се поставља на „аутентификација није успела” (0 = чека се довека)] +** тип: целобројна +** вредности: 0 .. 2147483647 +** подразумевана вредност: `+60+` + +* [[option_relay.network.bind_address]] *relay.network.bind_address* +** опис: pass:none[адреса на коју се везује (ако је празно, веза може да се успостави на свим интерфејсима, употребите „127.0.0.1” ако желите да дозволите успостављање везе само са локалне машине)] +** тип: стринг +** вредности: било који стринг +** подразумевана вредност: `+""+` + +* [[option_relay.network.clients_purge_delay]] *relay.network.clients_purge_delay* +** опис: pass:none[време за чишћење клијената који су прекинули везу (у минутима, 0 = клијенти се чисте тренутно, -1 = никада се не чисти)] +** тип: целобројна +** вредности: -1 .. 43200 +** подразумевана вредност: `+0+` + +* [[option_relay.network.compression]] *relay.network.compression* +** опис: pass:none[компресија порука које се клијентима шаљу „weechat” протоколом: 0 = без компресије, 1 = ниска компресија / брзо ... 100 = најбоља компресија / споро; вредност је проценат који се конвертује у 1-9 за zlib и 1-19 за zstd; препоручује се подразумевана вредност јер нуди добар компромис између компресије и брзине] +** тип: целобројна +** вредности: 0 .. 100 +** подразумевана вредност: `+20+` + +* [[option_relay.network.ipv6]] *relay.network.ipv6* +** опис: pass:none[подразумевано се слуша на IPv6 сокету (уз IPv4 који је подразумеван); протоколи IPv4 и IPv6 могу да се форсирају (појединачно или заједно) у имену протокола (погледајте /help relay)] +** тип: логичка +** вредности: on, off +** подразумевана вредност: `+on+` + +* [[option_relay.network.max_clients]] *relay.network.max_clients* +** опис: pass:none[максимални број клијената који се повезују на порт (0 = без ограничења)] +** тип: целобројна +** вредности: 0 .. 2147483647 +** подразумевана вредност: `+5+` + +* [[option_relay.network.nonce_size]] *relay.network.nonce_size* +** опис: pass:none[величина нонса (у бајтовима), који се генерише када се клијент повеже; клијент мора да користи овај нонс, надовезан на клијентски нонс и лозинку када хешира лозинку у „init” команди weechat протокола] +** тип: целобројна +** вредности: 8 .. 128 +** подразумевана вредност: `+16+` + +* [[option_relay.network.password]] *relay.network.password* +** опис: pass:none[лозинка која се захтева од клијената за приступ овом релеју (празна вредност значи да лозинка није потребна, погледајте опцију relay.network.allow_empty_password) (напомена: садржај се израчунава, погледајте /help eval)] +** тип: стринг +** вредности: било који стринг +** подразумевана вредност: `+""+` + +* [[option_relay.network.password_hash_algo]] *relay.network.password_hash_algo* +** опис: pass:none[листа хеш алгоритама раздвојених запетама који се користе за аутентификацију лозинке у weechat протоколу, могу бити: „plain” (лозинка је чисти текст, не хешира се), „sha256”, „sha512”, „pbkdf2+sha256”, „pbkdf2+sha512”), „*” значи сви алгоритми, име које почиње са „!” је негативна вредност којим се спречава употреба тог алгоритма, у именима је дозвољена употреба џокера „*” (примери: „*”, „pbkdf2*”, „*,!plain”)] +** тип: стринг +** вредности: било који стринг +** подразумевана вредност: `+"*"+` + +* [[option_relay.network.password_hash_iterations]] *relay.network.password_hash_iterations* +** опис: pass:none[број итерација који се захтева од клијента у weechat протоколу када се за аутентификацију користи лозинка хеширана PBKDF2 алгоритмом ; више итерација је боље у смислу безбедности, али је спорије за израчунавање; ако је ваш CPU спор, овај број не би требало да буде сувише велики] +** тип: целобројна +** вредности: 1 .. 1000000 +** подразумевана вредност: `+100000+` + +* [[option_relay.network.ssl_cert_key]] *relay.network.ssl_cert_key* +** опис: pass:none[фајл са SSL сертификатом и приватним кључем (за опслуживање клијената преко SSL) (путања се израчунава, погледајте функцију string_eval_path_home у референтном приручнику API додатака)] +** тип: стринг +** вредности: било који стринг +** подразумевана вредност: `+"${weechat_config_dir}/ssl/relay.pem"+` + +* [[option_relay.network.ssl_priorities]] *relay.network.ssl_priorities* +** опис: pass:none[стринг са приоритетима за gnutls (за синтаксу погледајте документацију функције gnutls_priority_init у gnutls упутству, уобичајени стрингови су: „PERFORMANCE”, „NORMAL”, „SECURE128”, „SECURE256”, „EXPORT”, „NONE”)] +** тип: стринг +** вредности: било који стринг +** подразумевана вредност: `+"NORMAL:-VERS-SSL3.0"+` + +* [[option_relay.network.totp_secret]] *relay.network.totp_secret* +** опис: pass:none[тајна за генерисање Time-based One-Time Password (TOTP), кодирана у base32 (само слова и цифре од 2 до 7); у weechat протоколу се, уз лозинку, користи као други фактор, не сме бити празна (празна вредност значи да се TOTP не захтева) (напомена: садржај се израчунава, погледајте /help eval)] +** тип: стринг +** вредности: било који стринг +** подразумевана вредност: `+""+` + +* [[option_relay.network.totp_window]] *relay.network.totp_window* +** опис: pass:none[Број Time-based One-Time Passwords лозинки које се прихватају пре и након текуће: 0 = прихвата се само текућа лозинка, 1 = прихвата се једна лозинка пре, текућа и једна након, 2 = прихватају се две лозинке пре, текућа и два након, ...; велики број умањује ниво безбедности (препоручене вредности су 0 или 1)] +** тип: целобројна +** вредности: 0 .. 256 +** подразумевана вредност: `+0+` + +* [[option_relay.network.websocket_allowed_origins]] *relay.network.websocket_allowed_origins* +** опис: pass:none[POSIX проширени регуларни израз са пореклима која се дозвољавају у вебсокетима (без разликовања малих и великих слова, ако желите да се прави разлика, употребите „(?-i)” на почетку), пример: „^https?://(www\.)?example\.(com|org)”] +** тип: стринг +** вредности: било који стринг +** подразумевана вредност: `+""+` + +* [[option_relay.weechat.commands]] *relay.weechat.commands* +** опис: pass:none[листа команди раздвојених запетама које су дозвољене/забрањене када се од клијента приме улазни подаци (текст или команда); „*” значи било која команда, име које почиње са „!” је негативна вредност којом се спречава да се команда изврши, у именима је дозвољен џокер „*”; ова опција би требало да се постави ако релеј клијент није безбедан (неко би могао да га користи за покретање команди); на пример „*,!exec,!quit” дозвољава све команде осим /exec и /quit] +** тип: стринг +** вредности: било који стринг +** подразумевана вредност: `+""+` +// end::relay_options[] + +// tag::ruby_options[] +* [[option_ruby.look.check_license]] *ruby.look.check_license* +** опис: pass:none[провера лиценце скрипти када се учитавају: ако се лиценца разликује од лиценце додатка, исписује се упозорење] +** тип: логичка +** вредности: on, off +** подразумевана вредност: `+off+` + +* [[option_ruby.look.eval_keep_context]] *ruby.look.eval_keep_context* +** опис: pass:none[задржава се контекст између два позива израчунавања изворног кода (опција „eval” команде script или info „%s_eval”); за израчунавање кода скрипте се користи скривена скрипта; ако је ова опција искључена, ова скривена скрипта се уклања из меморије након сваког израчунавања: ово троши мање меморије, али је спорије] +** тип: логичка +** вредности: on, off +** подразумевана вредност: `+on+` +// end::ruby_options[] + +// tag::script_options[] +* [[option_script.color.status_autoloaded]] *script.color.status_autoloaded* +** опис: pass:none[боја за статус „аутоучитана” („a”)] +** тип: боја +** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_script.color.status_held]] *script.color.status_held* +** опис: pass:none[боја за статус „задржана” („H”)] +** тип: боја +** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_script.color.status_installed]] *script.color.status_installed* +** опис: pass:none[боја за статус „инсталирана” („i”)] +** тип: боја +** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_script.color.status_obsolete]] *script.color.status_obsolete* +** опис: pass:none[боја за статус „застарела” („N”)] +** тип: боја +** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_script.color.status_popular]] *script.color.status_popular* +** опис: pass:none[боја за статус „популарна” („*”)] +** тип: боја +** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_script.color.status_running]] *script.color.status_running* +** опис: pass:none[боја за статус „извршава се” („r”)] +** тип: боја +** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_script.color.status_unknown]] *script.color.status_unknown* +** опис: pass:none[боја за статус „непозната” („?”)] +** тип: боја +** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_script.color.text]] *script.color.text* +** опис: pass:none[боја текста у скрипт баферу] +** тип: боја +** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are 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_script.color.text_bg]] *script.color.text_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_script.color.text_bg_selected]] *script.color.text_bg_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 +** подразумевана вредност: `+red+` + +* [[option_script.color.text_date]] *script.color.text_date* +** опис: pass:none[боја текста за датуме у скрипт баферу] +** тип: боја +** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are 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_script.color.text_date_selected]] *script.color.text_date_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_script.color.text_delimiters]] *script.color.text_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 +** подразумевана вредност: `+default+` + +* [[option_script.color.text_description]] *script.color.text_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 +** подразумевана вредност: `+default+` + +* [[option_script.color.text_description_selected]] *script.color.text_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_script.color.text_extension]] *script.color.text_extension* +** опис: pass:none[боја текста за екстензију у скрипт баферу] +** тип: боја +** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are 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_script.color.text_extension_selected]] *script.color.text_extension_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_script.color.text_name]] *script.color.text_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+` + +* [[option_script.color.text_name_selected]] *script.color.text_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 +** подразумевана вредност: `+lightcyan+` + +* [[option_script.color.text_selected]] *script.color.text_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_script.color.text_tags]] *script.color.text_tags* +** опис: pass:none[боја текста за ознаке у скрипт баферу] +** тип: боја +** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_script.color.text_tags_selected]] *script.color.text_tags_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_script.color.text_version]] *script.color.text_version* +** опис: pass:none[боја текста за верзију у скрипт баферу] +** тип: боја +** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_script.color.text_version_loaded]] *script.color.text_version_loaded* +** опис: pass:none[боја текста за учитану верзију у скрипт баферу] +** тип: боја +** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are 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_script.color.text_version_loaded_selected]] *script.color.text_version_loaded_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_script.color.text_version_selected]] *script.color.text_version_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+` + +* [[option_script.look.columns]] *script.look.columns* +** опис: pass:none[формат колона које се приказују у скрипт баферу: следећи идентификатори колоне се замењују својим вредностима: %a=аутор, %d=опис, %D=датум додавања, %e=екстензија, %l=језик, %L=лиценца, %n=име са екстензијом, %N=име, %r=захтеви, %s=статус, %t=ознаке, %u=датум ажурирања, %v=верзија, %V=верзија учитане скрипте, %w=min_weechat, %W=max_weechat)] +** тип: стринг +** вредности: било који стринг +** подразумевана вредност: `+"%s %n %V %v %u | %d | %t"+` + +* [[option_script.look.diff_color]] *script.look.diff_color* +** опис: pass:none[бојење излаза diff] +** тип: логичка +** вредности: on, off +** подразумевана вредност: `+on+` + +* [[option_script.look.diff_command]] *script.look.diff_command* +** опис: pass:none[команда која се користи за приказ разлика између инсталиране скрипте и њене нове верзије у репозиторијуму („auto” = ауто детекција diff команде (git или diff), празна вредност = diff је искључен, други стринг = име команде, на пример „diff”)] +** тип: стринг +** вредности: било који стринг +** подразумевана вредност: `+"auto"+` + +* [[option_script.look.display_source]] *script.look.display_source* +** опис: pass:none[приказ изворног кода скрипте у баферу са детаљима скрипте (скрипта се преузима у привремени фајл када се приказују детаљи скрипте)] +** тип: логичка +** вредности: on, off +** подразумевана вредност: `+on+` + +* [[option_script.look.quiet_actions]] *script.look.quiet_actions* +** опис: pass:none[тихе акције у скрипт баферу: поруке се не приказују у основном баферу онда када се скрипте инсталирају/бришу/учитавају/уклањају из меморије (приказују се само грешке)] +** тип: логичка +** вредности: on, off +** подразумевана вредност: `+on+` + +* [[option_script.look.sort]] *script.look.sort* +** опис: pass:none[подразумевани тастери сортирања за скрипте: листа идентификатора раздвојених запетама: a=аутор, A=аутоучитана, d=датум додавања, e=екстензија, i=инсталирана, l=језик, n=име, o=застарела, p=популарност, r=извршава се, u=датум ажурирања; испред идентификатора може да се користи карактер „-” чиме се обрће редослед; на пример: „i,u”: најпре инсталиране скрипте, сортиране по датуму ажурирања] +** тип: стринг +** вредности: било који стринг +** подразумевана вредност: `+"i,p,n"+` + +* [[option_script.look.translate_description]] *script.look.translate_description* +** опис: pass:none[превод описа скрипти (ако је за ваш језик превод доступан, иначе се користи енглеска верзија)] +** тип: логичка +** вредности: on, off +** подразумевана вредност: `+on+` + +* [[option_script.look.use_keys]] *script.look.use_keys* +** опис: pass:none[употреба тастера alt+X у скрипт баферу за извршавање акција над скриптама (alt+i = инсталација, alt+r = брисање, ...); ако је искључено, дозвољен је само унос: i, r, ...] +** тип: логичка +** вредности: on, off +** подразумевана вредност: `+on+` + +* [[option_script.scripts.autoload]] *script.scripts.autoload* +** опис: pass:none[аутоучитавање инсталираних скрипти (прави линк у „autoload” директоријуму на скрипту у родитељ-директоријуму)] +** тип: логичка +** вредности: on, off +** подразумевана вредност: `+on+` + +* [[option_script.scripts.cache_expire]] *script.scripts.cache_expire* +** опис: pass:none[застарелост локалног кеша, у минутима (-1 = никада не застарева, 0 = увек застарева)] +** тип: целобројна +** вредности: -1 .. 525600 +** подразумевана вредност: `+1440+` + +* [[option_script.scripts.download_enabled]] *script.scripts.download_enabled* +** опис: pass:none[омогућавање преузимања фајлова из репозиторијума скрипти када се користи команда /script (листе скрипти и самих скрипти); листа скрипти се преузима са URL адресе наведене у опцији script.scripts.url; програм WeeChat ће понекад поново да преузме листу скрипти када употребите команду /script, чак и ако не инсталирате скрипту] +** тип: логичка +** вредности: on, off +** подразумевана вредност: `+off+` + +* [[option_script.scripts.download_timeout]] *script.scripts.download_timeout* +** опис: pass:none[тајмаут (у секундама) за преузимање скрипти и листе скрипти] +** тип: целобројна +** вредности: 1 .. 3600 +** подразумевана вредност: `+30+` + +* [[option_script.scripts.hold]] *script.scripts.hold* +** опис: pass:none[скрипте које се „задржавају”: листа скрипти раздвојених запетама које се никада неће ажурирати и које не могу да се обришу, на пример: „go.py,urlserver.py”] +** тип: стринг +** вредности: било који стринг +** подразумевана вредност: `+""+` + +* [[option_script.scripts.path]] *script.scripts.path* +** опис: pass:none[директоријум локалног кеша за скрипте (путања се израчунава, погледајте функцију string_eval_path_home у референтном приручнику API додатака)] +** тип: стринг +** вредности: било који стринг +** подразумевана вредност: `+"${weechat_cache_dir}/script"+` + +* [[option_script.scripts.url]] *script.scripts.url* +** опис: pass:none[URL фајла са листом скрипти] +** тип: стринг +** вредности: било који стринг +** подразумевана вредност: `+"https://weechat.org/files/plugins.xml.gz"+` +// end::script_options[] + // tag::sec_options[] * [[option_sec.crypt.cipher]] *sec.crypt.cipher* ** опис: pass:none[шифра која се користи за шифрирање података (број након алгоритма је величина кључа у битовима)] @@ -29,6 +2287,218 @@ ** подразумевана вредност: `+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 +** подразумевана вредност: `+lightred+` + +* [[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_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 +** подразумевана вредност: `+cyan+` + +* [[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 +** подразумевана вредност: `+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::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 +** подразумевана вредност: `+lightgreen+` + +* [[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_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 +** подразумевана вредност: `+lightblue+` + +* [[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 +** подразумевана вредност: `+lightcyan+` + +* [[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 +** подразумевана вредност: `+lightmagenta+` + +* [[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_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 +** подразумевана вредност: `+cyan+` + +* [[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 +** подразумевана вредност: `+green+` + +* [[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 +** подразумевана вредност: `+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::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[боја текста за „+” када се траке скролују] @@ -1381,544 +3851,6 @@ ** подразумевана вредност: `+""+` // 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[] - -// 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::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 -** подразумевана вредност: `+lightred+` - -* [[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 -** подразумевана вредност: `+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[] - -// 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 -** подразумевана вредност: `+lightgreen+` - -* [[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_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 -** подразумевана вредност: `+lightblue+` - -* [[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 -** подразумевана вредност: `+lightcyan+` - -* [[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 -** подразумевана вредност: `+lightmagenta+` - -* [[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_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 -** подразумевана вредност: `+cyan+` - -* [[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 -** подразумевана вредност: `+green+` - -* [[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 -** подразумевана вредност: `+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+` - -* [[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 -** подразумевана вредност: `+lightred+` - -* [[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_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 -** подразумевана вредност: `+cyan+` - -* [[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 -** подразумевана вредност: `+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},"+` - -* [[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+` - -* [[option_buflist.look.auto_scroll]] *buflist.look.auto_scroll* -** опис: pass:none[аутоматски скролује листу бафера тако да се текући бафер увек приказује (ово функционише само са траком на левој/десној позицији са „vertical” испуном); ова вредност је проценат линија које се приказује испред текућег бафера када се скролује (-1 = искључује скроловање); на пример, 50 значи да је текући бафер након скроловања у средини траке, 0 значи на врху траке, а 100 на дну] -** тип: целобројна -** вредности: -1 .. 100 -** подразумевана вредност: `+50+` - -* [[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_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+` - -* [[option_buflist.look.nick_prefix_empty]] *buflist.look.nick_prefix_empty* -** опис: pass:none[када је укључен префикс надимка, у случају да за бафер није дефинисан префикс надимка, приказује се размак] -** тип: логичка -** вредности: 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”; будите пажљиви, употреба више од једне ставке траке успорава приказ листе бафера] -** тип: целобројна -** вредности: 1 .. 3 -** подразумевана вредност: `+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 додатака)] -** тип: стринг -** вредности: било који стринг -** подразумевана вредност: `+"${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[број секунди након уношења последњег карактера: ако се достигне, статус куцања постаје „паузирано” и не шаље се више ниједан сигнал куцања] -** тип: целобројна -** вредности: 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::xfer_options[] * [[option_xfer.color.status_aborted]] *xfer.color.status_aborted* ** опис: pass:none[боја текста за „прекинут” статус] @@ -2106,1935 +4038,3 @@ ** вредности: 5 .. 2147483647 ** подразумевана вредност: `+300+` // end::xfer_options[] - -// tag::irc_options[] -* [[option_irc.color.input_nick]] *irc.color.input_nick* -** опис: pass:none[боја за надимак у траци уноса] -** тип: боја -** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_irc.color.item_channel_modes]] *irc.color.item_channel_modes* -** опис: pass:none[боја за режиме канала, у близини имена канала] -** тип: боја -** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are 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_irc.color.item_lag_counting]] *irc.color.item_lag_counting* -** опис: pass:none[боја за индикатор кашњења, када се броји (понг се не прима од сервера, кашњење се увећава)] -** тип: боја -** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are 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_irc.color.item_lag_finished]] *irc.color.item_lag_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 -** подразумевана вредност: `+yellow+` - -* [[option_irc.color.item_nick_modes]] *irc.color.item_nick_modes* -** опис: pass:none[боја за режиме надимка у ставки траке „input_prompt”] -** тип: боја -** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are 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_irc.color.item_tls_version_deprecated]] *irc.color.item_tls_version_deprecated* -** опис: pass:none[боја за застареле TLS верзије у ставки траке „tls_version”] -** тип: боја -** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_irc.color.item_tls_version_insecure]] *irc.color.item_tls_version_insecure* -** опис: pass:none[боја за небезбедне TLS верзије у ставки траке „tls_version”] -** тип: боја -** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_irc.color.item_tls_version_ok]] *irc.color.item_tls_version_ok* -** опис: pass:none[боја за више подржане TLS верзије у ставки траке „tls_version”] -** тип: боја -** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_irc.color.message_account]] *irc.color.message_account* -** опис: pass:none[боја за текст у account порукама] -** тип: боја -** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_irc.color.message_chghost]] *irc.color.message_chghost* -** опис: pass:none[боја за текст у „chghost” порукама] -** тип: боја -** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_irc.color.message_join]] *irc.color.message_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 -** подразумевана вредност: `+green+` - -* [[option_irc.color.message_kick]] *irc.color.message_kick* -** опис: pass:none[боја за текст у kick/kill порукама] -** тип: боја -** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_irc.color.message_quit]] *irc.color.message_quit* -** опис: pass:none[боја за текст у part/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 -** подразумевана вредност: `+red+` - -* [[option_irc.color.message_setname]] *irc.color.message_setname* -** опис: pass:none[боја за текст у „setname” порукама] -** тип: боја -** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_irc.color.mirc_remap]] *irc.color.mirc_remap* -** опис: pass:none[ремапирање mirc боја у порукама користећи хеш табелу: кључеви су „fg,bg” као цели бројеви између -1 (није наведена) и 15, вредности су WeeChat имена или бројеви боја (формат је: „1,-1:боја1;2,7:боја2”), пример: „1,-1:darkgray;1,2:white,blue” да се црна ремапира на „darkgray” и црна на плавој позадини у „white,blue”; подразумеване WeeChat боје за IRC кодове: 0=white, 1=black, 2=blue, 3=green, 4=lightred, 5=red, 6=magenta, 7=brown, 8=yellow, 9=lightgreen, 10=cyan, 11=lightcyan, 12=lightblue, 13=lightmagenta, 14=darkgray, 15=gray] -** тип: стринг -** вредности: било који стринг -** подразумевана вредност: `+"1,-1:darkgray"+` - -* [[option_irc.color.nick_prefixes]] *irc.color.nick_prefixes* -** опис: pass:none[боја за префиксе надимака употребом карактера режима (o=оп, h=полуоп, v=глас, ...), формат је: „o:боја1;h:боја2;v:боја3” (ако се режим не пронађе, програм WeeChat ће покушати са наредним режимима који су примењени са сервера („PREFIX”); за дефинисање подразумеване боје која се користи у случају да се у листи не пронађе ниједан режим може да се употреби специјални режим „*”)] -** тип: стринг -** вредности: било који стринг -** подразумевана вредност: `+"y:lightred;q:lightred;a:lightcyan;o:lightgreen;h:lightmagenta;v:yellow;*:lightblue"+` - -* [[option_irc.color.notice]] *irc.color.notice* -** опис: pass:none[боја за текст „Обавештење” у обавештењима] -** тип: боја -** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_irc.color.reason_kick]] *irc.color.reason_kick* -** опис: pass:none[боја за разлог у kick/kill порукама] -** тип: боја -** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are 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_irc.color.reason_quit]] *irc.color.reason_quit* -** опис: pass:none[боја за разлог у part/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+` - -* [[option_irc.color.topic_current]] *irc.color.topic_current* -** опис: pass:none[боја за тему текућег канала (када се приступа каналу или користи /topic)] -** тип: боја -** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are 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_irc.color.topic_new]] *irc.color.topic_new* -** опис: pass:none[боја за тему новог канала (када се измени тема)] -** тип: боја -** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_irc.color.topic_old]] *irc.color.topic_old* -** опис: pass:none[боја за стару тему канала (када се тема измени)] -** тип: боја -** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are 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_irc.look.buffer_open_before_autojoin]] *irc.look.buffer_open_before_autojoin* -** опис: pass:none[бафер канала се отвара пре него што се од сервера прими JOIN онда када је за сервер постављено аутоматско приступање каналима (опцијом сервера „autojoin”); ово је корисно да се приликом покретања увек отворе канали са истим бројем бафера] -** тип: логичка -** вредности: on, off -** подразумевана вредност: `+on+` - -* [[option_irc.look.buffer_open_before_join]] *irc.look.buffer_open_before_join* -** опис: pass:none[бафер канала се отвара пре него што се од сервера прими JOIN онда када се ручно приступа каналима на серверу (командом /join)] -** тип: логичка -** вредности: on, off -** подразумевана вредност: `+off+` - -* [[option_irc.look.buffer_switch_autojoin]] *irc.look.buffer_switch_autojoin* -** опис: pass:none[аутоматски прелазак на бафер канала када му се аутоматски приступи (опцијом сервера „autojoin”)] -** тип: логичка -** вредности: on, off -** подразумевана вредност: `+on+` - -* [[option_irc.look.buffer_switch_join]] *irc.look.buffer_switch_join* -** опис: pass:none[аутоматски прелазак на бафер канала онда када му се ручно приступа (командом /join)] -** тип: логичка -** вредности: on, off -** подразумевана вредност: `+on+` - -* [[option_irc.look.color_nicks_in_names]] *irc.look.color_nicks_in_names* -** опис: pass:none[у излазу команде /names се користе обојени надимци (или листа надимака која се приказује приликом приступања каналу)] -** тип: логичка -** вредности: on, off -** подразумевана вредност: `+off+` - -* [[option_irc.look.color_nicks_in_nicklist]] *irc.look.color_nicks_in_nicklist* -** опис: pass:none[у листи надимака се користе обојени надимци] -** тип: логичка -** вредности: on, off -** подразумевана вредност: `+off+` - -* [[option_irc.look.color_nicks_in_server_messages]] *irc.look.color_nicks_in_server_messages* -** опис: pass:none[у порукама са сервера се користе обојени надимци] -** тип: логичка -** вредности: on, off -** подразумевана вредност: `+on+` - -* [[option_irc.look.color_pv_nick_like_channel]] *irc.look.color_pv_nick_like_channel* -** опис: pass:none[иста боја надимка се користи и за канал и за приватни разговор] -** тип: логичка -** вредности: on, off -** подразумевана вредност: `+on+` - -* [[option_irc.look.ctcp_time_format]] *irc.look.ctcp_time_format* -** опис: pass:none[формат времена који се користи у одговору на CTCP поруку TIME (погледајте man strftime за спецификаторе датума/времена)] -** тип: стринг -** вредности: било који стринг -** подразумевана вредност: `+"%a, %d %b %Y %T %z"+` - -* [[option_irc.look.display_account_message]] *irc.look.display_account_message* -** опис: pass:none[приказ ACCOUNT порука које се примају када је укључена могућност account-notify] -** тип: логичка -** вредности: on, off -** подразумевана вредност: `+on+` - -* [[option_irc.look.display_away]] *irc.look.display_away* -** опис: pass:none[приказ поруке када се (де)маркира као одсутан (off: не приказује/шаље се ништа, local: приказује се локално, channel: слање акције каналу)] -** тип: целобројна -** вредности: off, local, channel -** подразумевана вредност: `+local+` - -* [[option_irc.look.display_ctcp_blocked]] *irc.look.display_ctcp_blocked* -** опис: pass:none[приказ CTCP поруке чак и ако је блокирана] -** тип: логичка -** вредности: on, off -** подразумевана вредност: `+on+` - -* [[option_irc.look.display_ctcp_reply]] *irc.look.display_ctcp_reply* -** опис: pass:none[приказ CTCP одговора који шаље програм WeeChat] -** тип: логичка -** вредности: on, off -** подразумевана вредност: `+on+` - -* [[option_irc.look.display_ctcp_unknown]] *irc.look.display_ctcp_unknown* -** опис: pass:none[приказ CTCP поруке чак и ако је непознат CTCP] -** тип: логичка -** вредности: on, off -** подразумевана вредност: `+on+` - -* [[option_irc.look.display_extended_join]] *irc.look.display_extended_join* -** опис: pass:none[приказ додатних информација у JOIN порукама: име налога и реално име (мора бити укључена могућност extended-join)] -** тип: логичка -** вредности: on, off -** подразумевана вредност: `+on+` - -* [[option_irc.look.display_host_join]] *irc.look.display_host_join* -** опис: pass:none[приказ хоста у порукама приступа] -** тип: логичка -** вредности: on, off -** подразумевана вредност: `+on+` - -* [[option_irc.look.display_host_join_local]] *irc.look.display_host_join_local* -** опис: pass:none[приказ хоста у порукама приступа из локалног клијента] -** тип: логичка -** вредности: on, off -** подразумевана вредност: `+on+` - -* [[option_irc.look.display_host_quit]] *irc.look.display_host_quit* -** опис: pass:none[приказ хоста у порукама напуштања/изласка] -** тип: логичка -** вредности: on, off -** подразумевана вредност: `+on+` - -* [[option_irc.look.display_join_message]] *irc.look.display_join_message* -** опис: pass:none[листа порука раздвојених запетама које треба да се прикажу након приступа каналу: 324 = режими канала, 329 = датум креирања канала, 332 = тема, 333 = надимак/име за тему, 353 = имена на каналу, 366 = укупан број имена] -** тип: стринг -** вредности: било који стринг -** подразумевана вредност: `+"329,332,333,366"+` - -* [[option_irc.look.display_old_topic]] *irc.look.display_old_topic* -** опис: pass:none[приказ старе теме када се измени тема] -** тип: логичка -** вредности: on, off -** подразумевана вредност: `+on+` - -* [[option_irc.look.display_pv_away_once]] *irc.look.display_pv_away_once* -** опис: pass:none[порука одсутности саговорника се приказује само једном у приватном разговору] -** тип: логичка -** вредности: on, off -** подразумевана вредност: `+on+` - -* [[option_irc.look.display_pv_back]] *irc.look.display_pv_back* -** опис: pass:none[приказ поруке када се саговорник врати у приватни разговор (након изласка са сервера)] -** тип: логичка -** вредности: on, off -** подразумевана вредност: `+on+` - -* [[option_irc.look.display_pv_nick_change]] *irc.look.display_pv_nick_change* -** опис: pass:none[приказ промене надимка у приватном разговору] -** тип: логичка -** вредности: on, off -** подразумевана вредност: `+on+` - -* [[option_irc.look.display_pv_warning_address]] *irc.look.display_pv_warning_address* -** опис: pass:none[приказ упозорења у приватном баферу ако се промени адреса удаљеног надимка; ова опција је подразумевано искључена јер сервери као што је bitlbee чине да се ово упозорење прикаже и онда када се то не очекује (адреса удаљеног надимка се током пријављивања мења више пута)] -** тип: логичка -** вредности: on, off -** подразумевана вредност: `+off+` - -* [[option_irc.look.highlight_channel]] *irc.look.highlight_channel* -** опис: pass:none[листа речи раздвојених запетама које треба да се истакну у баферима канала (не прави се разлика у величини слова, употребите „(?-i)” на почетку речи ако желите да се поштује разлика између малих и великих слова; специјалне променљиве $nick, $channel и $server се замењују својим вредностима), ове речи се додају у особину бафера „highlight_words” само онда када се бафер креира (не утичу на већ постојеће бафере), празан стринг искључује подразумевано истицање надимака, примери: „$nick”, „(?-i)$nick”] -** тип: стринг -** вредности: било који стринг -** подразумевана вредност: `+"$nick"+` - -* [[option_irc.look.highlight_pv]] *irc.look.highlight_pv* -** опис: pass:none[листа речи раздвојених запетама које треба да се истакну у приватним баферима (не прави се разлика у величини слова, употребите „(?-i)” на почетку речи ако желите да се поштује разлика између малих и великих слова; специјалне променљиве $nick, $channel и $server се замењују својим вредностима), ове речи се додају у особину бафера „highlight_words” само онда када се бафер креира (не утичу на већ постојеће бафере), празан стринг искључује подразумевано истицање надимака, примери: „$nick”, „(?-i)$nick”] -** тип: стринг -** вредности: било који стринг -** подразумевана вредност: `+"$nick"+` - -* [[option_irc.look.highlight_server]] *irc.look.highlight_server* -** опис: pass:none[листа речи раздвојених запетама које треба да се истакну у серверским баферима (не прави се разлика у величини слова, употребите „(?-i)” на почетку речи ако желите да се поштује разлика између малих и великих слова; специјалне променљиве $nick, $channel и $server се замењују својим вредностима), ове речи се додају у особину бафера „highlight_words” само онда када се бафер креира (не утичу на већ постојеће бафере), празан стринг искључује подразумевано истицање надимака, примери: „$nick”, „(?-i)$nick”] -** тип: стринг -** вредности: било који стринг -** подразумевана вредност: `+"$nick"+` - -* [[option_irc.look.highlight_tags_restrict]] *irc.look.highlight_tags_restrict* -** опис: pass:none[ограничава истицање на ове ознаке у irc баферима (како би се истицале само корисничке поруке, а не и поруке од сервера); ознаке морају да се раздвоје запетама и „+” може да се користи за логичко „и” између ознака; и ознакама је дозвољен џокер „*”; празна вредност дозвољава истицање било које ознаке] -** тип: стринг -** вредности: било који стринг -** подразумевана вредност: `+"irc_privmsg,irc_notice"+` - -* [[option_irc.look.item_channel_modes_hide_args]] *irc.look.item_channel_modes_hide_args* -** опис: pass:none[hide channel modes arguments if at least one of these modes is in channel modes („*” to always hide all arguments, empty value to never hide arguments); example: „kf” to hide arguments if „k” or „f” are in channel modes] -** тип: стринг -** вредности: било који стринг -** подразумевана вредност: `+"k"+` - -* [[option_irc.look.item_display_server]] *irc.look.item_display_server* -** опис: pass:none[име ставке траке у којој се приказује IRC сервер (за статусну линију)] -** тип: целобројна -** вредности: buffer_plugin, buffer_name -** подразумевана вредност: `+buffer_plugin+` - -* [[option_irc.look.item_nick_modes]] *irc.look.item_nick_modes* -** опис: pass:none[приказ режима надимка у ставки траке „input_prompt”] -** тип: логичка -** вредности: on, off -** подразумевана вредност: `+on+` - -* [[option_irc.look.item_nick_prefix]] *irc.look.item_nick_prefix* -** опис: pass:none[приказ префикса надимка у ставки траке „input_prompt”] -** тип: логичка -** вредности: on, off -** подразумевана вредност: `+on+` - -* [[option_irc.look.join_auto_add_chantype]] *irc.look.join_auto_add_chantype* -** опис: pass:none[тип канала се аутоматски додаје испред имена канала приликом команде /join ако име канала не почиње са важећим типом канала за сервер; на пример: „/join weechat” ће уствари да пошаље „/join #weechat”] -** тип: логичка -** вредности: on, off -** подразумевана вредност: `+off+` - -* [[option_irc.look.msgbuffer_fallback]] *irc.look.msgbuffer_fallback* -** опис: pass:none[подразумевани циљни бафер за msgbuffer опције када је циљ приватни и када се тај приватни бафер не пронађе] -** тип: целобројна -** вредности: current, server -** подразумевана вредност: `+current+` - -* [[option_irc.look.new_channel_position]] *irc.look.new_channel_position* -** опис: pass:none[форсира позицију новог канала у листи бафера (none = подразумевана позиција (требало би да буде последњи бафер), next = текући бафер + 1, near_server = након последњег канала/приватног сервера)] -** тип: целобројна -** вредности: none, next, near_server -** подразумевана вредност: `+none+` - -* [[option_irc.look.new_pv_position]] *irc.look.new_pv_position* -** опис: pass:none[форсира позицију новог приватног бафера у листи бафера (none = подразумевана позиција (требало би да буде последњи бафер), next = текући бафер + 1, near_server = након последњег канала/приватног сервера)] -** тип: целобројна -** вредности: none, next, near_server -** подразумевана вредност: `+none+` - -* [[option_irc.look.nick_completion_smart]] *irc.look.nick_completion_smart* -** опис: pass:none[паметно довршавање за надимке (најпре довршава оне који су последњи говорили): speakers = сви говорници (укључујући и истакнуте), speakers_highlights = само говорници који су истакнути] -** тип: целобројна -** вредности: off, speakers, speakers_highlights -** подразумевана вредност: `+speakers+` - -* [[option_irc.look.nick_mode]] *irc.look.nick_mode* -** опис: pass:none[приказ режима надимка (оп, право гласа, ...) испред надимка (none = никада, prefix = само у префиксу (подразумевано), action = само у акционим порукама, both = префикс + акционе поруке)] -** тип: целобројна -** вредности: none, prefix, action, both -** подразумевана вредност: `+prefix+` - -* [[option_irc.look.nick_mode_empty]] *irc.look.nick_mode_empty* -** опис: pass:none[приказ размака ако је режим за надимак укључен, али надимак нема режим (није оп, нема право гласа, ...)] -** тип: логичка -** вредности: on, off -** подразумевана вредност: `+off+` - -* [[option_irc.look.nicks_hide_password]] *irc.look.nicks_hide_password* -** опис: pass:none[листа надимака раздвојених запетама за које ће се лозинке скривати када се шаље порука, на пример, да се у поруци коју исписује „/msg nickserv identify password” сакрије лозинка, пример: „nickserv,nickbot”] -** тип: стринг -** вредности: било који стринг -** подразумевана вредност: `+"nickserv"+` - -* [[option_irc.look.notice_as_pv]] *irc.look.notice_as_pv* -** опис: pass:none[приказ обавештења као приватних порука (ако је ауто, користи се приватни бафер ако се пронађе)] -** тип: целобројна -** вредности: auto, never, always -** подразумевана вредност: `+auto+` - -* [[option_irc.look.notice_welcome_redirect]] *irc.look.notice_welcome_redirect* -** опис: pass:none[аутоматско преусмеравање поздравних обавештења канала у бафер канала; таква обавештења као циљ имају надимак, али име канала на почетку поруке обавештења, на пример ENTRYMSG обавештења која шаље Atheme IRC Services и која изгледају овако: „[#канал\] Добро дошли на овај канал...”] -** тип: логичка -** вредности: on, off -** подразумевана вредност: `+on+` - -* [[option_irc.look.notice_welcome_tags]] *irc.look.notice_welcome_tags* -** опис: pass:none[листа ознака раздвојених запетама које се користе у поздравним обавештењима преусмереним на канал, на пример: „notify_private”] -** тип: стринг -** вредности: било који стринг -** подразумевана вредност: `+""+` - -* [[option_irc.look.notify_tags_ison]] *irc.look.notify_tags_ison* -** опис: pass:none[листа ознака раздвојених запетама које се користе у порукама обавештења да се надимак повезао или прекинуо везу са сервером (резултат команде ison или monitor), на пример: „notify_message”, „notify_private” или „notify_highlight”] -** тип: стринг -** вредности: било који стринг -** подразумевана вредност: `+"notify_message"+` - -* [[option_irc.look.notify_tags_whois]] *irc.look.notify_tags_whois* -** опис: pass:none[листа ознака раздвојених запетама које се користе у порукама обавештења када се статус одсуства надимка промени (резултат команде whois), на пример: „notify_message”, „notify_private” или „notify_highlight”] -** тип: стринг -** вредности: било који стринг -** подразумевана вредност: `+"notify_message"+` - -* [[option_irc.look.part_closes_buffer]] *irc.look.part_closes_buffer* -** опис: pass:none[затварање бафера када се на каналу изврши /part] -** тип: логичка -** вредности: on, off -** подразумевана вредност: `+off+` - -* [[option_irc.look.pv_buffer]] *irc.look.pv_buffer* -** опис: pass:none[спајање приватних бафера] -** тип: целобројна -** вредности: independent, merge_by_server, merge_all -** подразумевана вредност: `+independent+` - -* [[option_irc.look.pv_tags]] *irc.look.pv_tags* -** опис: pass:none[листа ознака раздвојених запетама које се користе у приватним порукама, на пример: „notify_message”, „notify_private” или „notify_highlight”] -** тип: стринг -** вредности: било који стринг -** подразумевана вредност: `+"notify_private"+` - -* [[option_irc.look.raw_messages]] *irc.look.raw_messages* -** опис: pass:none[број сирових порука које ће се чувати у меморији онда када се бафер сирових података затвори (поруке ће се приказати онда када се отвори бафер сирових података)] -** тип: целобројна -** вредности: 0 .. 65535 -** подразумевана вредност: `+256+` - -* [[option_irc.look.server_buffer]] *irc.look.server_buffer* -** опис: pass:none[спајање серверских бафера; ова опција нема ефекта ако се распоред сачува и у конфликту је са овом вредности (погледајте /help layout)] -** тип: целобројна -** вредности: merge_with_core, merge_without_core, independent -** подразумевана вредност: `+merge_with_core+` - -* [[option_irc.look.smart_filter]] *irc.look.smart_filter* -** опис: pass:none[ако надимак не говори на каналу неколико минута, филтрирају се join/part/quit/nick поруке за њега (морате да креирате филтер на ознаку „irc_smart_filter”, погледајте /help filter)] -** тип: логичка -** вредности: on, off -** подразумевана вредност: `+on+` - -* [[option_irc.look.smart_filter_account]] *irc.look.smart_filter_account* -** опис: pass:none[укључивање паметног филтера за „account” поруке] -** тип: логичка -** вредности: on, off -** подразумевана вредност: `+on+` - -* [[option_irc.look.smart_filter_chghost]] *irc.look.smart_filter_chghost* -** опис: pass:none[укључивање паметног филтера за „chghost” поруке] -** тип: логичка -** вредности: on, off -** подразумевана вредност: `+on+` - -* [[option_irc.look.smart_filter_delay]] *irc.look.smart_filter_delay* -** опис: pass:none[време за почетак филтрирања join/part/quit порука (у минутима): ако надимак није говорио у последњих N минута, join/part/quit се филтирира] -** тип: целобројна -** вредности: 1 .. 10080 -** подразумевана вредност: `+5+` - -* [[option_irc.look.smart_filter_join]] *irc.look.smart_filter_join* -** опис: pass:none[укључивање паметног филтера за „join” поруке] -** тип: логичка -** вредности: on, off -** подразумевана вредност: `+on+` - -* [[option_irc.look.smart_filter_join_unmask]] *irc.look.smart_filter_join_unmask* -** опис: pass:none[време након кога се уклања маскирање join поруке која је филтирана ознаком „irc_smart_filter” (у минутима): ако је надимак приступио пре максимално N минута и онда каже нешто на каналу (порука, обавештење или ажурирање теме), са join се уклања маскирање, као и ако се надимак промени након овог приступања (0 = искључено: маскирање се никада не уклања са join)] -** тип: целобројна -** вредности: 0 .. 10080 -** подразумевана вредност: `+30+` - -* [[option_irc.look.smart_filter_mode]] *irc.look.smart_filter_mode* -** опис: pass:none[укључивање паметног филтера за „mode” поруке: „*” за филтрирање свих режима, „+” за филтрирање свих режима у префиксима сервера (на пример „ovh”), „xyz” за филтрирање само режима x/y/z, „-xyz” за филтрирање свих режима осим x/y/z; примери: „ovh”: филтрирају се режими o/v/h, „-bkl”: филтрирају се сви режими осим b/k/l] -** тип: стринг -** вредности: било који стринг -** подразумевана вредност: `+"+"+` - -* [[option_irc.look.smart_filter_nick]] *irc.look.smart_filter_nick* -** опис: pass:none[укључивање паметног филтера за „nick” поруке (измене надимка)] -** тип: логичка -** вредности: on, off -** подразумевана вредност: `+on+` - -* [[option_irc.look.smart_filter_quit]] *irc.look.smart_filter_quit* -** опис: pass:none[укључивање паметног филтера за „part” и „quit” поруке] -** тип: логичка -** вредности: on, off -** подразумевана вредност: `+on+` - -* [[option_irc.look.smart_filter_setname]] *irc.look.smart_filter_setname* -** опис: pass:none[укључивање паметног филтера за „setname” поруке] -** тип: логичка -** вредности: on, off -** подразумевана вредност: `+on+` - -* [[option_irc.look.temporary_servers]] *irc.look.temporary_servers* -** опис: pass:none[укључивање аутоматског додавања привремених сервера командом /connect] -** тип: логичка -** вредности: on, off -** подразумевана вредност: `+off+` - -* [[option_irc.look.topic_strip_colors]] *irc.look.topic_strip_colors* -** опис: pass:none[уклањање боја из теме (користи се само онда када се приказује наслов бафера)] -** тип: логичка -** вредности: on, off -** подразумевана вредност: `+off+` - -* [[option_irc.look.typing_status_nicks]] *irc.look.typing_status_nicks* -** опис: pass:none[приказивање надимака који куцају у ставци траке „typing” (опција typing.look.enabled_nicks мора бити укључена и на серверу мора бити укључена опција „message-tags”)] -** тип: логичка -** вредности: on, off -** подразумевана вредност: `+off+` - -* [[option_irc.look.typing_status_self]] *irc.look.typing_status_self* -** опис: pass:none[слање сопственог статуса куцања каналима тако да остали корисници виде када куцате поруку (опција typing.look.enabled_self мора бити укључена и на серверу мора бити укључена опција „message-tags”)] -** тип: логичка -** вредности: on, off -** подразумевана вредност: `+off+` - -* [[option_irc.network.autoreconnect_delay_growing]] *irc.network.autoreconnect_delay_growing* -** опис: pass:none[фактор увећавања паузе пре аутоматског поновног повезивања са сервером (1 = увек иста пауза, 2 = пауза*2 за сваки наредни покушај, итд.)] -** тип: целобројна -** вредности: 1 .. 100 -** подразумевана вредност: `+2+` - -* [[option_irc.network.autoreconnect_delay_max]] *irc.network.autoreconnect_delay_max* -** опис: pass:none[максимална пауза пре аутоматског поновног повезивања са сервером (у секундама, 0 = нема ограничења)] -** тип: целобројна -** вредности: 0 .. 604800 -** подразумевана вредност: `+600+` - -* [[option_irc.network.ban_mask_default]] *irc.network.ban_mask_default* -** опис: pass:none[подразумевана маска забране за команде /ban, /unban и /kickban; променљиве $nick, $user, $ident и $host се замењују својим вредностима (издвојеним из „надимак!корисник@хост”); $ident је исто што и $user ако $user не почиње са „~”, у супротном се поставља на „*”; ова подразумевана маска се користи само ако програм WeeChat зна на ком хосту је надимак] -** тип: стринг -** вредности: било који стринг -** подразумевана вредност: `+"*!$ident@$host"+` - -* [[option_irc.network.colors_receive]] *irc.network.colors_receive* -** опис: pass:none[када је искључено, кодови боја у долазним порукама се игноришу] -** тип: логичка -** вредности: on, off -** подразумевана вредност: `+on+` - -* [[option_irc.network.colors_send]] *irc.network.colors_send* -** опис: pass:none[кориснику се дозвољава да шаље боје специјалним кодовима (ctrl-c + a кôд и необавезна боја: b=подебљано, cxx=боја, cxx,yy=боја+позадина, i=курзив, o=боја се искључује/атрибути, r=обрнуто, u=подвучено)] -** тип: логичка -** вредности: on, off -** подразумевана вредност: `+on+` - -* [[option_irc.network.lag_check]] *irc.network.lag_check* -** опис: pass:none[интервал између две провере кашњења (у секундама, 0 = без провере)] -** тип: целобројна -** вредности: 0 .. 604800 -** подразумевана вредност: `+60+` - -* [[option_irc.network.lag_max]] *irc.network.lag_max* -** опис: pass:none[максимално кашњење (у секундама): ако се достигне ово кашњење, програм WeeChat ће сматрати да се одговор од сервера (понг) никада неће примити, па ће одустати од бројања кашњења (0 = никада се не одустаје)] -** тип: целобројна -** вредности: 0 .. 604800 -** подразумевана вредност: `+1800+` - -* [[option_irc.network.lag_min_show]] *irc.network.lag_min_show* -** опис: pass:none[минимално кашњење које се приказује (у милисекундама)] -** тип: целобројна -** вредности: 0 .. 86400000 -** подразумевана вредност: `+500+` - -* [[option_irc.network.lag_reconnect]] *irc.network.lag_reconnect* -** опис: pass:none[веза са сервером се поново успоставља ако је кашњење веће или једнако овој вредности, 0 = нема поновног успостављања везе); ова вредност мора бити мања или једнака од irc.network.lag_max] -** тип: целобројна -** вредности: 0 .. 604800 -** подразумевана вредност: `+300+` - -* [[option_irc.network.lag_refresh_interval]] *irc.network.lag_refresh_interval* -** опис: pass:none[интервал између сва освежавања ставке кашњења, када се кашњење повећава (у секундама)] -** тип: целобројна -** вредности: 1 .. 3600 -** подразумевана вредност: `+1+` - -* [[option_irc.network.notify_check_ison]] *irc.network.notify_check_ison* -** опис: pass:none[интервал између две провере има ли обавештења IRC командом „ison” (у минутима)] -** тип: целобројна -** вредности: 1 .. 10080 -** подразумевана вредност: `+1+` - -* [[option_irc.network.notify_check_whois]] *irc.network.notify_check_whois* -** опис: pass:none[интервал између две провере има ли обавештења IRC командом „whois” (у минутима)] -** тип: целобројна -** вредности: 1 .. 10080 -** подразумевана вредност: `+5+` - -* [[option_irc.network.sasl_fail_unavailable]] *irc.network.sasl_fail_unavailable* -** опис: pass:none[изазива неуспех SASL аутентификације када се SASL захтева, али није доступан на серверу; када је ова опција укључена, има ефекат само ако је за сервер вредност опције „sasl_fail” постављена на „reconnect” или „disconnect”] -** тип: логичка -** вредности: on, off -** подразумевана вредност: `+on+` - -* [[option_irc.network.send_unknown_commands]] *irc.network.send_unknown_commands* -** опис: pass:none[слање непознатих команди серверу] -** тип: логичка -** вредности: on, off -** подразумевана вредност: `+off+` - -* [[option_irc.network.whois_double_nick]] *irc.network.whois_double_nick* -** опис: pass:none[дуплирање надимка у команди /whois command (ако је наведен само један надимак), како би се у одговору добило време неактивности; на пример: „/whois nick” ће послати „whois nick nick”] -** тип: логичка -** вредности: on, off -** подразумевана вредност: `+off+` - -* [[option_irc.server_default.addresses]] *irc.server_default.addresses* -** опис: pass:none[листа имехоста/порт или IP/порт за сервер (раздвојених запетама) (напомена: садржај се израчунава, погледајте /help eval; опције сервера се израчунавају са ${irc_server.xxx} и ${server} се замењује са именом сервера)] -** тип: стринг -** вредности: било који стринг -** подразумевана вредност: `+""+` - -* [[option_irc.server_default.anti_flood_prio_high]] *irc.server_default.anti_flood_prio_high* -** опис: pass:none[спречавање засипања за ред са високим приоритетом: број секунди између две корисникове поруке које се шаљу IRC серверу (0 = нема спречавања засипања)] -** тип: целобројна -** вредности: 0 .. 60 -** подразумевана вредност: `+2+` - -* [[option_irc.server_default.anti_flood_prio_low]] *irc.server_default.anti_flood_prio_low* -** опис: pass:none[спречавање засипања за ред са ниским приоритетом: број секунди између две поруке које се шаљу IRC серверу (поруке као што су аутоматски CTCP одговори) (0 = нема спречавања засипања)] -** тип: целобројна -** вредности: 0 .. 60 -** подразумевана вредност: `+2+` - -* [[option_irc.server_default.autoconnect]] *irc.server_default.autoconnect* -** опис: pass:none[аутоматско повезивање са сервером током покретања се програма WeeChat] -** тип: логичка -** вредности: on, off -** подразумевана вредност: `+off+` - -* [[option_irc.server_default.autojoin]] *irc.server_default.autojoin* -** опис: pass:none[листа канала раздвојених запетама којима треба да се приступи након успостављања везе са сервером (и након извршавања команде + додатно време у случају да су постављени); канали којима је неопходан кључ за приступ морају да се наведу на почетку листе, и сви кључеви морају да се задају након канала (раздвојени запетом или размаком) (пример: „#channel1,#channel2,#channel3 key1,key2” где су #channel1 и #channel2 заштићени са key1 и key2) (напомена: садржај се израчунава, погледајте /help eval; опције сервера се израчунавају са ${irc_server.xxx} и ${server} се замењује са именом сервера)] -** тип: стринг -** вредности: било који стринг -** подразумевана вредност: `+""+` - -* [[option_irc.server_default.autojoin_dynamic]] *irc.server_default.autojoin_dynamic* -** опис: pass:none[аутоматско постављање опције „autojoin” према каналима којима ручно приступате и које науштате командама /join и /part] -** тип: логичка -** вредности: on, off -** подразумевана вредност: `+off+` - -* [[option_irc.server_default.autoreconnect]] *irc.server_default.autoreconnect* -** опис: pass:none[аутоматско поновно повезивање са сервером када се веза прекине] -** тип: логичка -** вредности: on, off -** подразумевана вредност: `+on+` - -* [[option_irc.server_default.autoreconnect_delay]] *irc.server_default.autoreconnect_delay* -** опис: pass:none[време (у секундама) пре него што се покуша поновно повезивање са сервером] -** тип: целобројна -** вредности: 1 .. 65535 -** подразумевана вредност: `+10+` - -* [[option_irc.server_default.autorejoin]] *irc.server_default.autorejoin* -** опис: pass:none[аутоматско поновно приступање каналу након избацивања; можете да дефинишете бафер локалну на каналу ако желите да премостите ову вредност (име променљиве: „autorejoin”, вредност: „on” или „off”)] -** тип: логичка -** вредности: on, off -** подразумевана вредност: `+off+` - -* [[option_irc.server_default.autorejoin_delay]] *irc.server_default.autorejoin_delay* -** опис: pass:none[време (у секундама) пре него што се обави аутоматско поновно приступање каналу (након избацивања)] -** тип: целобројна -** вредности: 0 .. 86400 -** подразумевана вредност: `+30+` - -* [[option_irc.server_default.away_check]] *irc.server_default.away_check* -** опис: pass:none[интервал између две провере на одсутност (у минутима, 0 = провера се не врши)] -** тип: целобројна -** вредности: 0 .. 10080 -** подразумевана вредност: `+0+` - -* [[option_irc.server_default.away_check_max_nicks]] *irc.server_default.away_check_max_nicks* -** опис: pass:none[на каналима са великим бројем надимака се не врши провера одсутности надимка (0 = неограничено)] -** тип: целобројна -** вредности: 0 .. 1000000 -** подразумевана вредност: `+25+` - -* [[option_irc.server_default.capabilities]] *irc.server_default.capabilities* -** опис: pass:none[листа могућности клијента (client capabilities) раздвојених запетама које треба да се укључе за сервер у случају да су доступне (погледајте /help cap за листу могућности које подржава програм WeeChat); дозвољен је џокер „*”; могућност која почиње са „!” није укључена (пример: „*,!account-*,!extended-join”)] -** тип: стринг -** вредности: било који стринг -** подразумевана вредност: `+"*"+` - -* [[option_irc.server_default.charset_message]] *irc.server_default.charset_message* -** опис: pass:none[део IRC поруке (примљене или послате) који се декодира/кодира у циљни скуп карактера; порука = комплетна IRC порука (подразумевано), канал = почевши само од имена канала (ако се пронађе, ако не онда се узима текст), текст = почевши само од текста (требало би да пробате ову вредност ако имате проблеме са кодирањем имена канала)] -** тип: целобројна -** вредности: message, channel, text -** подразумевана вредност: `+message+` - -* [[option_irc.server_default.command]] *irc.server_default.command* -** опис: pass:none[команд(а/е) која се извршава након успостављања везе са сервером и пре ауто-приступа каналима (више команди може да се раздвоји са „;”, користите „\;” за тачка запету, специјалне променљиве $nick, $channel и $server се замењују са својим вредностима) (напомена: команде се израчунавају, погледајте /help eval; опције сервера се израчунавају са ${irc_server.xxx} и ${server} се замењује са именом сервера)] -** тип: стринг -** вредности: било који стринг -** подразумевана вредност: `+""+` - -* [[option_irc.server_default.command_delay]] *irc.server_default.command_delay* -** опис: pass:none[време (у секундама) након извршавања команде и пре ауто-приступа каналима (пример: давање мало времена за аутентификацију пре него што се приступи каналима)] -** тип: целобројна -** вредности: 0 .. 3600 -** подразумевана вредност: `+0+` - -* [[option_irc.server_default.connection_timeout]] *irc.server_default.connection_timeout* -** опис: pass:none[време (у секундама) између TCP повезивања са сервером и пријема поруке 001, ако се достигне овај тајмаут пре него што се прими порука 001, програм WeeChat ће прекинути везу са сервером] -** тип: целобројна -** вредности: 1 .. 3600 -** подразумевана вредност: `+60+` - -* [[option_irc.server_default.default_chantypes]] *irc.server_default.default_chantypes* -** опис: pass:none[префикси типа канала који треба да се користе у случају да их сервер не шаље у поруци 005 (подразумевана вредност је „#&”)] -** тип: стринг -** вредности: било који стринг -** подразумевана вредност: `+"#&"+` - -* [[option_irc.server_default.ipv6]] *irc.server_default.ipv6* -** опис: pass:none[за комуникацију са сервером се користи IPv6 протокол (покушава се IPv6 па се прелази на IPv4 ако не ради); ако је искључено, користи се само IPv4] -** тип: логичка -** вредности: on, off -** подразумевана вредност: `+on+` - -* [[option_irc.server_default.local_hostname]] *irc.server_default.local_hostname* -** опис: pass:none[прилагођено хост/IP локално име за сервер (није обавезно, ако је празно користи се име локалног хоста)] -** тип: стринг -** вредности: било који стринг -** подразумевана вредност: `+""+` - -* [[option_irc.server_default.msg_kick]] *irc.server_default.msg_kick* -** опис: pass:none[подразумевана порука избацивања која се користи са командама „/kick” и „/kickban” (напомена: садржај се израчунава, погледајте /help eval; специјалне променљиве ${nick}, (сопствени надимак), ${target} (циљни надимак), ${channel} и ${server} се замењују својим вредностима)] -** тип: стринг -** вредности: било који стринг -** подразумевана вредност: `+""+` - -* [[option_irc.server_default.msg_part]] *irc.server_default.msg_part* -** опис: pass:none[подразумевана поздравна порука (приликом напуштања канала) (напомена: садржај се израчунава, погледајте /help eval; специјалне променљиве ${nick}, ${channel} и ${server} се замењују својим вредностима; „%v” се замењује верзијом програма WeeChat ако у стрингу не постоји ниједно ${...})] -** тип: стринг -** вредности: било који стринг -** подразумевана вредност: `+"WeeChat ${info:version}"+` - -* [[option_irc.server_default.msg_quit]] *irc.server_default.msg_quit* -** опис: pass:none[подразумевана порука изласка (прекидања везе са сервером) (напомена: садржај се израчунава, погледајте /help eval; специјалне променљиве ${nick}, ${channel} и ${server} се замењују својим вредностима; „%v” се замењује верзијом програма WeeChat ако у стрингу не постоји ниједно ${...})] -** тип: стринг -** вредности: било који стринг -** подразумевана вредност: `+"WeeChat ${info:version}"+` - -* [[option_irc.server_default.nicks]] *irc.server_default.nicks* -** опис: pass:none[надимци који треба да се користе на серверу (раздвојени запетом) (напомена: садржај се израчунава, погледајте /help eval; опције сервера се израчунавају са ${irc_server.xxx} и ${server} се замењује са именом сервера)] -** тип: стринг -** вредности: било који стринг -** подразумевана вредност: `+""+` - -* [[option_irc.server_default.nicks_alternate]] *irc.server_default.nicks_alternate* -** опис: pass:none[узима се алтернативни надимак када су сви наведени надимци већ заузети на серверу: додаје неколико „_” све док надимак не буде дужине 9, па онда замењује последњи карактер (или два последња карактера) бројем од 1 до 99, све док се не пронађе надимак који је на серверу слободан] -** тип: логичка -** вредности: on, off -** подразумевана вредност: `+on+` - -* [[option_irc.server_default.notify]] *irc.server_default.notify* -** опис: pass:none[листа обавештавања за сервер (не би требало да мењате ову опцију, употребите команду /notify)] -** тип: стринг -** вредности: било који стринг -** подразумевана вредност: `+""+` - -* [[option_irc.server_default.password]] *irc.server_default.password* -** опис: pass:none[лозинка за сервер (напомена: садржај се израчунава, погледајте /help eval; опције сервера се израчунавају са ${irc_server.xxx} и ${server} се замењује са именом сервера)] -** тип: стринг -** вредности: било који стринг -** подразумевана вредност: `+""+` - -* [[option_irc.server_default.proxy]] *irc.server_default.proxy* -** опис: pass:none[име проксија који се користи за овај сервер (необавезно, прокси мора бити дефинисан командом /proxy)] -** тип: стринг -** вредности: било који стринг -** подразумевана вредност: `+""+` - -* [[option_irc.server_default.realname]] *irc.server_default.realname* -** опис: pass:none[реално име које че се користити на серверу (напомена: садржај се израчунава, погледајте /help eval; опције сервера се израчунавају са ${irc_server.xxx} и ${server} се замењује са именом сервера)] -** тип: стринг -** вредности: било који стринг -** подразумевана вредност: `+""+` - -* [[option_irc.server_default.sasl_fail]] *irc.server_default.sasl_fail* -** опис: pass:none[радња која се преузима у случају да SASL аутентификација не успе: „continue” да се игнорише проблем аутентификације, „reconnect” да се закаже поновно повезивање са сервером, „disconnect” да се прекине веза са сервером (погледајте и опцију irc.network.sasl_fail_unavailable)] -** тип: целобројна -** вредности: continue, reconnect, disconnect -** подразумевана вредност: `+reconnect+` - -* [[option_irc.server_default.sasl_key]] *irc.server_default.sasl_key* -** опис: pass:none[фајл са ECC приватним кључем за механизам „ecdsa-nist256p-challenge” (путања се израчунава, погледајте функцију string_eval_path_home у референтном приручнику API додатака)] -** тип: стринг -** вредности: било који стринг -** подразумевана вредност: `+""+` - -* [[option_irc.server_default.sasl_mechanism]] *irc.server_default.sasl_mechanism* -** опис: pass:none[механизам SASL аутентификације: „plain” за просту текст лозинку, „scram-sha-1” за SCRAM аутентификацију са SHA-1 digest алгоритмом, „scram-sha-256” за SCRAM аутентификацију са SHA-256 digest алгоритмом, „scram-sha-512” за SCRAM аутентификацију са SHA-512 digest алгоритмом, „ecdsa-nist256p-challenge” за аутентификацију са изазовом базираним на кључу, „external” за аутентификацију употребом SSL сертификата са клијентске стране] -** тип: целобројна -** вредности: plain, scram-sha-1, scram-sha-256, scram-sha-512, ecdsa-nist256p-challenge, external -** подразумевана вредност: `+plain+` - -* [[option_irc.server_default.sasl_password]] *irc.server_default.sasl_password* -** опис: pass:none[лозинка за SASL аутентификацију; ова опција се не користи за механизме „ecdsa-nist256p-challenge” и „external” (напомена: садржај се израчунава, погледајте /help eval; опције сервера се израчунавају са ${irc_server.xxx} и ${server} се замењује са именом сервера)] -** тип: стринг -** вредности: било који стринг -** подразумевана вредност: `+""+` - -* [[option_irc.server_default.sasl_timeout]] *irc.server_default.sasl_timeout* -** опис: pass:none[тајмаут (у секундама) пре него што се одустане од SASL аутентификације] -** тип: целобројна -** вредности: 1 .. 3600 -** подразумевана вредност: `+15+` - -* [[option_irc.server_default.sasl_username]] *irc.server_default.sasl_username* -** опис: pass:none[корисничко име за SASL аутентификацију; ова опција се не користи за механизам „external” (напомена: садржај се израчунава, погледајте /help eval; опције сервера се израчунавају са ${irc_server.xxx} и ${server} се замењује са именом сервера)] -** тип: стринг -** вредности: било који стринг -** подразумевана вредност: `+""+` - -* [[option_irc.server_default.split_msg_max_length]] *irc.server_default.split_msg_max_length* -** опис: pass:none[одлазне IRC поруке се деле тако да стају у овај број карактера; подразумевана вредност је 512, ово је безбедна и препоручена вредност; вредност 0 искључује поделу (не препоручује се, осим ако знате шта радите); дозвољене вредности су 0 или било који цео број између 128 и 4096; ова опција би требало да се промени само за нестандардне IRC сервере, као што су на пример гејтвеји као bitlbee] -** тип: целобројна -** вредности: 0 .. 4096 -** подразумевана вредност: `+512+` - -* [[option_irc.server_default.ssl]] *irc.server_default.ssl* -** опис: pass:none[за комуникацију са сервером се користи SSL] -** тип: логичка -** вредности: on, off -** подразумевана вредност: `+off+` - -* [[option_irc.server_default.ssl_cert]] *irc.server_default.ssl_cert* -** опис: pass:none[Фајл SSL сертификата који се користи за аутоматску идентификацију вашег надимка (путања се израчунава, функцију погледајте string_eval_path_home у референтном приручнику API додатака)] -** тип: стринг -** вредности: било који стринг -** подразумевана вредност: `+""+` - -* [[option_irc.server_default.ssl_dhkey_size]] *irc.server_default.ssl_dhkey_size* -** опис: pass:none[величина кључа који се користи током Дифи-Хелман размене кључа] -** тип: целобројна -** вредности: 0 .. 2147483647 -** подразумевана вредност: `+2048+` - -* [[option_irc.server_default.ssl_fingerprint]] *irc.server_default.ssl_fingerprint* -** опис: pass:none[отисак сертификата којем се верује и који сервер прихвата; дозвољене су само хексадецималне цифре (0-9, a-f): 128 карактера за SHA-512, 64 карактера за SHA-256, 40 карактера за SHA-1 (није безбедно, не препоручује се); више отисака може да се раздвоји запетама; ако је ова опција постављена, остале провере над сертификатом се НЕ врше (опција „ssl_verify”) (напомена: садржај се израчунава, погледајте /help eval; опције сервера се израчунавају са ${irc_server.xxx} и ${server} се замењује са именом сервера)] -** тип: стринг -** вредности: било који стринг -** подразумевана вредност: `+""+` - -* [[option_irc.server_default.ssl_password]] *irc.server_default.ssl_password* -** опис: pass:none[лозинка за приватни кључ SSL сертификата; користи се ако ако је gnutls верзија >= 3.1.0 (напомена: садржај се израчунава, погледајте /help eval; опције сервера се израчунавају са ${irc_server.xxx} и ${server} се замењује са именом сервера)] -** тип: стринг -** вредности: било који стринг -** подразумевана вредност: `+""+` - -* [[option_irc.server_default.ssl_priorities]] *irc.server_default.ssl_priorities* -** опис: pass:none[стринг са приоритетима за gnutls (за синтаксу погледајте документацију функције gnutls_priority_init у gnutls упутству, уобичајени стрингови су: „PERFORMANCE”, „NORMAL”, „SECURE128”, „SECURE256”, „EXPORT”, „NONE”)] -** тип: стринг -** вредности: било који стринг -** подразумевана вредност: `+"NORMAL:-VERS-SSL3.0"+` - -* [[option_irc.server_default.ssl_verify]] *irc.server_default.ssl_verify* -** опис: pass:none[провера да ли се SSL конекцији потпуно верује] -** тип: логичка -** вредности: on, off -** подразумевана вредност: `+on+` - -* [[option_irc.server_default.usermode]] *irc.server_default.usermode* -** опис: pass:none[кориснички режим(и) који треба да се поставе након повезивања са сервером и пре извршавања команде и ауто-приступа каналима; примери: „+R” (да се постави режим „R”), „+R-i” (да се постави режим „R” и уклони „i”); погледајте /help mode за комплетну синтаксу режима (напомена: садржај се израчунава, погледајте /help eval; опције сервера се израчунавају са ${irc_server.xxx} и ${server} се замењује са именом сервера)] -** тип: стринг -** вредности: било који стринг -** подразумевана вредност: `+""+` - -* [[option_irc.server_default.username]] *irc.server_default.username* -** опис: pass:none[корисничко име које се користи на серверу (напомена: садржај се израчунава, погледајте /help eval; опције сервера се израчунавају са ${irc_server.xxx} и ${server} се замењује са именом сервера)] -** тип: стринг -** вредности: било који стринг -** подразумевана вредност: `+""+` -// end::irc_options[] - -// tag::relay_options[] -* [[option_relay.color.client]] *relay.color.client* -** опис: pass:none[боја текста за опис клијента] -** тип: боја -** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_relay.color.status_active]] *relay.color.status_active* -** опис: pass:none[боја текста за статус „connected”] -** тип: боја -** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_relay.color.status_auth_failed]] *relay.color.status_auth_failed* -** опис: pass:none[боја текста за статус „authentication failed”] -** тип: боја -** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_relay.color.status_connecting]] *relay.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 -** подразумевана вредност: `+white+` - -* [[option_relay.color.status_disconnected]] *relay.color.status_disconnected* -** опис: pass:none[боја текста за статус „disconnected”] -** тип: боја -** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_relay.color.status_waiting_auth]] *relay.color.status_waiting_auth* -** опис: pass:none[боја текста за статус „waiting authentication”] -** тип: боја -** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_relay.color.text]] *relay.color.text* -** опис: pass:none[боја текста у релеј баферу] -** тип: боја -** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are 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_relay.color.text_bg]] *relay.color.text_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_relay.color.text_selected]] *relay.color.text_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_relay.irc.backlog_max_minutes]] *relay.irc.backlog_max_minutes* -** опис: pass:none[максимални број минута у старијим линијама по IRC каналу (0 = без ограничења, примери: 1440 = један дан, 10080 = једна недеља, 43200 = један месец, 525600 = једна година)] -** тип: целобројна -** вредности: 0 .. 2147483647 -** подразумевана вредност: `+0+` - -* [[option_relay.irc.backlog_max_number]] *relay.irc.backlog_max_number* -** опис: pass:none[максимални број старијих линија по IRC каналу (0 = без ограничења)] -** тип: целобројна -** вредности: 0 .. 2147483647 -** подразумевана вредност: `+1024+` - -* [[option_relay.irc.backlog_since_last_disconnect]] *relay.irc.backlog_since_last_disconnect* -** опис: pass:none[старије линије се приказују од тренутка последњег прекида везе са клијентом] -** тип: логичка -** вредности: on, off -** подразумевана вредност: `+on+` - -* [[option_relay.irc.backlog_since_last_message]] *relay.irc.backlog_since_last_message* -** опис: pass:none[старије линије се приказују од ваше последње поруке] -** тип: логичка -** вредности: on, off -** подразумевана вредност: `+off+` - -* [[option_relay.irc.backlog_tags]] *relay.irc.backlog_tags* -** опис: pass:none[листа ознака порука раздвојених запетама које се приказују у старијим линијама по IRC каналу (подржане су следеће ознаке: „irc_join”, „irc_part”, „irc_quit”, „irc_nick”, „irc_privmsg”), „*” = све подржане ознаке] -** тип: стринг -** вредности: било који стринг -** подразумевана вредност: `+"irc_privmsg"+` - -* [[option_relay.irc.backlog_time_format]] *relay.irc.backlog_time_format* -** опис: pass:none[формат времена у линијама старијих порука (погледајте man strftime за формат) (не користи се ако је клијент укључио „server-time” могућност сервера, јер се време шаље као irc ознака); празан стринг = време је искључено у линијама старијих порука] -** тип: стринг -** вредности: било који стринг -** подразумевана вредност: `+"[%H:%M] "+` - -* [[option_relay.look.auto_open_buffer]] *relay.look.auto_open_buffer* -** опис: pass:none[ауто отварање релеј бафера када се повезује нови корисник] -** тип: логичка -** вредности: on, off -** подразумевана вредност: `+on+` - -* [[option_relay.look.raw_messages]] *relay.look.raw_messages* -** опис: pass:none[број сирових порука које ће се чувати у меморији онда када се бафер сирових података затвори (поруке ће се приказати онда када се отвори бафер сирових података)] -** тип: целобројна -** вредности: 0 .. 65535 -** подразумевана вредност: `+256+` - -* [[option_relay.network.allow_empty_password]] *relay.network.allow_empty_password* -** опис: pass:none[у релеју се дозвољава празна лозинка (требало би да се укључи само током тестирања или у локалној мрежи)] -** тип: логичка -** вредности: on, off -** подразумевана вредност: `+off+` - -* [[option_relay.network.allowed_ips]] *relay.network.allowed_ips* -** опис: pass:none[POSIX проширени регуларни израз са IP адресама којима је дозвољено да користе релеј (без разликовања величине слова, употребите „(?-i)” на почетку ако желите да се разликују мала и велика слова), пример: „^(123\.45\.67\.89|192\.160\..*)$”] -** тип: стринг -** вредности: било који стринг -** подразумевана вредност: `+""+` - -* [[option_relay.network.auth_timeout]] *relay.network.auth_timeout* -** опис: pass:none[тајмаут (у секундама) за аутентификацију клијента: веза се прекида ако се клијент не аутентификује након протека овог времена и статус клијента се поставља на „аутентификација није успела” (0 = чека се довека)] -** тип: целобројна -** вредности: 0 .. 2147483647 -** подразумевана вредност: `+60+` - -* [[option_relay.network.bind_address]] *relay.network.bind_address* -** опис: pass:none[адреса на коју се везује (ако је празно, веза може да се успостави на свим интерфејсима, употребите „127.0.0.1” ако желите да дозволите успостављање везе само са локалне машине)] -** тип: стринг -** вредности: било који стринг -** подразумевана вредност: `+""+` - -* [[option_relay.network.clients_purge_delay]] *relay.network.clients_purge_delay* -** опис: pass:none[време за чишћење клијената који су прекинули везу (у минутима, 0 = клијенти се чисте тренутно, -1 = никада се не чисти)] -** тип: целобројна -** вредности: -1 .. 43200 -** подразумевана вредност: `+0+` - -* [[option_relay.network.compression]] *relay.network.compression* -** опис: pass:none[компресија порука које се клијентима шаљу „weechat” протоколом: 0 = без компресије, 1 = ниска компресија / брзо ... 100 = најбоља компресија / споро; вредност је проценат који се конвертује у 1-9 за zlib и 1-19 за zstd; препоручује се подразумевана вредност јер нуди добар компромис између компресије и брзине] -** тип: целобројна -** вредности: 0 .. 100 -** подразумевана вредност: `+20+` - -* [[option_relay.network.ipv6]] *relay.network.ipv6* -** опис: pass:none[подразумевано се слуша на IPv6 сокету (уз IPv4 који је подразумеван); протоколи IPv4 и IPv6 могу да се форсирају (појединачно или заједно) у имену протокола (погледајте /help relay)] -** тип: логичка -** вредности: on, off -** подразумевана вредност: `+on+` - -* [[option_relay.network.max_clients]] *relay.network.max_clients* -** опис: pass:none[максимални број клијената који се повезују на порт (0 = без ограничења)] -** тип: целобројна -** вредности: 0 .. 2147483647 -** подразумевана вредност: `+5+` - -* [[option_relay.network.nonce_size]] *relay.network.nonce_size* -** опис: pass:none[величина нонса (у бајтовима), који се генерише када се клијент повеже; клијент мора да користи овај нонс, надовезан на клијентски нонс и лозинку када хешира лозинку у „init” команди weechat протокола] -** тип: целобројна -** вредности: 8 .. 128 -** подразумевана вредност: `+16+` - -* [[option_relay.network.password]] *relay.network.password* -** опис: pass:none[лозинка која се захтева од клијената за приступ овом релеју (празна вредност значи да лозинка није потребна, погледајте опцију relay.network.allow_empty_password) (напомена: садржај се израчунава, погледајте /help eval)] -** тип: стринг -** вредности: било који стринг -** подразумевана вредност: `+""+` - -* [[option_relay.network.password_hash_algo]] *relay.network.password_hash_algo* -** опис: pass:none[листа хеш алгоритама раздвојених запетама који се користе за аутентификацију лозинке у weechat протоколу, могу бити: „plain” (лозинка је чисти текст, не хешира се), „sha256”, „sha512”, „pbkdf2+sha256”, „pbkdf2+sha512”), „*” значи сви алгоритми, име које почиње са „!” је негативна вредност којим се спречава употреба тог алгоритма, у именима је дозвољена употреба џокера „*” (примери: „*”, „pbkdf2*”, „*,!plain”)] -** тип: стринг -** вредности: било који стринг -** подразумевана вредност: `+"*"+` - -* [[option_relay.network.password_hash_iterations]] *relay.network.password_hash_iterations* -** опис: pass:none[број итерација који се захтева од клијента у weechat протоколу када се за аутентификацију користи лозинка хеширана PBKDF2 алгоритмом ; више итерација је боље у смислу безбедности, али је спорије за израчунавање; ако је ваш CPU спор, овај број не би требало да буде сувише велики] -** тип: целобројна -** вредности: 1 .. 1000000 -** подразумевана вредност: `+100000+` - -* [[option_relay.network.ssl_cert_key]] *relay.network.ssl_cert_key* -** опис: pass:none[фајл са SSL сертификатом и приватним кључем (за опслуживање клијената преко SSL) (путања се израчунава, погледајте функцију string_eval_path_home у референтном приручнику API додатака)] -** тип: стринг -** вредности: било који стринг -** подразумевана вредност: `+"${weechat_config_dir}/ssl/relay.pem"+` - -* [[option_relay.network.ssl_priorities]] *relay.network.ssl_priorities* -** опис: pass:none[стринг са приоритетима за gnutls (за синтаксу погледајте документацију функције gnutls_priority_init у gnutls упутству, уобичајени стрингови су: „PERFORMANCE”, „NORMAL”, „SECURE128”, „SECURE256”, „EXPORT”, „NONE”)] -** тип: стринг -** вредности: било који стринг -** подразумевана вредност: `+"NORMAL:-VERS-SSL3.0"+` - -* [[option_relay.network.totp_secret]] *relay.network.totp_secret* -** опис: pass:none[тајна за генерисање Time-based One-Time Password (TOTP), кодирана у base32 (само слова и цифре од 2 до 7); у weechat протоколу се, уз лозинку, користи као други фактор, не сме бити празна (празна вредност значи да се TOTP не захтева) (напомена: садржај се израчунава, погледајте /help eval)] -** тип: стринг -** вредности: било који стринг -** подразумевана вредност: `+""+` - -* [[option_relay.network.totp_window]] *relay.network.totp_window* -** опис: pass:none[Број Time-based One-Time Passwords лозинки које се прихватају пре и након текуће: 0 = прихвата се само текућа лозинка, 1 = прихвата се једна лозинка пре, текућа и једна након, 2 = прихватају се две лозинке пре, текућа и два након, ...; велики број умањује ниво безбедности (препоручене вредности су 0 или 1)] -** тип: целобројна -** вредности: 0 .. 256 -** подразумевана вредност: `+0+` - -* [[option_relay.network.websocket_allowed_origins]] *relay.network.websocket_allowed_origins* -** опис: pass:none[POSIX проширени регуларни израз са пореклима која се дозвољавају у вебсокетима (без разликовања малих и великих слова, ако желите да се прави разлика, употребите „(?-i)” на почетку), пример: „^https?://(www\.)?example\.(com|org)”] -** тип: стринг -** вредности: било који стринг -** подразумевана вредност: `+""+` - -* [[option_relay.weechat.commands]] *relay.weechat.commands* -** опис: pass:none[листа команди раздвојених запетама које су дозвољене/забрањене када се од клијента приме улазни подаци (текст или команда); „*” значи било која команда, име које почиње са „!” је негативна вредност којом се спречава да се команда изврши, у именима је дозвољен џокер „*”; ова опција би требало да се постави ако релеј клијент није безбедан (неко би могао да га користи за покретање команди); на пример „*,!exec,!quit” дозвољава све команде осим /exec и /quit] -** тип: стринг -** вредности: било који стринг -** подразумевана вредност: `+""+` -// 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[провера лиценце скрипти када се учитавају: ако се лиценца разликује од лиценце додатка, исписује се упозорење] -** тип: логичка -** вредности: on, off -** подразумевана вредност: `+off+` - -* [[option_ruby.look.eval_keep_context]] *ruby.look.eval_keep_context* -** опис: pass:none[задржава се контекст између два позива израчунавања изворног кода (опција „eval” команде script или info „%s_eval”); за израчунавање кода скрипте се користи скривена скрипта; ако је ова опција искључена, ова скривена скрипта се уклања из меморије након сваког израчунавања: ово троши мање меморије, али је спорије] -** тип: логичка -** вредности: on, off -** подразумевана вредност: `+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”)] -** тип: боја -** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_script.color.status_held]] *script.color.status_held* -** опис: pass:none[боја за статус „задржана” („H”)] -** тип: боја -** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_script.color.status_installed]] *script.color.status_installed* -** опис: pass:none[боја за статус „инсталирана” („i”)] -** тип: боја -** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_script.color.status_obsolete]] *script.color.status_obsolete* -** опис: pass:none[боја за статус „застарела” („N”)] -** тип: боја -** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_script.color.status_popular]] *script.color.status_popular* -** опис: pass:none[боја за статус „популарна” („*”)] -** тип: боја -** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_script.color.status_running]] *script.color.status_running* -** опис: pass:none[боја за статус „извршава се” („r”)] -** тип: боја -** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_script.color.status_unknown]] *script.color.status_unknown* -** опис: pass:none[боја за статус „непозната” („?”)] -** тип: боја -** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_script.color.text]] *script.color.text* -** опис: pass:none[боја текста у скрипт баферу] -** тип: боја -** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are 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_script.color.text_bg]] *script.color.text_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_script.color.text_bg_selected]] *script.color.text_bg_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 -** подразумевана вредност: `+red+` - -* [[option_script.color.text_date]] *script.color.text_date* -** опис: pass:none[боја текста за датуме у скрипт баферу] -** тип: боја -** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are 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_script.color.text_date_selected]] *script.color.text_date_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_script.color.text_delimiters]] *script.color.text_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 -** подразумевана вредност: `+default+` - -* [[option_script.color.text_description]] *script.color.text_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 -** подразумевана вредност: `+default+` - -* [[option_script.color.text_description_selected]] *script.color.text_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_script.color.text_extension]] *script.color.text_extension* -** опис: pass:none[боја текста за екстензију у скрипт баферу] -** тип: боја -** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are 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_script.color.text_extension_selected]] *script.color.text_extension_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_script.color.text_name]] *script.color.text_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+` - -* [[option_script.color.text_name_selected]] *script.color.text_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 -** подразумевана вредност: `+lightcyan+` - -* [[option_script.color.text_selected]] *script.color.text_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_script.color.text_tags]] *script.color.text_tags* -** опис: pass:none[боја текста за ознаке у скрипт баферу] -** тип: боја -** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_script.color.text_tags_selected]] *script.color.text_tags_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_script.color.text_version]] *script.color.text_version* -** опис: pass:none[боја текста за верзију у скрипт баферу] -** тип: боја -** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes 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_script.color.text_version_loaded]] *script.color.text_version_loaded* -** опис: pass:none[боја текста за учитану верзију у скрипт баферу] -** тип: боја -** вредности: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are 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_script.color.text_version_loaded_selected]] *script.color.text_version_loaded_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_script.color.text_version_selected]] *script.color.text_version_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+` - -* [[option_script.look.columns]] *script.look.columns* -** опис: pass:none[формат колона које се приказују у скрипт баферу: следећи идентификатори колоне се замењују својим вредностима: %a=аутор, %d=опис, %D=датум додавања, %e=екстензија, %l=језик, %L=лиценца, %n=име са екстензијом, %N=име, %r=захтеви, %s=статус, %t=ознаке, %u=датум ажурирања, %v=верзија, %V=верзија учитане скрипте, %w=min_weechat, %W=max_weechat)] -** тип: стринг -** вредности: било који стринг -** подразумевана вредност: `+"%s %n %V %v %u | %d | %t"+` - -* [[option_script.look.diff_color]] *script.look.diff_color* -** опис: pass:none[бојење излаза diff] -** тип: логичка -** вредности: on, off -** подразумевана вредност: `+on+` - -* [[option_script.look.diff_command]] *script.look.diff_command* -** опис: pass:none[команда која се користи за приказ разлика између инсталиране скрипте и њене нове верзије у репозиторијуму („auto” = ауто детекција diff команде (git или diff), празна вредност = diff је искључен, други стринг = име команде, на пример „diff”)] -** тип: стринг -** вредности: било који стринг -** подразумевана вредност: `+"auto"+` - -* [[option_script.look.display_source]] *script.look.display_source* -** опис: pass:none[приказ изворног кода скрипте у баферу са детаљима скрипте (скрипта се преузима у привремени фајл када се приказују детаљи скрипте)] -** тип: логичка -** вредности: on, off -** подразумевана вредност: `+on+` - -* [[option_script.look.quiet_actions]] *script.look.quiet_actions* -** опис: pass:none[тихе акције у скрипт баферу: поруке се не приказују у основном баферу онда када се скрипте инсталирају/бришу/учитавају/уклањају из меморије (приказују се само грешке)] -** тип: логичка -** вредности: on, off -** подразумевана вредност: `+on+` - -* [[option_script.look.sort]] *script.look.sort* -** опис: pass:none[подразумевани тастери сортирања за скрипте: листа идентификатора раздвојених запетама: a=аутор, A=аутоучитана, d=датум додавања, e=екстензија, i=инсталирана, l=језик, n=име, o=застарела, p=популарност, r=извршава се, u=датум ажурирања; испред идентификатора може да се користи карактер „-” чиме се обрће редослед; на пример: „i,u”: најпре инсталиране скрипте, сортиране по датуму ажурирања] -** тип: стринг -** вредности: било који стринг -** подразумевана вредност: `+"i,p,n"+` - -* [[option_script.look.translate_description]] *script.look.translate_description* -** опис: pass:none[превод описа скрипти (ако је за ваш језик превод доступан, иначе се користи енглеска верзија)] -** тип: логичка -** вредности: on, off -** подразумевана вредност: `+on+` - -* [[option_script.look.use_keys]] *script.look.use_keys* -** опис: pass:none[употреба тастера alt+X у скрипт баферу за извршавање акција над скриптама (alt+i = инсталација, alt+r = брисање, ...); ако је искључено, дозвољен је само унос: i, r, ...] -** тип: логичка -** вредности: on, off -** подразумевана вредност: `+on+` - -* [[option_script.scripts.autoload]] *script.scripts.autoload* -** опис: pass:none[аутоучитавање инсталираних скрипти (прави линк у „autoload” директоријуму на скрипту у родитељ-директоријуму)] -** тип: логичка -** вредности: on, off -** подразумевана вредност: `+on+` - -* [[option_script.scripts.cache_expire]] *script.scripts.cache_expire* -** опис: pass:none[застарелост локалног кеша, у минутима (-1 = никада не застарева, 0 = увек застарева)] -** тип: целобројна -** вредности: -1 .. 525600 -** подразумевана вредност: `+1440+` - -* [[option_script.scripts.download_enabled]] *script.scripts.download_enabled* -** опис: pass:none[омогућавање преузимања фајлова из репозиторијума скрипти када се користи команда /script (листе скрипти и самих скрипти); листа скрипти се преузима са URL адресе наведене у опцији script.scripts.url; програм WeeChat ће понекад поново да преузме листу скрипти када употребите команду /script, чак и ако не инсталирате скрипту] -** тип: логичка -** вредности: on, off -** подразумевана вредност: `+off+` - -* [[option_script.scripts.download_timeout]] *script.scripts.download_timeout* -** опис: pass:none[тајмаут (у секундама) за преузимање скрипти и листе скрипти] -** тип: целобројна -** вредности: 1 .. 3600 -** подразумевана вредност: `+30+` - -* [[option_script.scripts.hold]] *script.scripts.hold* -** опис: pass:none[скрипте које се „задржавају”: листа скрипти раздвојених запетама које се никада неће ажурирати и које не могу да се обришу, на пример: „go.py,urlserver.py”] -** тип: стринг -** вредности: било који стринг -** подразумевана вредност: `+""+` - -* [[option_script.scripts.path]] *script.scripts.path* -** опис: pass:none[директоријум локалног кеша за скрипте (путања се израчунава, погледајте функцију string_eval_path_home у референтном приручнику API додатака)] -** тип: стринг -** вредности: било који стринг -** подразумевана вредност: `+"${weechat_cache_dir}/script"+` - -* [[option_script.scripts.url]] *script.scripts.url* -** опис: pass:none[URL фајла са листом скрипти] -** тип: стринг -** вредности: било који стринг -** подразумевана вредност: `+"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+` - -* [[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_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 -** подразумевана вредност: `+default+` - -* [[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_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_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 -** подразумевана вредност: `+brown+` - -* [[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 -** подразумевана вредност: `+yellow+` - -* [[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 -** подразумевана вредност: `+white+` - -* [[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 -** подразумевана вредност: `+white+` - -* [[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 -** подразумевана вредност: `+default+` - -* [[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 -** подразумевана вредност: `+white+` - -* [[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 -** подразумевана вредност: `+darkgray+` - -* [[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_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 -** подразумевана вредност: `+cyan+` - -* [[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 -** подразумевана вредност: `+lightcyan+` - -* [[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 -** подразумевана вредност: `+default+` - -* [[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_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 -** подразумевана вредност: `+blue+` - -* [[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 -** подразумевана вредност: `+red+` - -* [[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 -** подразумевана вредност: `+brown+` - -* [[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_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 -** подразумевана вредност: `+default+` - -* [[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 -** подразумевана вредност: `+white+` - -* [[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 -** подразумевана вредност: `+default+` - -* [[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 -** подразумевана вредност: `+white+` - -* [[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 -** подразумевана вредност: `+default+` - -* [[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 -** подразумевана вредност: `+brown+` - -* [[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 -** подразумевана вредност: `+yellow+` - -* [[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 -** подразумевана вредност: `+white+` - -* [[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 -** подразумевана вредност: `+default+` - -* [[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 -** подразумевана вредност: `+brown+` - -* [[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 -** подразумевана вредност: `+yellow+` - -* [[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 -** подразумевана вредност: `+white+` - -* [[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 -** подразумевана вредност: `+default+` - -* [[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 -** подразумевана вредност: `+white+` - -* [[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 -** подразумевана вредност: `+cyan+` - -* [[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 -** подразумевана вредност: `+lightcyan+` - -* [[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 -** подразумевана вредност: `+darkgray+` - -* [[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 -** подразумевана вредност: `+default+` - -* [[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_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 -** подразумевана вредност: `+default+` - -* [[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_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 -** подразумевана вредност: `+brown+` - -* [[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 -** подразумевана вредност: `+yellow+` - -* [[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 -** подразумевана вредност: `+white+` - -* [[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_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 -** подразумевана вредност: `+white+` - -* [[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 -** подразумевана вредност: `+cyan+` - -* [[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 -** подразумевана вредност: `+lightcyan+` - -* [[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_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 -** подразумевана вредност: `+lightgreen+` - -* [[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 -** подразумевана вредност: `+white+` - -* [[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 -** подразумевана вредност: `+green+` - -* [[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 -** подразумевана вредност: `+lightgreen+` - -* [[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 -** подразумевана вредност: `+default+` - -* [[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 -** подразумевана вредност: `+white+` - -* [[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 -** подразумевана вредност: `+cyan+` - -* [[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 -** подразумевана вредност: `+brown+` - -* [[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 -** подразумевана вредност: `+yellow+` - -* [[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 -** подразумевана вредност: `+lightcyan+` - -* [[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 -** подразумевана вредност: `+magenta+` - -* [[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 -** подразумевана вредност: `+lightmagenta+` - -* [[option_fset.format.export_help]] *fset.format.export_help* -** опис: pass:none[формат линије помоћи која се записује пре сваке опције која се извози у фајл (напомена: садржај се израчунава, погледајте /help fset)] -** тип: стринг -** вредности: било који стринг -** подразумевана вредност: `+"# ${description2}"+` - -* [[option_fset.format.export_option]] *fset.format.export_option* -** опис: pass:none[формат сваке опције која се извози у фајл (напомена: садржај се израчунава, погледајте /help fset)] -** тип: стринг -** вредности: било који стринг -** подразумевана вредност: `+"/set ${name} ${quoted_value}"+` - -* [[option_fset.format.export_option_null]] *fset.format.export_option_null* -** опис: pass:none[формат сваке опција која има „null” вредност а извози се у фајл (напомена: садржај се израчунава, погледајте /help fset)] -** тип: стринг -** вредности: било који стринг -** подразумевана вредност: `+"/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_fset.format.option2]] *fset.format.option2* -** опис: pass:none[други формат сваке линије, користи се када је вредност опције fset.look.format_number постављена на 2 (напомена: садржај се израчунава, погледајте /help fset); празан стринг значи да се користи подразумевани формат („${marked} ${name} ${type} ${value2}”), који је без израчунавања, дакле и много бржи; формати могу да се пребацују тастером ctrl+X] -** тип: стринг -** вредности: било који стринг -** подразумевана вредност: `+"${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_fset.look.auto_unmark]] *fset.look.auto_unmark* -** опис: pass:none[аутоматско уклањање маркирања са свих опција након акције над маркираним опцијама или након освежавања] -** тип: логичка -** вредности: 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 командом] -** тип: стринг -** вредности: било који стринг -** подразумевана вредност: `+"${count} >= 1"+` - -* [[option_fset.look.export_help_default]] *fset.look.export_help_default* -** опис: pass:none[подразумевано се уз сваку извезену опцију записује и помоћ (ово може да се премости аргументима „-help” и „-nohelp” за команду /fset -export)] -** тип: логичка -** вредности: on, off -** подразумевана вредност: `+on+` - -* [[option_fset.look.format_number]] *fset.look.format_number* -** опис: pass:none[број формата који се користи за приказ опција; ово се динамички мења тастером ctrl-X у fset баферу] -** тип: целобројна -** вредности: 1 .. 2 -** подразумевана вредност: `+1+` - -* [[option_fset.look.marked_string]] *fset.look.marked_string* -** опис: pass:none[стринг који се приказује када се опција маркира (како ви се извршила акција над више опција одједном)] -** тип: стринг -** вредности: било који стринг -** подразумевана вредност: `+"*"+` - -* [[option_fset.look.scroll_horizontal]] *fset.look.scroll_horizontal* -** опис: pass:none[скроловање у лево/десно у fset баферу (проценат ширине)] -** тип: целобројна -** вредности: 1 .. 100 -** подразумевана вредност: `+10+` - -* [[option_fset.look.show_plugins_desc]] *fset.look.show_plugins_desc* -** опис: pass:none[приказивање описа опција додатака (plugins.desc.*)] -** тип: логичка -** вредности: on, off -** подразумевана вредност: `+off+` - -* [[option_fset.look.sort]] *fset.look.sort* -** опис: pass:none[листа поља за сортирање опција раздвојених запетама (погледајте /help fset за листу поља); карактер „-” може да се користи испред поља чиме се обрће редослед, карактер „~” може да се употреби за поређење које не прави разлику у величини слова; пример: „-~name” за поређење које не прави разлику у величини слова и обрнуто сортирање по имену опције] -** тип: стринг -** вредности: било који стринг -** подразумевана вредност: `+"~name"+` - -* [[option_fset.look.unmarked_string]] *fset.look.unmarked_string* -** опис: pass:none[стринг који се приказује када опција није маркирана] -** тип: стринг -** вредности: било који стринг -** подразумевана вредност: `+" "+` - -* [[option_fset.look.use_color_value]] *fset.look.use_color_value* -** опис: pass:none[опције у вези боја се приказују обојено] -** тип: логичка -** вредности: on, off -** подразумевана вредност: `+off+` - -* [[option_fset.look.use_keys]] *fset.look.use_keys* -** опис: pass:none[употреба тастера alt+X у fset баферу за извршавање акција над опцијама; ако је искључено, дозвољен је само унос] -** тип: логичка -** вредности: on, off -** подразумевана вредност: `+on+` - -* [[option_fset.look.use_mute]] *fset.look.use_mute* -** опис: pass:none[за постављање опција се користи команда /mute] -** тип: логичка -** вредности: on, off -** подразумевана вредност: `+off+` -// end::fset_options[] diff --git a/po/cs.po b/po/cs.po index 50445dfab..d7076bd90 100644 --- a/po/cs.po +++ b/po/cs.po @@ -21,7 +21,7 @@ msgid "" msgstr "" "Project-Id-Version: WeeChat\n" "Report-Msgid-Bugs-To: flashcode@flashtux.org\n" -"POT-Creation-Date: 2023-01-24 20:52+0100\n" +"POT-Creation-Date: 2023-01-28 15:14+0100\n" "PO-Revision-Date: 2022-10-15 22:51+0200\n" "Last-Translator: Ondřej Súkup \n" "Language-Team: weechat-dev \n" @@ -134,6 +134,15 @@ msgstr "Typ" msgid "Constants" msgstr "Konstanty" +msgid "Rank" +msgstr "" + +msgid "Priority" +msgstr "" + +msgid "File" +msgstr "" + #, fuzzy, c-format msgid "%sAnother command \"%s\" already exists for plugin \"%s\"" msgstr "%sChyba: příkaz \"%s\" již existuje pro plugin \"%s\"" @@ -5087,13 +5096,23 @@ msgstr "%sAlias \"%s\" nenalezen" msgid "Alias \"%s\" removed" msgstr "Alias \"%s\" odebrán" +#, fuzzy, c-format +msgid "%sAlias \"%s\" already exists" +msgstr "%s%s: vzorec přesměrování \"%s\" již existuje" + +#, fuzzy, c-format +#| msgid "Layout \"%s\" has been renamed to \"%s\"" +msgid "Alias \"%s\" has been renamed to \"%s\"" +msgstr "Rozložení \"%s\" přejmenováno na %s" + #, fuzzy msgid "list, add or remove command aliases" msgstr "vypíše, přídá nebo odebere IRC servery" msgid "" "list [] || add [[;...]] || addcompletion " -" [[;...]] || del [...]" +" [[;...]] || del [...] " +"|| rename " msgstr "" #, fuzzy, no-c-format @@ -5102,6 +5121,7 @@ msgid "" " add: add an alias\n" "addcompletion: add an alias with a custom completion\n" " del: delete an alias\n" +" rename: rename an alias\n" " completion: completion for alias: by default completion is done with " "target command\n" " note: you can use %%command to use completion of an existing " @@ -5126,6 +5146,8 @@ msgid "" " /alias add split /window splith\n" " alias /hello to say \"hello\" on all channels but not on #weechat:\n" " /alias add hello /allchan -exclude=#weechat hello\n" +" rename alias \"hello\" to \"Hello\":\n" +" /alias rename hello Hello\n" " alias /forcejoin to send IRC command \"forcejoin\" with completion of /" "sajoin:\n" " /alias addcompletion %%sajoin forcejoin /quote forcejoin" diff --git a/po/de.po b/po/de.po index 0cc93b1f2..e8fc0884c 100644 --- a/po/de.po +++ b/po/de.po @@ -26,7 +26,7 @@ msgid "" msgstr "" "Project-Id-Version: WeeChat\n" "Report-Msgid-Bugs-To: flashcode@flashtux.org\n" -"POT-Creation-Date: 2023-01-24 20:52+0100\n" +"POT-Creation-Date: 2023-01-28 15:14+0100\n" "PO-Revision-Date: 2023-01-25 07:49+0100\n" "Last-Translator: Nils Görs \n" "Language-Team: German - Germany \n" @@ -133,6 +133,15 @@ msgstr "Type" msgid "Constants" msgstr "Konstanten" +msgid "Rank" +msgstr "" + +msgid "Priority" +msgstr "" + +msgid "File" +msgstr "" + #, c-format msgid "%sAnother command \"%s\" already exists for plugin \"%s\"" msgstr "" @@ -6285,22 +6294,71 @@ msgstr "%sAlias \"%s\" nicht gefunden" msgid "Alias \"%s\" removed" msgstr "Alias \"%s\" entfernt" +#, fuzzy, c-format +#| msgid "%s%s: trigger \"%s\" already exists" +msgid "%sAlias \"%s\" already exists" +msgstr "%s%s: Trigger \"%s\" existiert bereits" + +#, fuzzy, c-format +#| msgid "Layout \"%s\" has been renamed to \"%s\"" +msgid "Alias \"%s\" has been renamed to \"%s\"" +msgstr "Layout \"%s\" wurde umbenannt. Der neue Name lautet \"%s\"" + msgid "list, add or remove command aliases" msgstr "auflisten, hinzufügen oder entfernen von Alternativnamen" +#, fuzzy +#| msgid "" +#| "list [] || add [[;...]] || addcompletion " +#| " [[;...]] || del " +#| "[...]" msgid "" "list [] || add [[;...]] || addcompletion " -" [[;...]] || del [...]" +" [[;...]] || del [...] " +"|| rename " msgstr "" "list [] || add [[;...]] || addcompletion " " [[;...]] || del [...]" -#, no-c-format +#, fuzzy, no-c-format +#| msgid "" +#| " list: list aliases (without argument, this list is displayed)\n" +#| " add: add an alias\n" +#| "addcompletion: add an alias with a custom completion\n" +#| " del: delete an alias\n" +#| " completion: completion for alias: by default completion is done with " +#| "target command\n" +#| " note: you can use %%command to use completion of an " +#| "existing command\n" +#| " alias: name of alias\n" +#| " command: command name with arguments (many commands can be " +#| "separated by semicolons)\n" +#| "\n" +#| "Note: in command, special variables are replaced:\n" +#| " $n: argument 'n' (between 1 and 9)\n" +#| " $-m: arguments from 1 to 'm'\n" +#| " $n-: arguments from 'n' to last\n" +#| " $n-m: arguments from 'n' to 'm'\n" +#| " $*: all arguments\n" +#| " $~: last argument\n" +#| " $var: where \"var\" is a local variable of buffer (see /buffer " +#| "listvar)\n" +#| " examples: $nick, $channel, $server, $plugin, $name\n" +#| "\n" +#| "Examples:\n" +#| " alias /split to split window horizontally:\n" +#| " /alias add split /window splith\n" +#| " alias /hello to say \"hello\" on all channels but not on #weechat:\n" +#| " /alias add hello /allchan -exclude=#weechat hello\n" +#| " alias /forcejoin to send IRC command \"forcejoin\" with completion of /" +#| "sajoin:\n" +#| " /alias addcompletion %%sajoin forcejoin /quote forcejoin" msgid "" " list: list aliases (without argument, this list is displayed)\n" " add: add an alias\n" "addcompletion: add an alias with a custom completion\n" " del: delete an alias\n" +" rename: rename an alias\n" " completion: completion for alias: by default completion is done with " "target command\n" " note: you can use %%command to use completion of an existing " @@ -6325,6 +6383,8 @@ msgid "" " /alias add split /window splith\n" " alias /hello to say \"hello\" on all channels but not on #weechat:\n" " /alias add hello /allchan -exclude=#weechat hello\n" +" rename alias \"hello\" to \"Hello\":\n" +" /alias rename hello Hello\n" " alias /forcejoin to send IRC command \"forcejoin\" with completion of /" "sajoin:\n" " /alias addcompletion %%sajoin forcejoin /quote forcejoin" diff --git a/po/es.po b/po/es.po index 488716971..ac60b9011 100644 --- a/po/es.po +++ b/po/es.po @@ -22,7 +22,7 @@ msgid "" msgstr "" "Project-Id-Version: WeeChat\n" "Report-Msgid-Bugs-To: flashcode@flashtux.org\n" -"POT-Creation-Date: 2023-01-24 20:52+0100\n" +"POT-Creation-Date: 2023-01-28 15:14+0100\n" "PO-Revision-Date: 2022-10-15 22:51+0200\n" "Last-Translator: Santiago Forero \n" "Language-Team: weechat-dev \n" @@ -132,6 +132,15 @@ msgstr "Tipo" msgid "Constants" msgstr "Constantes" +msgid "Rank" +msgstr "" + +msgid "Priority" +msgstr "" + +msgid "File" +msgstr "" + #, c-format msgid "%sAnother command \"%s\" already exists for plugin \"%s\"" msgstr "%sError: el comando \"%s\" ya existe en el plugin \"%s\"" @@ -5637,13 +5646,23 @@ msgstr "%sAlias \"%s\" no encontrado" msgid "Alias \"%s\" removed" msgstr "Alias \"%s\" eliminado" +#, fuzzy, c-format +msgid "%sAlias \"%s\" already exists" +msgstr "%sError: el filtro \"%s\" ya existe" + +#, fuzzy, c-format +#| msgid "Layout \"%s\" has been renamed to \"%s\"" +msgid "Alias \"%s\" has been renamed to \"%s\"" +msgstr "Tema \"%s\" renombrado a \"%s\"" + #, fuzzy msgid "list, add or remove command aliases" msgstr "lista, añade o elimina servidores IRC" msgid "" "list [] || add [[;...]] || addcompletion " -" [[;...]] || del [...]" +" [[;...]] || del [...] " +"|| rename " msgstr "" #, fuzzy, no-c-format @@ -5652,6 +5671,7 @@ msgid "" " add: add an alias\n" "addcompletion: add an alias with a custom completion\n" " del: delete an alias\n" +" rename: rename an alias\n" " completion: completion for alias: by default completion is done with " "target command\n" " note: you can use %%command to use completion of an existing " @@ -5676,6 +5696,8 @@ msgid "" " /alias add split /window splith\n" " alias /hello to say \"hello\" on all channels but not on #weechat:\n" " /alias add hello /allchan -exclude=#weechat hello\n" +" rename alias \"hello\" to \"Hello\":\n" +" /alias rename hello Hello\n" " alias /forcejoin to send IRC command \"forcejoin\" with completion of /" "sajoin:\n" " /alias addcompletion %%sajoin forcejoin /quote forcejoin" diff --git a/po/fr.po b/po/fr.po index 83f74b517..a32c91122 100644 --- a/po/fr.po +++ b/po/fr.po @@ -21,8 +21,8 @@ msgid "" msgstr "" "Project-Id-Version: WeeChat\n" "Report-Msgid-Bugs-To: flashcode@flashtux.org\n" -"POT-Creation-Date: 2023-01-24 20:52+0100\n" -"PO-Revision-Date: 2023-01-24 20:53+0100\n" +"POT-Creation-Date: 2023-01-28 15:14+0100\n" +"PO-Revision-Date: 2023-01-28 15:17+0100\n" "Last-Translator: Sébastien Helleu \n" "Language-Team: weechat-dev \n" "Language: fr\n" @@ -126,6 +126,15 @@ msgstr "Type" msgid "Constants" msgstr "Constantes" +msgid "Rank" +msgstr "Rang" + +msgid "Priority" +msgstr "Priorité" + +msgid "File" +msgstr "Fichier" + #, c-format msgid "%sAnother command \"%s\" already exists for plugin \"%s\"" msgstr "%sUne autre commande \"%s\" existe déjà pour l'extension \"%s\"" @@ -6149,15 +6158,25 @@ msgstr "%sAlias \"%s\" non trouvé" msgid "Alias \"%s\" removed" msgstr "Alias \"%s\" supprimé" +#, c-format +msgid "%sAlias \"%s\" already exists" +msgstr "%sL'alias \"%s\" existe déjà" + +#, c-format +msgid "Alias \"%s\" has been renamed to \"%s\"" +msgstr "L'alias \"%s\" a été renommé en \"%s\"" + msgid "list, add or remove command aliases" msgstr "lister, ajouter ou retirer des alias de commande" msgid "" "list [] || add [[;...]] || addcompletion " -" [[;...]] || del [...]" +" [[;...]] || del [...] " +"|| rename " msgstr "" "list [] || add [[;...]] || addcompletion " -" [[;...]] || del [...]" +" [[;...]] || del " +"[...] || rename " #, no-c-format msgid "" @@ -6165,6 +6184,7 @@ msgid "" " add: add an alias\n" "addcompletion: add an alias with a custom completion\n" " del: delete an alias\n" +" rename: rename an alias\n" " completion: completion for alias: by default completion is done with " "target command\n" " note: you can use %%command to use completion of an existing " @@ -6189,6 +6209,8 @@ msgid "" " /alias add split /window splith\n" " alias /hello to say \"hello\" on all channels but not on #weechat:\n" " /alias add hello /allchan -exclude=#weechat hello\n" +" rename alias \"hello\" to \"Hello\":\n" +" /alias rename hello Hello\n" " alias /forcejoin to send IRC command \"forcejoin\" with completion of /" "sajoin:\n" " /alias addcompletion %%sajoin forcejoin /quote forcejoin" @@ -6198,6 +6220,7 @@ msgstr "" " add : ajouter un alias\n" "addcompletion : ajouter un alias avec une complétion personnalisée\n" " del : supprimer un alias\n" +" rename : renommer un alias\n" " complétion : complétion pour l'alias : par défaut la complétion se fait " "avec la commande cible\n" " note : vous pouvez utiliser %%commande pour utiliser la " @@ -6223,6 +6246,8 @@ msgstr "" " alias /hello pour dire \"hello\" sur tous les canaux mais pas sur " "#weechat :\n" " /alias add hello /allchan -exclude=#weechat hello\n" +" renommer l'alias \"hello\" en \"Hello\" :\n" +" /alias rename hello Hello\n" " alias /forcejoin pour envoyer la commande IRC \"forcejoin\" avec la " "complétion de /sajoin :\n" " /alias addcompletion %%sajoin forcejoin /quote forcejoin" diff --git a/po/hu.po b/po/hu.po index a3980e407..469244efa 100644 --- a/po/hu.po +++ b/po/hu.po @@ -20,7 +20,7 @@ msgid "" msgstr "" "Project-Id-Version: WeeChat\n" "Report-Msgid-Bugs-To: flashcode@flashtux.org\n" -"POT-Creation-Date: 2023-01-24 20:52+0100\n" +"POT-Creation-Date: 2023-01-28 15:14+0100\n" "PO-Revision-Date: 2022-10-15 22:51+0200\n" "Last-Translator: Andras Voroskoi \n" "Language-Team: weechat-dev \n" @@ -134,6 +134,15 @@ msgstr "" msgid "Constants" msgstr "" +msgid "Rank" +msgstr "" + +msgid "Priority" +msgstr "" + +msgid "File" +msgstr "" + #, fuzzy, c-format msgid "%sAnother command \"%s\" already exists for plugin \"%s\"" msgstr "%s az ignore már létezik\n" @@ -4655,13 +4664,22 @@ msgstr "%s cím \"%s\" nem található\n" msgid "Alias \"%s\" removed" msgstr "A \"%s\" aliasz eltávolítva\n" +#, fuzzy, c-format +msgid "%sAlias \"%s\" already exists" +msgstr "%s az ignore már létezik\n" + +#, fuzzy, c-format +msgid "Alias \"%s\" has been renamed to \"%s\"" +msgstr "a felhasználók le lettek tiltva" + #, fuzzy msgid "list, add or remove command aliases" msgstr "szerverek listázása, hozzáadása vagy eltávolítása" msgid "" "list [] || add [[;...]] || addcompletion " -" [[;...]] || del [...]" +" [[;...]] || del [...] " +"|| rename " msgstr "" #, fuzzy, no-c-format @@ -4670,6 +4688,7 @@ msgid "" " add: add an alias\n" "addcompletion: add an alias with a custom completion\n" " del: delete an alias\n" +" rename: rename an alias\n" " completion: completion for alias: by default completion is done with " "target command\n" " note: you can use %%command to use completion of an existing " @@ -4694,6 +4713,8 @@ msgid "" " /alias add split /window splith\n" " alias /hello to say \"hello\" on all channels but not on #weechat:\n" " /alias add hello /allchan -exclude=#weechat hello\n" +" rename alias \"hello\" to \"Hello\":\n" +" /alias rename hello Hello\n" " alias /forcejoin to send IRC command \"forcejoin\" with completion of /" "sajoin:\n" " /alias addcompletion %%sajoin forcejoin /quote forcejoin" diff --git a/po/it.po b/po/it.po index 3525d49af..19ffdf2b3 100644 --- a/po/it.po +++ b/po/it.po @@ -20,7 +20,7 @@ msgid "" msgstr "" "Project-Id-Version: WeeChat\n" "Report-Msgid-Bugs-To: flashcode@flashtux.org\n" -"POT-Creation-Date: 2023-01-24 20:52+0100\n" +"POT-Creation-Date: 2023-01-28 15:14+0100\n" "PO-Revision-Date: 2022-10-15 22:51+0200\n" "Last-Translator: Esteban I. Ruiz Moreno \n" "Language-Team: weechat-dev \n" @@ -131,6 +131,15 @@ msgstr "Tipo" msgid "Constants" msgstr "Costanti" +msgid "Rank" +msgstr "" + +msgid "Priority" +msgstr "" + +msgid "File" +msgstr "" + #, fuzzy, c-format msgid "%sAnother command \"%s\" already exists for plugin \"%s\"" msgstr "%sErrore: un altro comando \"%s\" esiste già per il plugin \"%s\"" @@ -5358,13 +5367,23 @@ msgstr "%sAlias \"%s\" non trovato" msgid "Alias \"%s\" removed" msgstr "Alias \"%s\" eliminato" +#, fuzzy, c-format +msgid "%sAlias \"%s\" already exists" +msgstr "%sErrore: il filtro \"%s\" esiste già" + +#, fuzzy, c-format +#| msgid "Layout \"%s\" has been renamed to \"%s\"" +msgid "Alias \"%s\" has been renamed to \"%s\"" +msgstr "Il layout \"%s\" è stato rinominato in \"%s\"" + #, fuzzy msgid "list, add or remove command aliases" msgstr "elenca, aggiunge o rimuove server IRC" msgid "" "list [] || add [[;...]] || addcompletion " -" [[;...]] || del [...]" +" [[;...]] || del [...] " +"|| rename " msgstr "" #, fuzzy, no-c-format @@ -5373,6 +5392,7 @@ msgid "" " add: add an alias\n" "addcompletion: add an alias with a custom completion\n" " del: delete an alias\n" +" rename: rename an alias\n" " completion: completion for alias: by default completion is done with " "target command\n" " note: you can use %%command to use completion of an existing " @@ -5397,6 +5417,8 @@ msgid "" " /alias add split /window splith\n" " alias /hello to say \"hello\" on all channels but not on #weechat:\n" " /alias add hello /allchan -exclude=#weechat hello\n" +" rename alias \"hello\" to \"Hello\":\n" +" /alias rename hello Hello\n" " alias /forcejoin to send IRC command \"forcejoin\" with completion of /" "sajoin:\n" " /alias addcompletion %%sajoin forcejoin /quote forcejoin" diff --git a/po/ja.po b/po/ja.po index 79dc75012..16aaca4b4 100644 --- a/po/ja.po +++ b/po/ja.po @@ -20,7 +20,7 @@ msgid "" msgstr "" "Project-Id-Version: WeeChat\n" "Report-Msgid-Bugs-To: flashcode@flashtux.org\n" -"POT-Creation-Date: 2023-01-24 20:52+0100\n" +"POT-Creation-Date: 2023-01-28 15:14+0100\n" "PO-Revision-Date: 2022-10-15 22:51+0200\n" "Last-Translator: AYANOKOUZI, Ryuunosuke \n" "Language-Team: Japanese ] || add [[;...]] || addcompletion " +#| " [[;...]] || del " +#| "[...]" msgid "" "list [] || add [[;...]] || addcompletion " -" [[;...]] || del [...]" +" [[;...]] || del [...] " +"|| rename " msgstr "" "list [] || add [[;...]] || addcompletion " " [[;...]] || del [...]" @@ -5846,6 +5871,7 @@ msgid "" " add: add an alias\n" "addcompletion: add an alias with a custom completion\n" " del: delete an alias\n" +" rename: rename an alias\n" " completion: completion for alias: by default completion is done with " "target command\n" " note: you can use %%command to use completion of an existing " @@ -5870,6 +5896,8 @@ msgid "" " /alias add split /window splith\n" " alias /hello to say \"hello\" on all channels but not on #weechat:\n" " /alias add hello /allchan -exclude=#weechat hello\n" +" rename alias \"hello\" to \"Hello\":\n" +" /alias rename hello Hello\n" " alias /forcejoin to send IRC command \"forcejoin\" with completion of /" "sajoin:\n" " /alias addcompletion %%sajoin forcejoin /quote forcejoin" diff --git a/po/pl.po b/po/pl.po index d719b8a9b..8c6c37f99 100644 --- a/po/pl.po +++ b/po/pl.po @@ -22,7 +22,7 @@ msgid "" msgstr "" "Project-Id-Version: WeeChat\n" "Report-Msgid-Bugs-To: flashcode@flashtux.org\n" -"POT-Creation-Date: 2023-01-24 20:52+0100\n" +"POT-Creation-Date: 2023-01-28 15:14+0100\n" "PO-Revision-Date: 2022-12-30 14:10+0100\n" "Last-Translator: Krzysztof Korościk \n" "Language-Team: Polish \n" @@ -128,6 +128,15 @@ msgstr "Typ" msgid "Constants" msgstr "Stałe" +msgid "Rank" +msgstr "" + +msgid "Priority" +msgstr "" + +msgid "File" +msgstr "" + #, c-format msgid "%sAnother command \"%s\" already exists for plugin \"%s\"" msgstr "%sIstnieje już inna komenda \"%s\" dla wtyczki \"%s\"" @@ -6012,22 +6021,71 @@ msgstr "%sAlias \"%s\" nie został znaleziony" msgid "Alias \"%s\" removed" msgstr "Alias \"%s\" został usunięty" +#, fuzzy, c-format +#| msgid "%s%s: trigger \"%s\" already exists" +msgid "%sAlias \"%s\" already exists" +msgstr "%s%s: trigger \"%s\" już istnieje" + +#, fuzzy, c-format +#| msgid "Layout \"%s\" has been renamed to \"%s\"" +msgid "Alias \"%s\" has been renamed to \"%s\"" +msgstr "Zmieniono nazwę układu \"%s\" na \"%s\"" + msgid "list, add or remove command aliases" msgstr "wyświetla, dodaje lub usuwa aliasy komend" +#, fuzzy +#| msgid "" +#| "list [] || add [[;...]] || addcompletion " +#| " [[;...]] || del " +#| "[...]" msgid "" "list [] || add [[;...]] || addcompletion " -" [[;...]] || del [...]" +" [[;...]] || del [...] " +"|| rename " msgstr "" "list [] || add [[;...]] || addcompletion " " [[;...]] || del [...]" -#, no-c-format +#, fuzzy, no-c-format +#| msgid "" +#| " list: list aliases (without argument, this list is displayed)\n" +#| " add: add an alias\n" +#| "addcompletion: add an alias with a custom completion\n" +#| " del: delete an alias\n" +#| " completion: completion for alias: by default completion is done with " +#| "target command\n" +#| " note: you can use %%command to use completion of an " +#| "existing command\n" +#| " alias: name of alias\n" +#| " command: command name with arguments (many commands can be " +#| "separated by semicolons)\n" +#| "\n" +#| "Note: in command, special variables are replaced:\n" +#| " $n: argument 'n' (between 1 and 9)\n" +#| " $-m: arguments from 1 to 'm'\n" +#| " $n-: arguments from 'n' to last\n" +#| " $n-m: arguments from 'n' to 'm'\n" +#| " $*: all arguments\n" +#| " $~: last argument\n" +#| " $var: where \"var\" is a local variable of buffer (see /buffer " +#| "listvar)\n" +#| " examples: $nick, $channel, $server, $plugin, $name\n" +#| "\n" +#| "Examples:\n" +#| " alias /split to split window horizontally:\n" +#| " /alias add split /window splith\n" +#| " alias /hello to say \"hello\" on all channels but not on #weechat:\n" +#| " /alias add hello /allchan -exclude=#weechat hello\n" +#| " alias /forcejoin to send IRC command \"forcejoin\" with completion of /" +#| "sajoin:\n" +#| " /alias addcompletion %%sajoin forcejoin /quote forcejoin" msgid "" " list: list aliases (without argument, this list is displayed)\n" " add: add an alias\n" "addcompletion: add an alias with a custom completion\n" " del: delete an alias\n" +" rename: rename an alias\n" " completion: completion for alias: by default completion is done with " "target command\n" " note: you can use %%command to use completion of an existing " @@ -6052,6 +6110,8 @@ msgid "" " /alias add split /window splith\n" " alias /hello to say \"hello\" on all channels but not on #weechat:\n" " /alias add hello /allchan -exclude=#weechat hello\n" +" rename alias \"hello\" to \"Hello\":\n" +" /alias rename hello Hello\n" " alias /forcejoin to send IRC command \"forcejoin\" with completion of /" "sajoin:\n" " /alias addcompletion %%sajoin forcejoin /quote forcejoin" diff --git a/po/pt.po b/po/pt.po index 6c02b5957..d7d301f81 100644 --- a/po/pt.po +++ b/po/pt.po @@ -20,7 +20,7 @@ msgid "" msgstr "" "Project-Id-Version: WeeChat\n" "Report-Msgid-Bugs-To: flashcode@flashtux.org\n" -"POT-Creation-Date: 2023-01-24 20:52+0100\n" +"POT-Creation-Date: 2023-01-28 15:14+0100\n" "PO-Revision-Date: 2022-10-15 22:51+0200\n" "Last-Translator: Vasco Almeida \n" "Language-Team: Portuguese <>\n" @@ -133,6 +133,15 @@ msgstr "Tipo" msgid "Constants" msgstr "Constantes" +msgid "Rank" +msgstr "" + +msgid "Priority" +msgstr "" + +msgid "File" +msgstr "" + #, fuzzy, c-format msgid "%sAnother command \"%s\" already exists for plugin \"%s\"" msgstr "%sErro: outro comando \"%s\" já existe para o plugin \"%s\"" @@ -5880,12 +5889,28 @@ msgstr "%sAlias \"%s\" não encontrado" msgid "Alias \"%s\" removed" msgstr "Alias \"%s\" removido" +#, fuzzy, c-format +#| msgid "%s%s: trigger \"%s\" already exists" +msgid "%sAlias \"%s\" already exists" +msgstr "%s%s: o acionador \"%s\" já existe" + +#, fuzzy, c-format +#| msgid "Layout \"%s\" has been renamed to \"%s\"" +msgid "Alias \"%s\" has been renamed to \"%s\"" +msgstr "O nome da disposição \"%s\" mudou para \"%s\"" + msgid "list, add or remove command aliases" msgstr "listar, adicionar ou remover alias de comandos" +#, fuzzy +#| msgid "" +#| "list [] || add [[;...]] || addcompletion " +#| " [[;...]] || del " +#| "[...]" msgid "" "list [] || add [[;...]] || addcompletion " -" [[;...]] || del [...]" +" [[;...]] || del [...] " +"|| rename " msgstr "" "list [] || add [[;...]] || addcompletion " " [[;...]] || del [...]" @@ -5896,6 +5921,7 @@ msgid "" " add: add an alias\n" "addcompletion: add an alias with a custom completion\n" " del: delete an alias\n" +" rename: rename an alias\n" " completion: completion for alias: by default completion is done with " "target command\n" " note: you can use %%command to use completion of an existing " @@ -5920,6 +5946,8 @@ msgid "" " /alias add split /window splith\n" " alias /hello to say \"hello\" on all channels but not on #weechat:\n" " /alias add hello /allchan -exclude=#weechat hello\n" +" rename alias \"hello\" to \"Hello\":\n" +" /alias rename hello Hello\n" " alias /forcejoin to send IRC command \"forcejoin\" with completion of /" "sajoin:\n" " /alias addcompletion %%sajoin forcejoin /quote forcejoin" diff --git a/po/pt_BR.po b/po/pt_BR.po index 3911ee644..acb113be7 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -21,7 +21,7 @@ msgid "" msgstr "" "Project-Id-Version: WeeChat\n" "Report-Msgid-Bugs-To: flashcode@flashtux.org\n" -"POT-Creation-Date: 2023-01-24 20:52+0100\n" +"POT-Creation-Date: 2023-01-28 15:14+0100\n" "PO-Revision-Date: 2022-10-15 22:51+0200\n" "Last-Translator: Érico Nogueira \n" "Language-Team: weechat-dev \n" @@ -130,6 +130,15 @@ msgstr "Tipo" msgid "Constants" msgstr "Constantes" +msgid "Rank" +msgstr "" + +msgid "Priority" +msgstr "" + +msgid "File" +msgstr "" + #, c-format msgid "%sAnother command \"%s\" already exists for plugin \"%s\"" msgstr "%sOutro comando \"%s\" já existe para o plugin \"%s\"" @@ -5317,12 +5326,22 @@ msgstr "%sAtalho \"%s\" não encontrado" msgid "Alias \"%s\" removed" msgstr "Atalho \"%s\" removido" +#, fuzzy, c-format +msgid "%sAlias \"%s\" already exists" +msgstr "%sErro: filtro \"%s\" já existe" + +#, fuzzy, c-format +#| msgid "Layout \"%s\" has been renamed to \"%s\"" +msgid "Alias \"%s\" has been renamed to \"%s\"" +msgstr "Disposição \"%s\" renomeado para \"%s\"" + msgid "list, add or remove command aliases" msgstr "" msgid "" "list [] || add [[;...]] || addcompletion " -" [[;...]] || del [...]" +" [[;...]] || del [...] " +"|| rename " msgstr "" #, no-c-format @@ -5331,6 +5350,7 @@ msgid "" " add: add an alias\n" "addcompletion: add an alias with a custom completion\n" " del: delete an alias\n" +" rename: rename an alias\n" " completion: completion for alias: by default completion is done with " "target command\n" " note: you can use %%command to use completion of an existing " @@ -5355,6 +5375,8 @@ msgid "" " /alias add split /window splith\n" " alias /hello to say \"hello\" on all channels but not on #weechat:\n" " /alias add hello /allchan -exclude=#weechat hello\n" +" rename alias \"hello\" to \"Hello\":\n" +" /alias rename hello Hello\n" " alias /forcejoin to send IRC command \"forcejoin\" with completion of /" "sajoin:\n" " /alias addcompletion %%sajoin forcejoin /quote forcejoin" diff --git a/po/ru.po b/po/ru.po index 1131c2369..dcbbed0bb 100644 --- a/po/ru.po +++ b/po/ru.po @@ -21,7 +21,7 @@ msgid "" msgstr "" "Project-Id-Version: WeeChat\n" "Report-Msgid-Bugs-To: flashcode@flashtux.org\n" -"POT-Creation-Date: 2023-01-24 20:52+0100\n" +"POT-Creation-Date: 2023-01-28 15:14+0100\n" "PO-Revision-Date: 2022-10-15 22:51+0200\n" "Last-Translator: Aleksey V Zapparov AKA ixti \n" "Language-Team: weechat-dev \n" @@ -142,6 +142,15 @@ msgstr "" msgid "Constants" msgstr "" +msgid "Rank" +msgstr "" + +msgid "Priority" +msgstr "" + +msgid "File" +msgstr "" + #, fuzzy, c-format msgid "%sAnother command \"%s\" already exists for plugin \"%s\"" msgstr "%s игнорирование уже существует\n" @@ -4693,13 +4702,22 @@ msgstr "%s адрес \"%s\" не найден\n" msgid "Alias \"%s\" removed" msgstr "Сокращение \"%s\" удалено\n" +#, fuzzy, c-format +msgid "%sAlias \"%s\" already exists" +msgstr "%s игнорирование уже существует\n" + +#, fuzzy, c-format +msgid "Alias \"%s\" has been renamed to \"%s\"" +msgstr "команда users отключена" + #, fuzzy msgid "list, add or remove command aliases" msgstr "перечислить, добавить или удалить серверы" msgid "" "list [] || add [[;...]] || addcompletion " -" [[;...]] || del [...]" +" [[;...]] || del [...] " +"|| rename " msgstr "" #, fuzzy, no-c-format @@ -4708,6 +4726,7 @@ msgid "" " add: add an alias\n" "addcompletion: add an alias with a custom completion\n" " del: delete an alias\n" +" rename: rename an alias\n" " completion: completion for alias: by default completion is done with " "target command\n" " note: you can use %%command to use completion of an existing " @@ -4732,6 +4751,8 @@ msgid "" " /alias add split /window splith\n" " alias /hello to say \"hello\" on all channels but not on #weechat:\n" " /alias add hello /allchan -exclude=#weechat hello\n" +" rename alias \"hello\" to \"Hello\":\n" +" /alias rename hello Hello\n" " alias /forcejoin to send IRC command \"forcejoin\" with completion of /" "sajoin:\n" " /alias addcompletion %%sajoin forcejoin /quote forcejoin" diff --git a/po/sr.po b/po/sr.po index d78073bdd..068ac6943 100644 --- a/po/sr.po +++ b/po/sr.po @@ -20,7 +20,7 @@ msgid "" msgstr "" "Project-Id-Version: WeeChat\n" "Report-Msgid-Bugs-To: flashcode@flashtux.org\n" -"POT-Creation-Date: 2023-01-24 20:52+0100\n" +"POT-Creation-Date: 2023-01-28 15:14+0100\n" "PO-Revision-Date: 2022-12-05 09:44+0400\n" "Last-Translator: Ivan Pešić \n" "Language-Team: weechat-dev \n" @@ -131,6 +131,15 @@ msgstr "Тип" msgid "Constants" msgstr "Константе" +msgid "Rank" +msgstr "" + +msgid "Priority" +msgstr "" + +msgid "File" +msgstr "" + #, c-format msgid "%sAnother command \"%s\" already exists for plugin \"%s\"" msgstr "%sВећ постоји друга команда \"%s\" за додатак \"%s\"" @@ -6190,23 +6199,72 @@ msgstr "%sАлијас „%s” није пронађен" msgid "Alias \"%s\" removed" msgstr "Уклоњен је алијас „%s”" +#, fuzzy, c-format +#| msgid "%s%s: trigger \"%s\" already exists" +msgid "%sAlias \"%s\" already exists" +msgstr "%s%s: окидач „%s” већ постоји" + +#, fuzzy, c-format +#| msgid "Layout \"%s\" has been renamed to \"%s\"" +msgid "Alias \"%s\" has been renamed to \"%s\"" +msgstr "Распореду „%s” је промењено име на „%s”" + msgid "list, add or remove command aliases" msgstr "исписује, додаје или уклања алијасе команди" +#, fuzzy +#| msgid "" +#| "list [] || add [[;...]] || addcompletion " +#| " [[;...]] || del " +#| "[...]" msgid "" "list [] || add [[;...]] || addcompletion " -" [[;...]] || del [...]" +" [[;...]] || del [...] " +"|| rename " msgstr "" "list [<алијас>] || add <алијас> [<команда>[;<команда>...]] || addcompletion " "<довршавање> <алијас> [<команда>[;<команда>...]] || del <алијас> " "[<алијас>...]" -#, no-c-format +#, fuzzy, no-c-format +#| msgid "" +#| " list: list aliases (without argument, this list is displayed)\n" +#| " add: add an alias\n" +#| "addcompletion: add an alias with a custom completion\n" +#| " del: delete an alias\n" +#| " completion: completion for alias: by default completion is done with " +#| "target command\n" +#| " note: you can use %%command to use completion of an " +#| "existing command\n" +#| " alias: name of alias\n" +#| " command: command name with arguments (many commands can be " +#| "separated by semicolons)\n" +#| "\n" +#| "Note: in command, special variables are replaced:\n" +#| " $n: argument 'n' (between 1 and 9)\n" +#| " $-m: arguments from 1 to 'm'\n" +#| " $n-: arguments from 'n' to last\n" +#| " $n-m: arguments from 'n' to 'm'\n" +#| " $*: all arguments\n" +#| " $~: last argument\n" +#| " $var: where \"var\" is a local variable of buffer (see /buffer " +#| "listvar)\n" +#| " examples: $nick, $channel, $server, $plugin, $name\n" +#| "\n" +#| "Examples:\n" +#| " alias /split to split window horizontally:\n" +#| " /alias add split /window splith\n" +#| " alias /hello to say \"hello\" on all channels but not on #weechat:\n" +#| " /alias add hello /allchan -exclude=#weechat hello\n" +#| " alias /forcejoin to send IRC command \"forcejoin\" with completion of /" +#| "sajoin:\n" +#| " /alias addcompletion %%sajoin forcejoin /quote forcejoin" msgid "" " list: list aliases (without argument, this list is displayed)\n" " add: add an alias\n" "addcompletion: add an alias with a custom completion\n" " del: delete an alias\n" +" rename: rename an alias\n" " completion: completion for alias: by default completion is done with " "target command\n" " note: you can use %%command to use completion of an existing " @@ -6231,6 +6289,8 @@ msgid "" " /alias add split /window splith\n" " alias /hello to say \"hello\" on all channels but not on #weechat:\n" " /alias add hello /allchan -exclude=#weechat hello\n" +" rename alias \"hello\" to \"Hello\":\n" +" /alias rename hello Hello\n" " alias /forcejoin to send IRC command \"forcejoin\" with completion of /" "sajoin:\n" " /alias addcompletion %%sajoin forcejoin /quote forcejoin" diff --git a/po/tr.po b/po/tr.po index e0bfb2662..23f17addc 100644 --- a/po/tr.po +++ b/po/tr.po @@ -20,7 +20,7 @@ msgid "" msgstr "" "Project-Id-Version: WeeChat\n" "Report-Msgid-Bugs-To: flashcode@flashtux.org\n" -"POT-Creation-Date: 2023-01-24 20:52+0100\n" +"POT-Creation-Date: 2023-01-28 15:14+0100\n" "PO-Revision-Date: 2022-10-15 22:51+0200\n" "Last-Translator: Emir SARI \n" "Language-Team: weechat-dev \n" @@ -130,6 +130,15 @@ msgstr "Tür" msgid "Constants" msgstr "Sabitler" +msgid "Rank" +msgstr "" + +msgid "Priority" +msgstr "" + +msgid "File" +msgstr "" + #, c-format msgid "%sAnother command \"%s\" already exists for plugin \"%s\"" msgstr "%sŞu eklenti için başka bir komut (\"%s\") halihazırda var: \"%s\"" @@ -6250,22 +6259,71 @@ msgstr "%s\"%s\" arması bulunamadı" msgid "Alias \"%s\" removed" msgstr "\"%s\" arması kaldırıldı" +#, fuzzy, c-format +#| msgid "%s%s: trigger \"%s\" already exists" +msgid "%sAlias \"%s\" already exists" +msgstr "%s%s: \"%s\" tetiği halihazırda mevcut" + +#, fuzzy, c-format +#| msgid "Layout \"%s\" has been renamed to \"%s\"" +msgid "Alias \"%s\" has been renamed to \"%s\"" +msgstr "\"%s\" diziliminin adı \"%s\" olarak değiştirildi" + msgid "list, add or remove command aliases" msgstr "komut armalarını listele, ekle veya kaldır" +#, fuzzy +#| msgid "" +#| "list [] || add [[;...]] || addcompletion " +#| " [[;...]] || del " +#| "[...]" msgid "" "list [] || add [[;...]] || addcompletion " -" [[;...]] || del [...]" +" [[;...]] || del [...] " +"|| rename " msgstr "" "list [] || add [[;...]] || addcompletion " " [[;...]] || del [...]" -#, no-c-format +#, fuzzy, no-c-format +#| msgid "" +#| " list: list aliases (without argument, this list is displayed)\n" +#| " add: add an alias\n" +#| "addcompletion: add an alias with a custom completion\n" +#| " del: delete an alias\n" +#| " completion: completion for alias: by default completion is done with " +#| "target command\n" +#| " note: you can use %%command to use completion of an " +#| "existing command\n" +#| " alias: name of alias\n" +#| " command: command name with arguments (many commands can be " +#| "separated by semicolons)\n" +#| "\n" +#| "Note: in command, special variables are replaced:\n" +#| " $n: argument 'n' (between 1 and 9)\n" +#| " $-m: arguments from 1 to 'm'\n" +#| " $n-: arguments from 'n' to last\n" +#| " $n-m: arguments from 'n' to 'm'\n" +#| " $*: all arguments\n" +#| " $~: last argument\n" +#| " $var: where \"var\" is a local variable of buffer (see /buffer " +#| "listvar)\n" +#| " examples: $nick, $channel, $server, $plugin, $name\n" +#| "\n" +#| "Examples:\n" +#| " alias /split to split window horizontally:\n" +#| " /alias add split /window splith\n" +#| " alias /hello to say \"hello\" on all channels but not on #weechat:\n" +#| " /alias add hello /allchan -exclude=#weechat hello\n" +#| " alias /forcejoin to send IRC command \"forcejoin\" with completion of /" +#| "sajoin:\n" +#| " /alias addcompletion %%sajoin forcejoin /quote forcejoin" msgid "" " list: list aliases (without argument, this list is displayed)\n" " add: add an alias\n" "addcompletion: add an alias with a custom completion\n" " del: delete an alias\n" +" rename: rename an alias\n" " completion: completion for alias: by default completion is done with " "target command\n" " note: you can use %%command to use completion of an existing " @@ -6290,6 +6348,8 @@ msgid "" " /alias add split /window splith\n" " alias /hello to say \"hello\" on all channels but not on #weechat:\n" " /alias add hello /allchan -exclude=#weechat hello\n" +" rename alias \"hello\" to \"Hello\":\n" +" /alias rename hello Hello\n" " alias /forcejoin to send IRC command \"forcejoin\" with completion of /" "sajoin:\n" " /alias addcompletion %%sajoin forcejoin /quote forcejoin" diff --git a/po/weechat.pot b/po/weechat.pot index 3e319ea06..366c9296b 100644 --- a/po/weechat.pot +++ b/po/weechat.pot @@ -21,7 +21,7 @@ msgid "" msgstr "" "Project-Id-Version: WeeChat\n" "Report-Msgid-Bugs-To: flashcode@flashtux.org\n" -"POT-Creation-Date: 2023-01-24 20:52+0100\n" +"POT-Creation-Date: 2023-01-28 15:14+0100\n" "PO-Revision-Date: 2014-08-16 10:27+0200\n" "Last-Translator: Sébastien Helleu \n" "Language-Team: weechat-dev \n" @@ -118,6 +118,15 @@ msgstr "" msgid "Constants" msgstr "" +msgid "Rank" +msgstr "" + +msgid "Priority" +msgstr "" + +msgid "File" +msgstr "" + #, c-format msgid "%sAnother command \"%s\" already exists for plugin \"%s\"" msgstr "" @@ -4268,12 +4277,21 @@ msgstr "" msgid "Alias \"%s\" removed" msgstr "" +#, c-format +msgid "%sAlias \"%s\" already exists" +msgstr "" + +#, c-format +msgid "Alias \"%s\" has been renamed to \"%s\"" +msgstr "" + msgid "list, add or remove command aliases" msgstr "" msgid "" "list [] || add [[;...]] || addcompletion " -" [[;...]] || del [...]" +" [[;...]] || del [...] " +"|| rename " msgstr "" #, no-c-format @@ -4282,6 +4300,7 @@ msgid "" " add: add an alias\n" "addcompletion: add an alias with a custom completion\n" " del: delete an alias\n" +" rename: rename an alias\n" " completion: completion for alias: by default completion is done with " "target command\n" " note: you can use %%command to use completion of an existing " @@ -4306,6 +4325,8 @@ msgid "" " /alias add split /window splith\n" " alias /hello to say \"hello\" on all channels but not on #weechat:\n" " /alias add hello /allchan -exclude=#weechat hello\n" +" rename alias \"hello\" to \"Hello\":\n" +" /alias rename hello Hello\n" " alias /forcejoin to send IRC command \"forcejoin\" with completion of /" "sajoin:\n" " /alias addcompletion %%sajoin forcejoin /quote forcejoin"