diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2007-07-13 15:38:26 +0000 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2007-07-13 15:38:26 +0000 |
commit | feec343ffb74b2e317b89b0af2276320a9211b0c (patch) | |
tree | 7572b5442c8527d3e6e92159e5f6ba82dbaea287 /doc/en | |
parent | ddc10d0164a83a578f8ea66dde54054c6ae93440 (diff) | |
download | weechat-feec343ffb74b2e317b89b0af2276320a9211b0c.zip |
Added "-nojoin" option for /connect and /reconnect commands (task #7074), added "%*" to completion template (repeat last completion).
Diffstat (limited to 'doc/en')
-rw-r--r-- | doc/en/weechat.en.xml | 8 | ||||
-rw-r--r-- | doc/en/weechat_commands.xml | 6 |
2 files changed, 12 insertions, 2 deletions
diff --git a/doc/en/weechat.en.xml b/doc/en/weechat.en.xml index 764f62ff6..bffbddba9 100644 --- a/doc/en/weechat.en.xml +++ b/doc/en/weechat.en.xml @@ -2364,6 +2364,14 @@ msg_handler = plugin->msg_handler_add (plugin, "KICK", <entry>no completion for argument</entry> </row> <row> + <entry><literal>%*</literal></entry> + <entry> + repeat last completion for all following arguments + (this code has to be at the end of completion + template, preceded by "|") + </entry> + </row> + <row> <entry><literal>%a</literal></entry> <entry>alias</entry> </row> diff --git a/doc/en/weechat_commands.xml b/doc/en/weechat_commands.xml index 72bf9daa3..d93fe1b42 100644 --- a/doc/en/weechat_commands.xml +++ b/doc/en/weechat_commands.xml @@ -62,12 +62,13 @@ clear window(s) number: clear buffer by number </programlisting> -<command>connect [-all | servername [servername ...]]</command> +<command>connect [-all [-nojoin] | [-nojoin] servername [servername ...]]</command> <programlisting> connect to server(s) -all: connect to all servers servername: server name to connect + -nojoin: do not join any channel (even if autojoin is enabled on server) </programlisting> <command>disconnect [-all | servername [servername ...]]</command> @@ -149,12 +150,13 @@ autoload: autoload plugins in system or user directory Without argument, /plugin command lists loaded plugins. </programlisting> -<command>reconnect [-all | servername [servername ...]]</command> +<command>reconnect [-all [-nojoin] | servername [servername ...]] [-nojoin]</command> <programlisting> reconnect to server(s) -all: reconnect to all servers servername: server name to reconnect + -nojoin: do not join any channel (even if autojoin is enabled on server) </programlisting> <command>server [servername] | [servername hostname port [-auto | -noauto] [-ipv6] [-ssl] [-pwd password] [-nicks nick1 nick2 nick3] [-username username] [-realname realname] [-command command] [-autojoin channel[,channel]] ] | [del servername]</command> |