diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2019-09-22 20:41:00 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2019-09-22 20:41:00 +0200 |
commit | 39b6fb61370de2591146460bd5414955a234801e (patch) | |
tree | 2b3ee2cfff024cbc3455ae68d38166a04ed20f6c /doc/en/autogen/user/irc_options.adoc | |
parent | 12ee9cb75cb49528ab58cf9b821112fab9dcb82f (diff) | |
download | weechat-39b6fb61370de2591146460bd5414955a234801e.zip |
irc: remove option irc.network.channel_encode, add server option "charset_message" (closes #832)
This new option controls which part of the IRC message is decoded/encoded to
the target charset, and the new default behavior is to decode/encode the whole
IRC message (behavior in WeeChat >= 1.3 was to decode/encode only the text by
default).
Diffstat (limited to 'doc/en/autogen/user/irc_options.adoc')
-rw-r--r-- | doc/en/autogen/user/irc_options.adoc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/en/autogen/user/irc_options.adoc b/doc/en/autogen/user/irc_options.adoc index ead67d226..4955f8777 100644 --- a/doc/en/autogen/user/irc_options.adoc +++ b/doc/en/autogen/user/irc_options.adoc @@ -446,12 +446,6 @@ ** values: any string ** default value: `+"*!$ident@$host"+` -* [[option_irc.network.channel_encode]] *irc.network.channel_encode* -** description: pass:none[decode/encode channel name inside messages using charset options; it is recommended to keep that off if you use only UTF-8 in channel names; you can enable this option if you are using an exotic charset like ISO in channel names] -** type: boolean -** values: on, off -** default value: `+off+` - * [[option_irc.network.colors_receive]] *irc.network.colors_receive* ** description: pass:none[when off, colors codes are ignored in incoming messages] ** type: boolean @@ -596,6 +590,12 @@ ** values: any string ** default value: `+""+` +* [[option_irc.server_default.charset_message]] *irc.server_default.charset_message* +** description: pass:none[part of the IRC message (received or sent) which is decoded/encoded to the target charset; message = the whole IRC message (default), channel = starting from the channel name only (if found, with fallback on text), text = starting from the text only (you should try this value if you have issues with the channel name encoding)] +** type: integer +** values: message, channel, text +** default value: `+message+` + * [[option_irc.server_default.command]] *irc.server_default.command* ** description: pass:none[command(s) to run after connection to server and before auto-join of channels (many commands can be separated by ";", use "\;" for a semicolon, special variables $nick, $channel and $server are replaced by their value) (note: content is evaluated, see /help eval; server options are evaluated with ${irc_server.xxx} and ${server} is replaced by the server name)] ** type: string |