diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2015-12-02 19:46:34 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2015-12-02 19:46:34 +0100 |
commit | 6f0151e12888c988ac35f2a2867f6f9a32066609 (patch) | |
tree | 202c2b55e6020abbfff1b1137c4d6115461f798a /doc/it | |
parent | 2a494227b49d221ff57edbfc063b5acf7ab43053 (diff) | |
download | weechat-6f0151e12888c988ac35f2a2867f6f9a32066609.zip |
fifo: add /fifo command
Diffstat (limited to 'doc/it')
-rw-r--r-- | doc/it/autogen/user/fifo_commands.asciidoc | 29 | ||||
-rw-r--r-- | doc/it/weechat_user.it.asciidoc | 5 |
2 files changed, 34 insertions, 0 deletions
diff --git a/doc/it/autogen/user/fifo_commands.asciidoc b/doc/it/autogen/user/fifo_commands.asciidoc new file mode 100644 index 000000000..66564ac6e --- /dev/null +++ b/doc/it/autogen/user/fifo_commands.asciidoc @@ -0,0 +1,29 @@ +// +// This file is auto-generated by script docgen.py. +// DO NOT EDIT BY HAND! +// +[[command_fifo_fifo]] +[command]*`fifo`* fifo plugin configuration:: + +---- +/fifo enable|disable|toggle + + enable: enable FIFO pipe +disable: disable FIFO pipe + toggle: toggle FIFO pipe + +FIFO pipe is used as remote control of WeeChat: you can send commands or text to the FIFO pipe from your shell. +By default the FIFO pipe is in ~/.weechat/weechat_fifo_xxx ("xxx" is the WeeChat PID). + +The expected format is one of: + plugin.buffer *text or command here + *text or command here + +For example to change your freenode nick: + echo 'irc.server.freenode */nick newnick' >~/.weechat/weechat_fifo_12345 + +Please read the user's guide for more info and examples. + +Examples: + /fifo toggle +---- diff --git a/doc/it/weechat_user.it.asciidoc b/doc/it/weechat_user.it.asciidoc index 887995c9d..69394f2aa 100644 --- a/doc/it/weechat_user.it.asciidoc +++ b/doc/it/weechat_user.it.asciidoc @@ -2207,6 +2207,11 @@ eseguito con: $ ./auto_weechat_command 'irc.freenode.#weechat *ciao' ---- +[[fifo_commands]] +==== Comandi + +include::autogen/user/fifo_commands.asciidoc[] + [[irc_plugin]] === Plugin IRC |