summaryrefslogtreecommitdiff
path: root/doc/en
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2011-11-04 12:47:01 +0100
committerSebastien Helleu <flashcode@flashtux.org>2011-11-04 12:47:01 +0100
commit8503857d28a41e42e0d232a508b1534827c7e737 (patch)
tree0eb9030ef40b146214b5c991609d7244c5c9a6dc /doc/en
parentabd95bf1b189c571a618bb0331deb4e6772b1d03 (diff)
downloadweechat-8503857d28a41e42e0d232a508b1534827c7e737.zip
irc: allow URL "irc://" in command /connect
Diffstat (limited to 'doc/en')
-rw-r--r--doc/en/autogen/user/irc_commands.txt10
1 files changed, 6 insertions, 4 deletions
diff --git a/doc/en/autogen/user/irc_commands.txt b/doc/en/autogen/user/irc_commands.txt
index fdf9dc841..42316c583 100644
--- a/doc/en/autogen/user/irc_commands.txt
+++ b/doc/en/autogen/user/irc_commands.txt
@@ -55,12 +55,13 @@ Without argument, this command display ban list for current channel.
[[command_irc_connect]]
[command]*`connect`* connect to IRC server(s)::
........................................
-/connect [<server> [<server>...] | <hostname>[/<port>]] [-<option>[=<value>]] [-no<option>] [-nojoin] [-switch]
+/connect <server> [<server>...] [-<option>[=<value>]] [-no<option>] [-nojoin] [-switch]
-all|-open [-nojoin] [-switch]
- server: internal server name to connect (server must have been created by /server add)
- hostname: hostname (or IP) of a server (this will create a TEMPORARY server)
- port: port for server (6667 by default)
+ server: server name, which can be:
+ - internal server name (created by /server add, recommended usage)
+ - hostname/port or IP/port (this will create a TEMPORARY server), port is 6667 by default
+ - URL with format: irc[6][s]://[nickname[:password]@]irc.example.org[:port][/#channel1][,#channel2[...]]
option: set option for server (for boolean option, value can be omitted)
nooption: set boolean option to 'off' (for example: -nossl)
-all: connect to all servers defined in configuration
@@ -74,6 +75,7 @@ Examples:
/connect irc6.oftc.net/6667 -ipv6
/connect irc6.oftc.net/6697 -ipv6 -ssl
/connect my.server.org/6697 -ssl -password=test
+ /connect irc://nick@irc.oftc.net/#channel
/connect -switch
........................................