diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2012-10-09 21:33:09 +0200 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2012-10-09 21:33:09 +0200 |
commit | 5cfeb2f2bcad5a4b2c8350d386c28e131acfec30 (patch) | |
tree | df603051c087fb1f051373c35ef425079a527a85 /doc/it/autogen | |
parent | aa6b88638632343516f175fd572417b7d54d483e (diff) | |
download | weechat-5cfeb2f2bcad5a4b2c8350d386c28e131acfec30.zip |
irc: add option "-noswitch" for command /join (task #12275)
Diffstat (limited to 'doc/it/autogen')
-rw-r--r-- | doc/it/autogen/plugin_api/hdata.txt | 5 | ||||
-rw-r--r-- | doc/it/autogen/user/irc_commands.txt | 14 |
2 files changed, 11 insertions, 8 deletions
diff --git a/doc/it/autogen/plugin_api/hdata.txt b/doc/it/autogen/plugin_api/hdata.txt index 6d74895eb..e7d4896ae 100644 --- a/doc/it/autogen/plugin_api/hdata.txt +++ b/doc/it/autogen/plugin_api/hdata.txt @@ -189,8 +189,9 @@ 'last_redirect' (pointer, hdata: "irc_redirect") + 'notify_list' (pointer, hdata: "irc_notify") + 'last_notify' (pointer, hdata: "irc_notify") + - 'manual_joins' (hashtable) + - 'channel_join_key' (hashtable) + + 'join_manual' (hashtable) + + 'join_channel_key' (hashtable) + + 'join_noswitch' (hashtable) + 'buffer' (pointer, hdata: "buffer") + 'buffer_as_string' (string) + 'channels' (pointer, hdata: "irc_channel") + diff --git a/doc/it/autogen/user/irc_commands.txt b/doc/it/autogen/user/irc_commands.txt index df12ba5d5..a9fc3909d 100644 --- a/doc/it/autogen/user/irc_commands.txt +++ b/doc/it/autogen/user/irc_commands.txt @@ -212,16 +212,18 @@ nick: nick [[command_irc_join]] [command]*`join`* entra in un canale:: ........................................ -/join [-server <server>] [<canale1>[,<canale2>...]] [<chiave1>[,<chiave2>...]] +/join [-noswitch] [-server <server>] [<channel1>[,<channel2>...]] [<key1>[,<key2>...]] -server: invia a questo server (nome interno) -canale: nome del canale in cui entrare -chiave: chiave per entrare nel canale (i canali con una chiave devono essere primi nella lista) +-noswitch: do not switch to new buffer + server: send to this server (internal name) + channel: channel name to join + key: key to join the channel (channels with a key must be the first in list) -Esempi: +Examples: /join #weechat - /join #canaleprotetto,#weechat chiave + /join #protectedchan,#weechat key /join -server freenode #weechat + /join -noswitch #weechat ........................................ [[command_irc_kick]] |