1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-06 09:43:13 +02:00

core: fix typo in /help eval

This commit is contained in:
Sebastien Helleu
2013-04-25 21:34:23 +02:00
parent 8219039867
commit bdbe7e0c37
17 changed files with 71 additions and 84 deletions
+29 -29
View File
@@ -207,40 +207,40 @@ infolists: zeigt Information über die Infolists an
/eval [-n] <expression>
[-n] <expression1> <operator> <expression2>
-n: zeigt das Ergebnis an, ohne dieses in den Buffer zu schreiben (debug Modus)
expression: Ausdruck welcher verarbeitet werden soll. Variablen im Format ${variable} werden ersetzt (siehe unten)
operator: ein logischer oder vergleichender Operand:
- logische Operanden:
&& boolean "und"
|| boolean "oder"
- vergleichende Operanden:
== gleich
!= ungleich
<= kleiner oder gleich
< kleiner
>= größer oder gleich
> größer
=~ stimmt mit regulärem Ausdruck überein
!~ stimmt NICHT mit regulärem Ausdruck überein
-n: display result without sending it to buffer (debug mode)
expression: expression to evaluate, variables with format ${variable} are replaced (see below)
operator: a logical or comparison operator:
- logical operators:
&& boolean "and"
|| boolean "or"
- comparison operators:
== equal
!= not equal
<= less or equal
< less
>= greater or equal
> greater
=~ is matching regex
!~ is NOT matching regex
Ein Ausdruck gilt als "wahr", sofern das Ergebnis nicht NULL, nicht leer und von "0" abweichend ist.
Der Vergleich findet zwischen zwei Integer statt, sofern die beiden Ausdrücke gültige Integer-Werte sind.
Um einen Vergleich zwischen zwei Zeichenketten zu erzwingen, müssen die Ausdrücke in Anführungszeichen gesetzt werden, zum Beispiel:
An expression is considered as "true" if it is not NULL, not empty, and different from "0".
The comparison is made using integers if the two expressions are valid integers.
To force a string comparison, add double quotes around each expression, for example:
50 > 100 ==> 0
"50" > "100" ==> 1
Einige Variablen werden im Ausdruck, mittels der Formatierung ${Variable}, ersetzt. Mögliche Variablen sind, nach Reihenfolge ihrer Priorität:
1. der Name einer Option (file.section.option)
2. der Name der lokalen Variablen für Buffer
3. ein hdata Name/Variable (der Wert wird automatisch als Zeichenkette konvertiert), Standardmäßig wird für "window" und "buffer" das aktuelle Fenster/Buffer verwendet.
Das Format für hdata:
hdata.var1.var2...: startet mit hdata (der Pointer muss bekannt sein) und fragt eine Variable nach der anderen ab (weitere hdata können folgen)
hdata(list).var1.var2...: startet hdata mittels einer Liste, zum Beispiel:
${buffer[gui_buffers].full_name}: der vollständige Name des ersten Buffers, in der verknüpften Liste aller Buffer
${plugin[weechat_plugins].name}: Name der ersten Erweiterung, in der verknüpften Liste aller Erweiterungen
Die vorhandenen Namen für hdata und Variablen sind in der "Anleitung für API Erweiterung", Bereich "weechat_hdata_get". beschrieben
Some variables are replaced in expression, using the format ${variable}, variable can be, by order of priority :
1. the name of an option (file.section.option)
2. the name of a local variable in buffer
3. a hdata name/variable (the value is automatically converted to string), by default "window" and "buffer" point to current window/buffer.
Format for hdata can be one of following:
hdata.var1.var2...: start with a hdata (pointer must be known), and ask variables one after one (other hdata can be followed)
hdata[list].var1.var2...: start with a hdata using a list, for example:
${buffer[gui_buffers].full_name}: full name of first buffer in linked list of buffers
${plugin[weechat_plugins].name}: name of first plugin in linked list of plugins
For name of hdata and variables, please look at "Plugin API reference", function "weechat_hdata_get".
Beispiele:
Examples:
/eval -n ${weechat.look.scroll_amount} ==> 3
/eval -n ${window} ==> 0x2549aa0
/eval -n ${window.buffer} ==> 0x2549320
+1 -1
View File
@@ -235,7 +235,7 @@ Some variables are replaced in expression, using the format ${variable}, variabl
3. a hdata name/variable (the value is automatically converted to string), by default "window" and "buffer" point to current window/buffer.
Format for hdata can be one of following:
hdata.var1.var2...: start with a hdata (pointer must be known), and ask variables one after one (other hdata can be followed)
hdata(list).var1.var2...: start with a hdata using a list, for example:
hdata[list].var1.var2...: start with a hdata using a list, for example:
${buffer[gui_buffers].full_name}: full name of first buffer in linked list of buffers
${plugin[weechat_plugins].name}: name of first plugin in linked list of plugins
For name of hdata and variables, please look at "Plugin API reference", function "weechat_hdata_get".
+1 -1
View File
@@ -235,7 +235,7 @@ Des variables sont remplacées dans l'expression, en utilisant le format ${varia
3. le nom d'un hdata/variable (la valeur est automatiquement convertie en chaîne), par défaut "window" et "buffer" pointent vers la fenêtre et le tampon courants.
Le format du hdata peut être le suivant :
hdata.var1.var2...: démarrer avec un hdata (le pointeur doit être connu), et demander les variables l'une après l'autre (d'autres hdata peuvent être suivis)
hdata(list).var1.var2...: démarrer avec un hdata en utilisant une liste, par exemple :
hdata[list].var1.var2...: démarrer avec un hdata en utilisant une liste, par exemple :
${buffer[gui_buffers].full_name}: nom complet du premier tampon dans la liste chaînée des tampons
${plugin[weechat_plugins].name}: nom de la première extension dans la liste chaînée des extensions
Pour le nom du hdata et des variables, voir la "Référence API extension", fonction "weechat_hdata_get".
+1 -1
View File
@@ -235,7 +235,7 @@ Some variables are replaced in expression, using the format ${variable}, variabl
3. a hdata name/variable (the value is automatically converted to string), by default "window" and "buffer" point to current window/buffer.
Format for hdata can be one of following:
hdata.var1.var2...: start with a hdata (pointer must be known), and ask variables one after one (other hdata can be followed)
hdata(list).var1.var2...: start with a hdata using a list, for example:
hdata[list].var1.var2...: start with a hdata using a list, for example:
${buffer[gui_buffers].full_name}: full name of first buffer in linked list of buffers
${plugin[weechat_plugins].name}: name of first plugin in linked list of plugins
For name of hdata and variables, please look at "Plugin API reference", function "weechat_hdata_get".
+1 -1
View File
@@ -235,7 +235,7 @@ Some variables are replaced in expression, using the format ${variable}, variabl
3. a hdata name/variable (the value is automatically converted to string), by default "window" and "buffer" point to current window/buffer.
Format for hdata can be one of following:
hdata.var1.var2...: start with a hdata (pointer must be known), and ask variables one after one (other hdata can be followed)
hdata(list).var1.var2...: start with a hdata using a list, for example:
hdata[list].var1.var2...: start with a hdata using a list, for example:
${buffer[gui_buffers].full_name}: full name of first buffer in linked list of buffers
${plugin[weechat_plugins].name}: name of first plugin in linked list of plugins
For name of hdata and variables, please look at "Plugin API reference", function "weechat_hdata_get".
+2 -2
View File
@@ -20,7 +20,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat 0.4.1-dev\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2013-04-23 21:20+0200\n"
"POT-Creation-Date: 2013-04-25 12:05+0200\n"
"PO-Revision-Date: 2013-03-16 17:49+0100\n"
"Last-Translator: Jiri Golembiovsky <golemj@gmail.com>\n"
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
@@ -1266,7 +1266,7 @@ msgid ""
"Format for hdata can be one of following:\n"
" hdata.var1.var2...: start with a hdata (pointer must be known), and ask "
"variables one after one (other hdata can be followed)\n"
" hdata(list).var1.var2...: start with a hdata using a list, for example:\n"
" hdata[list].var1.var2...: start with a hdata using a list, for example:\n"
" ${buffer[gui_buffers].full_name}: full name of first buffer in linked "
"list of buffers\n"
" ${plugin[weechat_plugins].name}: name of first plugin in linked list of "
+15 -28
View File
@@ -22,8 +22,8 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat 0.4.1-dev\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2013-04-23 21:20+0200\n"
"PO-Revision-Date: 2013-04-16 20:07+0200\n"
"POT-Creation-Date: 2013-04-25 12:05+0200\n"
"PO-Revision-Date: 2013-04-25 12:07+0200\n"
"Last-Translator: Nils Görs <weechatter@arcor.de>\n"
"Language-Team: German <weechatter@arcor.de>\n"
"Language: de\n"
@@ -1318,7 +1318,7 @@ msgid ""
"Format for hdata can be one of following:\n"
" hdata.var1.var2...: start with a hdata (pointer must be known), and ask "
"variables one after one (other hdata can be followed)\n"
" hdata(list).var1.var2...: start with a hdata using a list, for example:\n"
" hdata[list].var1.var2...: start with a hdata using a list, for example:\n"
" ${buffer[gui_buffers].full_name}: full name of first buffer in linked "
"list of buffers\n"
" ${plugin[weechat_plugins].name}: name of first plugin in linked list of "
@@ -1341,10 +1341,8 @@ msgid ""
" /eval -n abcd =~ (?-i)^abc ==> 1\n"
" /eval -n abcd !~ abc ==> 0"
msgstr ""
" -n: zeigt das Ergebnis an, ohne dieses in den Buffer zu schreiben "
"(debug Modus)\n"
"expression: Ausdruck welcher verarbeitet werden soll. Variablen im Format "
"${variable} werden ersetzt (siehe unten)\n"
" -n: zeigt das Ergebnis an, ohne dieses in den Buffer zu schreiben (debug Modus)\n"
"expression: Ausdruck welcher verarbeitet werden soll. Variablen im Format ${variable} werden ersetzt (siehe unten)\n"
" operator: ein logischer oder vergleichender Operand:\n"
" - logische Operanden:\n"
" && boolean \"und\"\n"
@@ -1359,33 +1357,22 @@ msgstr ""
" =~ stimmt mit regulärem Ausdruck überein\n"
" !~ stimmt NICHT mit regulärem Ausdruck überein\n"
"\n"
"Ein Ausdruck gilt als \"wahr\", sofern das Ergebnis nicht NULL, nicht leer "
"und von \"0\" abweichend ist.\n"
"Der Vergleich findet zwischen zwei Integer statt, sofern die beiden "
"Ausdrücke gültige Integer-Werte sind.\n"
"Um einen Vergleich zwischen zwei Zeichenketten zu erzwingen, müssen die "
"Ausdrücke in Anführungszeichen gesetzt werden, zum Beispiel:\n"
"Ein Ausdruck gilt als \"wahr\", sofern das Ergebnis nicht NULL, nicht leer und von \"0\" abweichend ist.\n"
"Der Vergleich findet zwischen zwei Integer statt, sofern die beiden Ausdrücke gültige Integer-Werte sind.\n"
"Um einen Vergleich zwischen zwei Zeichenketten zu erzwingen, müssen die Ausdrücke in Anführungszeichen gesetzt werden, zum Beispiel:\n"
" 50 > 100 ==> 0\n"
" \"50\" > \"100\" ==> 1\n"
"\n"
"Einige Variablen werden im Ausdruck, mittels der Formatierung ${Variable}, "
"ersetzt. Mögliche Variablen sind, nach Reihenfolge ihrer Priorität:\n"
"Einige Variablen werden im Ausdruck, mittels der Formatierung ${Variable}, ersetzt. Mögliche Variablen sind, nach Reihenfolge ihrer Priorität:\n"
" 1. der Name einer Option (file.section.option)\n"
" 2. der Name der lokalen Variablen für Buffer\n"
" 3. ein hdata Name/Variable (der Wert wird automatisch als Zeichenkette "
"konvertiert), Standardmäßig wird für \"window\" und \"buffer\" das aktuelle "
"Fenster/Buffer verwendet.\n"
" 3. ein hdata Name/Variable (der Wert wird automatisch als Zeichenkette konvertiert), Standardmäßig wird für \"window\" und \"buffer\" das aktuelle Fenster/Buffer verwendet.\n"
"Das Format für hdata:\n"
" hdata.var1.var2...: startet mit hdata (der Pointer muss bekannt sein) und "
"fragt eine Variable nach der anderen ab (weitere hdata können folgen)\n"
" hdata(list).var1.var2...: startet hdata mittels einer Liste, zum "
"Beispiel:\n"
" ${buffer[gui_buffers].full_name}: der vollständige Name des ersten "
"Buffers, in der verknüpften Liste aller Buffer\n"
" ${plugin[weechat_plugins].name}: Name der ersten Erweiterung, in der "
"verknüpften Liste aller Erweiterungen\n"
"Die vorhandenen Namen für hdata und Variablen sind in der \"Anleitung für "
"API Erweiterung\", Bereich \"weechat_hdata_get\". beschrieben\n"
" hdata.var1.var2...: startet mit hdata (der Pointer muss bekannt sein) und fragt eine Variable nach der anderen ab (weitere hdata können folgen)\n"
" hdata[list].var1.var2...: startet hdata mittels einer Liste, zum Beispiel:\n"
" ${buffer[gui_buffers].full_name}: der vollständige Name des ersten Buffers, in der verknüpften Liste aller Buffer\n"
" ${plugin[weechat_plugins].name}: Name der ersten Erweiterung, in der verknüpften Liste aller Erweiterungen\n"
"Die vorhandenen Namen für hdata und Variablen sind in der \"Anleitung für API Erweiterung\", Bereich \"weechat_hdata_get\". beschrieben\n"
"\n"
"Beispiele:\n"
" /eval -n ${weechat.look.scroll_amount} ==> 3\n"
+2 -2
View File
@@ -22,7 +22,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat 0.4.1-dev\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2013-04-23 21:20+0200\n"
"POT-Creation-Date: 2013-04-25 12:05+0200\n"
"PO-Revision-Date: 2013-03-17 08:20+0100\n"
"Last-Translator: Elián Hanisch <lambdae2@gmail.com>\n"
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
@@ -1300,7 +1300,7 @@ msgid ""
"Format for hdata can be one of following:\n"
" hdata.var1.var2...: start with a hdata (pointer must be known), and ask "
"variables one after one (other hdata can be followed)\n"
" hdata(list).var1.var2...: start with a hdata using a list, for example:\n"
" hdata[list].var1.var2...: start with a hdata using a list, for example:\n"
" ${buffer[gui_buffers].full_name}: full name of first buffer in linked "
"list of buffers\n"
" ${plugin[weechat_plugins].name}: name of first plugin in linked list of "
+4 -4
View File
@@ -21,8 +21,8 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat 0.4.1-dev\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2013-04-23 21:20+0200\n"
"PO-Revision-Date: 2013-04-23 21:21+0200\n"
"POT-Creation-Date: 2013-04-25 12:05+0200\n"
"PO-Revision-Date: 2013-04-25 12:06+0200\n"
"Last-Translator: Sebastien Helleu <flashcode@flashtux.org>\n"
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
"Language: fr\n"
@@ -1295,7 +1295,7 @@ msgid ""
"Format for hdata can be one of following:\n"
" hdata.var1.var2...: start with a hdata (pointer must be known), and ask "
"variables one after one (other hdata can be followed)\n"
" hdata(list).var1.var2...: start with a hdata using a list, for example:\n"
" hdata[list].var1.var2...: start with a hdata using a list, for example:\n"
" ${buffer[gui_buffers].full_name}: full name of first buffer in linked "
"list of buffers\n"
" ${plugin[weechat_plugins].name}: name of first plugin in linked list of "
@@ -1355,7 +1355,7 @@ msgstr ""
" hdata.var1.var2...: démarrer avec un hdata (le pointeur doit être connu), "
"et demander les variables l'une après l'autre (d'autres hdata peuvent être "
"suivis)\n"
" hdata(list).var1.var2...: démarrer avec un hdata en utilisant une liste, "
" hdata[list].var1.var2...: démarrer avec un hdata en utilisant une liste, "
"par exemple :\n"
" ${buffer[gui_buffers].full_name}: nom complet du premier tampon dans la "
"liste chaînée des tampons\n"
+2 -2
View File
@@ -20,7 +20,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat 0.4.1-dev\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2013-04-23 21:20+0200\n"
"POT-Creation-Date: 2013-04-25 12:05+0200\n"
"PO-Revision-Date: 2013-03-16 17:50+0100\n"
"Last-Translator: Andras Voroskoi <voroskoi@frugalware.org>\n"
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
@@ -1196,7 +1196,7 @@ msgid ""
"Format for hdata can be one of following:\n"
" hdata.var1.var2...: start with a hdata (pointer must be known), and ask "
"variables one after one (other hdata can be followed)\n"
" hdata(list).var1.var2...: start with a hdata using a list, for example:\n"
" hdata[list].var1.var2...: start with a hdata using a list, for example:\n"
" ${buffer[gui_buffers].full_name}: full name of first buffer in linked "
"list of buffers\n"
" ${plugin[weechat_plugins].name}: name of first plugin in linked list of "
+2 -2
View File
@@ -20,7 +20,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat 0.4.1-dev\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2013-04-23 21:20+0200\n"
"POT-Creation-Date: 2013-04-25 12:05+0200\n"
"PO-Revision-Date: 2013-03-17 08:20+0100\n"
"Last-Translator: Marco Paolone <marcopaolone@gmail.com>\n"
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
@@ -1287,7 +1287,7 @@ msgid ""
"Format for hdata can be one of following:\n"
" hdata.var1.var2...: start with a hdata (pointer must be known), and ask "
"variables one after one (other hdata can be followed)\n"
" hdata(list).var1.var2...: start with a hdata using a list, for example:\n"
" hdata[list].var1.var2...: start with a hdata using a list, for example:\n"
" ${buffer[gui_buffers].full_name}: full name of first buffer in linked "
"list of buffers\n"
" ${plugin[weechat_plugins].name}: name of first plugin in linked list of "
+2 -2
View File
@@ -20,7 +20,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat 0.4.1-dev\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2013-04-23 21:20+0200\n"
"POT-Creation-Date: 2013-04-25 12:05+0200\n"
"PO-Revision-Date: 2013-03-17 08:20+0100\n"
"Last-Translator: AYANOKOUZI, Ryuunosuke <i38w7i3@yahoo.co.jp>\n"
"Language-Team: Japanese <https://github.com/l/WeeChat>\n"
@@ -1272,7 +1272,7 @@ msgid ""
"Format for hdata can be one of following:\n"
" hdata.var1.var2...: start with a hdata (pointer must be known), and ask "
"variables one after one (other hdata can be followed)\n"
" hdata(list).var1.var2...: start with a hdata using a list, for example:\n"
" hdata[list].var1.var2...: start with a hdata using a list, for example:\n"
" ${buffer[gui_buffers].full_name}: full name of first buffer in linked "
"list of buffers\n"
" ${plugin[weechat_plugins].name}: name of first plugin in linked list of "
+2 -2
View File
@@ -21,7 +21,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat 0.4.1-dev\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2013-04-23 21:20+0200\n"
"POT-Creation-Date: 2013-04-25 12:05+0200\n"
"PO-Revision-Date: 2013-03-17 08:20+0100\n"
"Last-Translator: Krzysztof Korościk <soltys@szluug.org>\n"
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
@@ -1302,7 +1302,7 @@ msgid ""
"Format for hdata can be one of following:\n"
" hdata.var1.var2...: start with a hdata (pointer must be known), and ask "
"variables one after one (other hdata can be followed)\n"
" hdata(list).var1.var2...: start with a hdata using a list, for example:\n"
" hdata[list].var1.var2...: start with a hdata using a list, for example:\n"
" ${buffer[gui_buffers].full_name}: full name of first buffer in linked "
"list of buffers\n"
" ${plugin[weechat_plugins].name}: name of first plugin in linked list of "
+2 -2
View File
@@ -21,7 +21,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat 0.4.1-dev\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2013-04-23 21:20+0200\n"
"POT-Creation-Date: 2013-04-25 12:05+0200\n"
"PO-Revision-Date: 2013-03-17 08:20+0100\n"
"Last-Translator: Sergio Durigan Junior <sergiosdj@gmail.com>\n"
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
@@ -1333,7 +1333,7 @@ msgid ""
"Format for hdata can be one of following:\n"
" hdata.var1.var2...: start with a hdata (pointer must be known), and ask "
"variables one after one (other hdata can be followed)\n"
" hdata(list).var1.var2...: start with a hdata using a list, for example:\n"
" hdata[list].var1.var2...: start with a hdata using a list, for example:\n"
" ${buffer[gui_buffers].full_name}: full name of first buffer in linked "
"list of buffers\n"
" ${plugin[weechat_plugins].name}: name of first plugin in linked list of "
+2 -2
View File
@@ -21,7 +21,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat 0.4.1-dev\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2013-04-23 21:20+0200\n"
"POT-Creation-Date: 2013-04-25 12:05+0200\n"
"PO-Revision-Date: 2013-03-16 17:50+0100\n"
"Last-Translator: Aleksey V Zapparov AKA ixti <ixti@member.fsf.org>\n"
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
@@ -1217,7 +1217,7 @@ msgid ""
"Format for hdata can be one of following:\n"
" hdata.var1.var2...: start with a hdata (pointer must be known), and ask "
"variables one after one (other hdata can be followed)\n"
" hdata(list).var1.var2...: start with a hdata using a list, for example:\n"
" hdata[list].var1.var2...: start with a hdata using a list, for example:\n"
" ${buffer[gui_buffers].full_name}: full name of first buffer in linked "
"list of buffers\n"
" ${plugin[weechat_plugins].name}: name of first plugin in linked list of "
+2 -2
View File
@@ -21,7 +21,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat 0.4.1-dev\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2013-04-23 21:20+0200\n"
"POT-Creation-Date: 2013-04-25 12:05+0200\n"
"PO-Revision-Date: 2013-02-14 18:20+0100\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
@@ -1071,7 +1071,7 @@ msgid ""
"Format for hdata can be one of following:\n"
" hdata.var1.var2...: start with a hdata (pointer must be known), and ask "
"variables one after one (other hdata can be followed)\n"
" hdata(list).var1.var2...: start with a hdata using a list, for example:\n"
" hdata[list].var1.var2...: start with a hdata using a list, for example:\n"
" ${buffer[gui_buffers].full_name}: full name of first buffer in linked "
"list of buffers\n"
" ${plugin[weechat_plugins].name}: name of first plugin in linked list of "
+1 -1
View File
@@ -6123,7 +6123,7 @@ command_init ()
" hdata.var1.var2...: start with a hdata (pointer must be "
"known), and ask variables one after one (other hdata can "
"be followed)\n"
" hdata(list).var1.var2...: start with a hdata using a "
" hdata[list].var1.var2...: start with a hdata using a "
"list, for example:\n"
" ${buffer[gui_buffers].full_name}: full name of first "
"buffer in linked list of buffers\n"