summaryrefslogtreecommitdiff
path: root/doc/fr
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2022-07-22 17:06:49 +0200
committerSébastien Helleu <flashcode@flashtux.org>2022-07-22 17:06:49 +0200
commitd43b9e99c13452d9e76caaf33fe008010a2e36a2 (patch)
tree41a79e3386e9e479552b02f3ef1322a5ef2cdb08 /doc/fr
parentd5c4342bceadc4d3c3997986cb48f3bd4235e8f8 (diff)
downloadweechat-d43b9e99c13452d9e76caaf33fe008010a2e36a2.zip
doc/scripting: add missing fields "paramN" and "num_params" in output of "irc_message_parse"
These new fields were added in version 3.4 with major improvements of the IRC message parser.
Diffstat (limited to 'doc/fr')
-rw-r--r--doc/fr/weechat_scripting.fr.adoc11
1 files changed, 11 insertions, 0 deletions
diff --git a/doc/fr/weechat_scripting.fr.adoc b/doc/fr/weechat_scripting.fr.adoc
index 9f5c88939..b4553368d 100644
--- a/doc/fr/weechat_scripting.fr.adoc
+++ b/doc/fr/weechat_scripting.fr.adoc
@@ -1387,6 +1387,14 @@ Le résultat est une table de hachage avec les clés suivantes
| Le texte (par exemple un message utilisateur).
| `+hello!+`
+| paramN | 3.4
+| Paramètre de commande (de 1 à N).
+| `+#weechat+`
+
+| num_params | 3.4
+| Nombre de paramètres de commande.
+| `+2+`
+
| pos_command | 1.3
| La position de _command_ dans le message ("-1" si _command_ n'a pas été trouvé).
| `+47+`
@@ -1425,6 +1433,9 @@ dict = weechat.info_get_hashtable(
# "channel": "#weechat",
# "arguments": "#weechat :hello!",
# "text": "hello!",
+# "param1": "#weechat",
+# "param2": "hello!",
+# "num_params": "2",
# "pos_command": "65",
# "pos_arguments": "73",
# "pos_channel": "73",