summaryrefslogtreecommitdiff
path: root/doc/en
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2012-10-09 21:33:09 +0200
committerSebastien Helleu <flashcode@flashtux.org>2012-10-09 21:33:09 +0200
commit5cfeb2f2bcad5a4b2c8350d386c28e131acfec30 (patch)
treedf603051c087fb1f051373c35ef425079a527a85 /doc/en
parentaa6b88638632343516f175fd572417b7d54d483e (diff)
downloadweechat-5cfeb2f2bcad5a4b2c8350d386c28e131acfec30.zip
irc: add option "-noswitch" for command /join (task #12275)
Diffstat (limited to 'doc/en')
-rw-r--r--doc/en/autogen/plugin_api/hdata.txt5
-rw-r--r--doc/en/autogen/user/irc_commands.txt10
2 files changed, 9 insertions, 6 deletions
diff --git a/doc/en/autogen/plugin_api/hdata.txt b/doc/en/autogen/plugin_api/hdata.txt
index 71439fdff..3b8bc5793 100644
--- a/doc/en/autogen/plugin_api/hdata.txt
+++ b/doc/en/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/en/autogen/user/irc_commands.txt b/doc/en/autogen/user/irc_commands.txt
index 0b0c59769..f7509d988 100644
--- a/doc/en/autogen/user/irc_commands.txt
+++ b/doc/en/autogen/user/irc_commands.txt
@@ -212,16 +212,18 @@ nick: nick
[[command_irc_join]]
[command]*`join`* join a channel::
........................................
-/join [-server <server>] [<channel1>[,<channel2>...]] [<key1>[,<key2>...]]
+/join [-noswitch] [-server <server>] [<channel1>[,<channel2>...]] [<key1>[,<key2>...]]
- 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)
+-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)
Examples:
/join #weechat
/join #protectedchan,#weechat key
/join -server freenode #weechat
+ /join -noswitch #weechat
........................................
[[command_irc_kick]]