summaryrefslogtreecommitdiff
path: root/doc/de
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2020-10-21 19:10:37 +0200
committerSébastien Helleu <flashcode@flashtux.org>2020-10-21 19:10:37 +0200
commit0ff08e54f5f0715c2e4c27a8c987d844be1a462e (patch)
tree9c3e2fbaadcadfd7e2a5be9bd7f05149ca100563 /doc/de
parent30e48336f46ff68598e9007445dbfa9f5dd00865 (diff)
downloadweechat-0ff08e54f5f0715c2e4c27a8c987d844be1a462e.zip
trigger: add variable "tg_argc" in data set by command trigger (closes #1576)
Diffstat (limited to 'doc/de')
-rw-r--r--doc/de/weechat_user.de.adoc8
1 files changed, 6 insertions, 2 deletions
diff --git a/doc/de/weechat_user.de.adoc b/doc/de/weechat_user.de.adoc
index e18cef211..fbb2c1a13 100644
--- a/doc/de/weechat_user.de.adoc
+++ b/doc/de/weechat_user.de.adoc
@@ -4297,8 +4297,12 @@ Der Callback von "command" legt folgende Variablen in der Hashtable an:
|===
| Variable | Typ | Beschreibung
| buffer | pointer | Buffer.
-| tg_argvN | string | Argument #N.
-| tg_argv_eolN | string | von Argument #N bis zum Ende der Argumente.
+// TRANSLATION MISSING
+| tg_argc | string | The number of arguments (the command itself counts for one).
+// TRANSLATION MISSING
+| tg_argvN | string | Argument #N (`+tg_argv0+` is the command itself, the others are command arguments).
+// TRANSLATION MISSING
+| tg_argv_eolN | string | von Argument #N bis zum Ende der Argumente (`+tg_argv_eol0+` includes the command itself).
|===
[[trigger_data_command_run]]