summaryrefslogtreecommitdiff
path: root/doc/it
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2023-06-03 21:38:15 +0200
committerSébastien Helleu <flashcode@flashtux.org>2023-06-03 21:40:51 +0200
commit31e2e7d45ce14e3c5632cb9c93e9e37e2eeebeeb (patch)
treeb928a4d6ec14636d2f2cc8df83cb23f50a54d709 /doc/it
parent43dee8ce548856f4d65caad66c1b7dba4d8b603e (diff)
downloadweechat-31e2e7d45ce14e3c5632cb9c93e9e37e2eeebeeb.zip
doc/user: add new FIFO syntax (issue #1950)
Diffstat (limited to 'doc/it')
-rw-r--r--doc/it/weechat_user.it.adoc17
1 files changed, 17 insertions, 0 deletions
diff --git a/doc/it/weechat_user.it.adoc b/doc/it/weechat_user.it.adoc
index f94f1328f..0acf8e6bd 100644
--- a/doc/it/weechat_user.it.adoc
+++ b/doc/it/weechat_user.it.adoc
@@ -4948,6 +4948,15 @@ La sintassi per i comandi/testo della pipe FIFO è una delle seguenti:
*testo o comando qui
....
+// TRANSLATION MISSING
+Backslashes can be interpreted with this format, where `*` is replaced by `\`,
+allowing for example to send multiline messages:
+
+....
+ plugin.buffer \text or command here
+ \text or command here
+....
+
Alcuni esempi:
// TRANSLATION MISSING
@@ -4965,6 +4974,14 @@ $ echo 'irc.libera.#weechat *hello!' >/run/user/1000/weechat/weechat_fifo_12345
----
// TRANSLATION MISSING
+* Send a multiline message on IRC #test channel, if capability "draft/multiline"
+ is enabled on the ergo server:
+
+----
+$ echo 'irc.ergo.#test \hello\n...on two lines!' >/run/user/1000/weechat/weechat_fifo_12345
+----
+
+// TRANSLATION MISSING
* Send a message on current buffer:
----