diff options
Diffstat (limited to 'doc/en/autogen')
-rw-r--r-- | doc/en/autogen/user/aspell_options.adoc | 27 | ||||
-rw-r--r-- | doc/en/autogen/user/charset_options.adoc | 6 | ||||
-rw-r--r-- | doc/en/autogen/user/exec_options.adoc | 12 | ||||
-rw-r--r-- | doc/en/autogen/user/fifo_options.adoc | 6 | ||||
-rw-r--r-- | doc/en/autogen/user/irc_options.adoc | 375 | ||||
-rw-r--r-- | doc/en/autogen/user/logger_options.adoc | 39 | ||||
-rw-r--r-- | doc/en/autogen/user/relay_options.adoc | 84 | ||||
-rw-r--r-- | doc/en/autogen/user/script_options.adoc | 123 | ||||
-rw-r--r-- | doc/en/autogen/user/sec_options.adoc | 12 | ||||
-rw-r--r-- | doc/en/autogen/user/trigger_options.adoc | 33 | ||||
-rw-r--r-- | doc/en/autogen/user/weechat_options.adoc | 630 | ||||
-rw-r--r-- | doc/en/autogen/user/xfer_options.adoc | 84 |
12 files changed, 954 insertions, 477 deletions
diff --git a/doc/en/autogen/user/aspell_options.adoc b/doc/en/autogen/user/aspell_options.adoc index 093c60773..ddae349d2 100644 --- a/doc/en/autogen/user/aspell_options.adoc +++ b/doc/en/autogen/user/aspell_options.adoc @@ -5,44 +5,53 @@ * [[option_aspell.check.commands]] *aspell.check.commands* ** description: pass:none[comma separated list of commands for which spell checking is enabled (spell checking is disabled for all other commands)] ** type: string -** values: any string (default value: `+"ame,amsg,away,command,cycle,kick,kickban,me,msg,notice,part,query,quit,topic"+`) +** values: any string +** default value: `+"ame,amsg,away,command,cycle,kick,kickban,me,msg,notice,part,query,quit,topic"+` * [[option_aspell.check.default_dict]] *aspell.check.default_dict* ** description: pass:none[default dictionary (or comma separated list of dictionaries) to use when buffer has no dictionary defined (leave blank to disable aspell on buffers for which you didn't explicitly enabled it)] ** type: string -** values: any string (default value: `+""+`) +** values: any string +** default value: `+""+` * [[option_aspell.check.during_search]] *aspell.check.during_search* ** description: pass:none[check words during text search in buffer] ** type: boolean -** values: on, off (default value: `+off+`) +** values: on, off +** default value: `+off+` * [[option_aspell.check.enabled]] *aspell.check.enabled* ** description: pass:none[enable aspell check for command line] ** type: boolean -** values: on, off (default value: `+off+`) +** values: on, off +** default value: `+off+` * [[option_aspell.check.real_time]] *aspell.check.real_time* ** description: pass:none[real-time spell checking of words (slower, disabled by default: words are checked only if there's delimiter after)] ** type: boolean -** values: on, off (default value: `+off+`) +** values: on, off +** default value: `+off+` * [[option_aspell.check.suggestions]] *aspell.check.suggestions* ** description: pass:none[number of suggestions to display in bar item "aspell_suggest" for each dictionary set in buffer (-1 = disable suggestions, 0 = display all possible suggestions in all languages)] ** type: integer -** values: -1 .. 2147483647 (default value: `+-1+`) +** values: -1 .. 2147483647 +** default value: `+-1+` * [[option_aspell.check.word_min_length]] *aspell.check.word_min_length* ** description: pass:none[minimum length for a word to be spell checked (use 0 to check all words)] ** type: integer -** values: 0 .. 2147483647 (default value: `+2+`) +** values: 0 .. 2147483647 +** default value: `+2+` * [[option_aspell.color.misspelled]] *aspell.color.misspelled* ** description: pass:none[text color for misspelled words (input bar)] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+lightred+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+lightred+` * [[option_aspell.color.suggestions]] *aspell.color.suggestions* ** description: pass:none[text color for suggestions on a misspelled word (status bar)] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+default+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+default+` diff --git a/doc/en/autogen/user/charset_options.adoc b/doc/en/autogen/user/charset_options.adoc index 62a439c38..6fa2030aa 100644 --- a/doc/en/autogen/user/charset_options.adoc +++ b/doc/en/autogen/user/charset_options.adoc @@ -5,9 +5,11 @@ * [[option_charset.default.decode]] *charset.default.decode* ** description: pass:none[global decoding charset: charset used to decode incoming messages when they are not UTF-8 valid] ** type: string -** values: any string (default value: `+"iso-8859-1"+`) +** values: any string +** default value: `+"iso-8859-1"+` * [[option_charset.default.encode]] *charset.default.encode* ** description: pass:none[global encoding charset: charset used to encode outgoing messages (if empty, default is UTF-8 because it is the WeeChat internal charset)] ** type: string -** values: any string (default value: `+""+`) +** values: any string +** default value: `+""+` diff --git a/doc/en/autogen/user/exec_options.adoc b/doc/en/autogen/user/exec_options.adoc index 4d39aeca0..5d8555678 100644 --- a/doc/en/autogen/user/exec_options.adoc +++ b/doc/en/autogen/user/exec_options.adoc @@ -5,19 +5,23 @@ * [[option_exec.color.flag_finished]] *exec.color.flag_finished* ** description: pass:none[text color for a finished command flag in list of commands] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+lightred+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+lightred+` * [[option_exec.color.flag_running]] *exec.color.flag_running* ** description: pass:none[text color for a running command flag in list of commands] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+lightgreen+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+lightgreen+` * [[option_exec.command.default_options]] *exec.command.default_options* ** description: pass:none[default options for command /exec (see /help exec); example: "-nosh -bg" to run all commands in background (no output), and without using the shell] ** type: string -** values: any string (default value: `+""+`) +** values: any string +** default value: `+""+` * [[option_exec.command.purge_delay]] *exec.command.purge_delay* ** description: pass:none[delay for purging finished commands (in seconds, 0 = purge commands immediately, -1 = never purge)] ** type: integer -** values: -1 .. 25920000 (default value: `+0+`) +** values: -1 .. 25920000 +** default value: `+0+` diff --git a/doc/en/autogen/user/fifo_options.adoc b/doc/en/autogen/user/fifo_options.adoc index 6bb87ef17..e30939fa5 100644 --- a/doc/en/autogen/user/fifo_options.adoc +++ b/doc/en/autogen/user/fifo_options.adoc @@ -5,9 +5,11 @@ * [[option_fifo.file.enabled]] *fifo.file.enabled* ** description: pass:none[enable FIFO pipe] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_fifo.file.path]] *fifo.file.path* ** description: pass:none[path for FIFO file; "%h" at beginning of string is replaced by WeeChat home ("~/.weechat" by default); WeeChat PID can be used in path with ${info:pid} (note: content is evaluated, see /help eval)] ** type: string -** values: any string (default value: `+"%h/weechat_fifo"+`) +** values: any string +** default value: `+"%h/weechat_fifo"+` diff --git a/doc/en/autogen/user/irc_options.adoc b/doc/en/autogen/user/irc_options.adoc index 083541de9..017979c38 100644 --- a/doc/en/autogen/user/irc_options.adoc +++ b/doc/en/autogen/user/irc_options.adoc @@ -5,624 +5,749 @@ * [[option_irc.color.input_nick]] *irc.color.input_nick* ** description: pass:none[color for nick in input bar] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+lightcyan+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+lightcyan+` * [[option_irc.color.item_channel_modes]] *irc.color.item_channel_modes* ** description: pass:none[color for channel modes, near channel name] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+default+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+default+` * [[option_irc.color.item_lag_counting]] *irc.color.item_lag_counting* ** description: pass:none[color for lag indicator, when counting (pong not received from server, lag is increasing)] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+default+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+default+` * [[option_irc.color.item_lag_finished]] *irc.color.item_lag_finished* ** description: pass:none[color for lag indicator, when pong has been received from server] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+yellow+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+yellow+` * [[option_irc.color.item_nick_modes]] *irc.color.item_nick_modes* ** description: pass:none[color for nick modes in bar item "input_prompt"] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+default+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+default+` * [[option_irc.color.message_join]] *irc.color.message_join* ** description: pass:none[color for text in join messages] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+green+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+green+` * [[option_irc.color.message_quit]] *irc.color.message_quit* ** description: pass:none[color for text in part/quit messages] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+red+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+red+` * [[option_irc.color.mirc_remap]] *irc.color.mirc_remap* ** description: pass:none[remap mirc colors in messages using a hashtable: keys are "fg,bg" as integers between -1 (not specified) and 15, values are WeeChat color names or numbers (format is: "1,-1:color1;2,7:color2"), example: "1,-1:darkgray;1,2:white,blue" to remap black to "darkgray" and black on blue to "white,blue"; default WeeChat colors for IRC codes: 0=white, 1=black, 2=blue, 3=green, 4=lightred, 5=red, 6=magenta, 7=brown, 8=yellow, 9=lightgreen, 10=cyan, 11=lightcyan, 12=lightblue, 13=lightmagenta, 14=gray, 15=white] ** type: string -** values: any string (default value: `+"1,-1:darkgray"+`) +** values: any string +** default value: `+"1,-1:darkgray"+` * [[option_irc.color.nick_prefixes]] *irc.color.nick_prefixes* ** description: pass:none[color for nick prefixes using mode char (o=op, h=halfop, v=voice, ..), format is: "o:color1;h:color2;v:color3" (if a mode is not found, WeeChat will try with next modes received from server ("PREFIX"); a special mode "*" can be used as default color if no mode has been found in list)] ** type: string -** values: any string (default value: `+"y:lightred;q:lightred;a:lightcyan;o:lightgreen;h:lightmagenta;v:yellow;*:lightblue"+`) +** values: any string +** default value: `+"y:lightred;q:lightred;a:lightcyan;o:lightgreen;h:lightmagenta;v:yellow;*:lightblue"+` * [[option_irc.color.notice]] *irc.color.notice* ** description: pass:none[color for text "Notice" in notices] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+green+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+green+` * [[option_irc.color.reason_quit]] *irc.color.reason_quit* ** description: pass:none[color for reason in part/quit messages] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+default+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+default+` * [[option_irc.color.topic_current]] *irc.color.topic_current* ** description: pass:none[color for current channel topic (when joining a channel or using /topic)] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+default+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+default+` * [[option_irc.color.topic_new]] *irc.color.topic_new* ** description: pass:none[color for new channel topic (when topic is changed)] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+white+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+white+` * [[option_irc.color.topic_old]] *irc.color.topic_old* ** description: pass:none[color for old channel topic (when topic is changed)] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+default+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+default+` * [[option_irc.look.buffer_open_before_autojoin]] *irc.look.buffer_open_before_autojoin* ** description: pass:none[open channel buffer before the JOIN is received from server when it is auto joined (with server option "autojoin"); this is useful to open channels with always the same buffer numbers on startup] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_irc.look.buffer_open_before_join]] *irc.look.buffer_open_before_join* ** description: pass:none[open channel buffer before the JOIN is received from server when it is manually joined (with /join command)] ** type: boolean -** values: on, off (default value: `+off+`) +** values: on, off +** default value: `+off+` * [[option_irc.look.buffer_switch_autojoin]] *irc.look.buffer_switch_autojoin* ** description: pass:none[auto switch to channel buffer when it is auto joined (with server option "autojoin")] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_irc.look.buffer_switch_join]] *irc.look.buffer_switch_join* ** description: pass:none[auto switch to channel buffer when it is manually joined (with /join command)] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_irc.look.color_nicks_in_names]] *irc.look.color_nicks_in_names* ** description: pass:none[use nick color in output of /names (or list of nicks displayed when joining a channel)] ** type: boolean -** values: on, off (default value: `+off+`) +** values: on, off +** default value: `+off+` * [[option_irc.look.color_nicks_in_nicklist]] *irc.look.color_nicks_in_nicklist* ** description: pass:none[use nick color in nicklist] ** type: boolean -** values: on, off (default value: `+off+`) +** values: on, off +** default value: `+off+` * [[option_irc.look.color_nicks_in_server_messages]] *irc.look.color_nicks_in_server_messages* ** description: pass:none[use nick color in messages from server] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_irc.look.color_pv_nick_like_channel]] *irc.look.color_pv_nick_like_channel* ** description: pass:none[use same nick color for channel and private] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_irc.look.ctcp_time_format]] *irc.look.ctcp_time_format* ** description: pass:none[time format used in answer to message CTCP TIME (see man strftime for date/time specifiers)] ** type: string -** values: any string (default value: `+"%a, %d %b %Y %T %z"+`) +** values: any string +** default value: `+"%a, %d %b %Y %T %z"+` * [[option_irc.look.display_away]] *irc.look.display_away* ** description: pass:none[display message when (un)marking as away (off: do not display/send anything, local: display locally, channel: send action to channels)] ** type: integer -** values: off, local, channel (default value: `+local+`) +** values: off, local, channel +** default value: `+local+` * [[option_irc.look.display_ctcp_blocked]] *irc.look.display_ctcp_blocked* ** description: pass:none[display CTCP message even if it is blocked] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_irc.look.display_ctcp_reply]] *irc.look.display_ctcp_reply* ** description: pass:none[display CTCP reply sent by WeeChat] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_irc.look.display_ctcp_unknown]] *irc.look.display_ctcp_unknown* ** description: pass:none[display CTCP message even if it is unknown CTCP] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_irc.look.display_host_join]] *irc.look.display_host_join* ** description: pass:none[display host in join messages] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_irc.look.display_host_join_local]] *irc.look.display_host_join_local* ** description: pass:none[display host in join messages from local client] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_irc.look.display_host_quit]] *irc.look.display_host_quit* ** description: pass:none[display host in part/quit messages] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_irc.look.display_join_message]] *irc.look.display_join_message* ** description: pass:none[comma-separated list of messages to display after joining a channel: 324 = channel modes, 329 = channel creation date, 332 = topic, 333 = nick/date for topic, 353 = names on channel, 366 = names count] ** type: string -** values: any string (default value: `+"329,332,333,366"+`) +** values: any string +** default value: `+"329,332,333,366"+` * [[option_irc.look.display_old_topic]] *irc.look.display_old_topic* ** description: pass:none[display old topic when channel topic is changed] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_irc.look.display_pv_away_once]] *irc.look.display_pv_away_once* ** description: pass:none[display remote away message only once in private] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_irc.look.display_pv_back]] *irc.look.display_pv_back* ** description: pass:none[display a message in private when user is back (after quit on server)] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_irc.look.highlight_channel]] *irc.look.highlight_channel* ** description: pass:none[comma separated list of words to highlight in channel buffers (case insensitive, use "(?-i)" at beginning of words to make them case sensitive; special variables $nick, $channel and $server are replaced by their value), these words are added to buffer property "highlight_words" only when buffer is created (it does not affect current buffers), an empty string disables default highlight on nick, examples: "$nick", "(?-i)$nick"] ** type: string -** values: any string (default value: `+"$nick"+`) +** values: any string +** default value: `+"$nick"+` * [[option_irc.look.highlight_pv]] *irc.look.highlight_pv* ** description: pass:none[comma separated list of words to highlight in private buffers (case insensitive, use "(?-i)" at beginning of words to make them case sensitive; special variables $nick, $channel and $server are replaced by their value), these words are added to buffer property "highlight_words" only when buffer is created (it does not affect current buffers), an empty string disables default highlight on nick, examples: "$nick", "(?-i)$nick"] ** type: string -** values: any string (default value: `+"$nick"+`) +** values: any string +** default value: `+"$nick"+` * [[option_irc.look.highlight_server]] *irc.look.highlight_server* ** description: pass:none[comma separated list of words to highlight in server buffers (case insensitive, use "(?-i)" at beginning of words to make them case sensitive; special variables $nick, $channel and $server are replaced by their value), these words are added to buffer property "highlight_words" only when buffer is created (it does not affect current buffers), an empty string disables default highlight on nick, examples: "$nick", "(?-i)$nick"] ** type: string -** values: any string (default value: `+"$nick"+`) +** values: any string +** default value: `+"$nick"+` * [[option_irc.look.highlight_tags_restrict]] *irc.look.highlight_tags_restrict* ** description: pass:none[restrict highlights to these tags on irc buffers (to have highlight on user messages but not server messages); tags must be separated by a comma and "+" can be used to make a logical "and" between tags; wildcard "*" is allowed in tags; an empty value allows highlight on any tag] ** type: string -** values: any string (default value: `+"irc_privmsg,irc_notice"+`) +** values: any string +** default value: `+"irc_privmsg,irc_notice"+` * [[option_irc.look.item_channel_modes_hide_args]] *irc.look.item_channel_modes_hide_args* ** description: pass:none[hide channel modes arguments if at least one of these modes is in channel modes ("*" to always hide all arguments, empty value to never hide arguments); example: "kf" to hide arguments if "k" or "f" are in channel modes] ** type: string -** values: any string (default value: `+"k"+`) +** values: any string +** default value: `+"k"+` * [[option_irc.look.item_display_server]] *irc.look.item_display_server* ** description: pass:none[name of bar item where IRC server is displayed (for status bar)] ** type: integer -** values: buffer_plugin, buffer_name (default value: `+buffer_plugin+`) +** values: buffer_plugin, buffer_name +** default value: `+buffer_plugin+` * [[option_irc.look.item_nick_modes]] *irc.look.item_nick_modes* ** description: pass:none[display nick modes in bar item "input_prompt"] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_irc.look.item_nick_prefix]] *irc.look.item_nick_prefix* ** description: pass:none[display nick prefix in bar item "input_prompt"] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_irc.look.join_auto_add_chantype]] *irc.look.join_auto_add_chantype* ** description: pass:none[automatically add channel type in front of channel name on command /join if the channel name does not start with a valid channel type for the server; for example: "/join weechat" will in fact send: "/join #weechat"] ** type: boolean -** values: on, off (default value: `+off+`) +** values: on, off +** default value: `+off+` * [[option_irc.look.msgbuffer_fallback]] *irc.look.msgbuffer_fallback* ** description: pass:none[default target buffer for msgbuffer options when target is private and that private buffer is not found] ** type: integer -** values: current, server (default value: `+current+`) +** values: current, server +** default value: `+current+` * [[option_irc.look.new_channel_position]] *irc.look.new_channel_position* ** description: pass:none[force position of new channel in list of buffers (none = default position (should be last buffer), next = current buffer + 1, near_server = after last channel/pv of server)] ** type: integer -** values: none, next, near_server (default value: `+none+`) +** values: none, next, near_server +** default value: `+none+` * [[option_irc.look.new_pv_position]] *irc.look.new_pv_position* ** description: pass:none[force position of new private in list of buffers (none = default position (should be last buffer), next = current buffer + 1, near_server = after last channel/pv of server)] ** type: integer -** values: none, next, near_server (default value: `+none+`) +** values: none, next, near_server +** default value: `+none+` * [[option_irc.look.nick_completion_smart]] *irc.look.nick_completion_smart* ** description: pass:none[smart completion for nicks (completes first with last speakers): speakers = all speakers (including highlights), speakers_highlights = only speakers with highlight] ** type: integer -** values: off, speakers, speakers_highlights (default value: `+speakers+`) +** values: off, speakers, speakers_highlights +** default value: `+speakers+` * [[option_irc.look.nick_mode]] *irc.look.nick_mode* ** description: pass:none[display nick mode (op, voice, ...) before nick (none = never, prefix = in prefix only (default), action = in action messages only, both = prefix + action messages)] ** type: integer -** values: none, prefix, action, both (default value: `+prefix+`) +** values: none, prefix, action, both +** default value: `+prefix+` * [[option_irc.look.nick_mode_empty]] *irc.look.nick_mode_empty* ** description: pass:none[display a space if nick mode is enabled but nick has no mode (not op, voice, ...)] ** type: boolean -** values: on, off (default value: `+off+`) +** values: on, off +** default value: `+off+` * [[option_irc.look.nicks_hide_password]] *irc.look.nicks_hide_password* ** description: pass:none[comma separated list of nicks for which passwords will be hidden when a message is sent, for example to hide password in message displayed by "/msg nickserv identify password", example: "nickserv,nickbot"] ** type: string -** values: any string (default value: `+"nickserv"+`) +** values: any string +** default value: `+"nickserv"+` * [[option_irc.look.notice_as_pv]] *irc.look.notice_as_pv* ** description: pass:none[display notices as private messages (if auto, use private buffer if found)] ** type: integer -** values: auto, never, always (default value: `+auto+`) +** values: auto, never, always +** default value: `+auto+` * [[option_irc.look.notice_welcome_redirect]] *irc.look.notice_welcome_redirect* ** description: pass:none[automatically redirect channel welcome notices to the channel buffer; such notices have the nick as target but a channel name in beginning of notice message, for example notices sent by freenode server which look like: "[#channel\] Welcome to this channel..."] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_irc.look.notice_welcome_tags]] *irc.look.notice_welcome_tags* ** description: pass:none[comma separated list of tags used in a welcome notices redirected to a channel, for example: "notify_private"] ** type: string -** values: any string (default value: `+""+`) +** values: any string +** default value: `+""+` * [[option_irc.look.notify_tags_ison]] *irc.look.notify_tags_ison* ** description: pass:none[comma separated list of tags used in messages displayed by notify when a nick joins or quits server (result of command ison or monitor), for example: "notify_message", "notify_private" or "notify_highlight"] ** type: string -** values: any string (default value: `+"notify_message"+`) +** values: any string +** default value: `+"notify_message"+` * [[option_irc.look.notify_tags_whois]] *irc.look.notify_tags_whois* ** description: pass:none[comma separated list of tags used in messages displayed by notify when a nick away status changes (result of command whois), for example: "notify_message", "notify_private" or "notify_highlight"] ** type: string -** values: any string (default value: `+"notify_message"+`) +** values: any string +** default value: `+"notify_message"+` * [[option_irc.look.part_closes_buffer]] *irc.look.part_closes_buffer* ** description: pass:none[close buffer when /part is issued on a channel] ** type: boolean -** values: on, off (default value: `+off+`) +** values: on, off +** default value: `+off+` * [[option_irc.look.pv_buffer]] *irc.look.pv_buffer* ** description: pass:none[merge private buffers] ** type: integer -** values: independent, merge_by_server, merge_all (default value: `+independent+`) +** values: independent, merge_by_server, merge_all +** default value: `+independent+` * [[option_irc.look.pv_tags]] *irc.look.pv_tags* ** description: pass:none[comma separated list of tags used in private messages, for example: "notify_message", "notify_private" or "notify_highlight"] ** type: string -** values: any string (default value: `+"notify_private"+`) +** values: any string +** default value: `+"notify_private"+` * [[option_irc.look.raw_messages]] *irc.look.raw_messages* ** description: pass:none[number of raw messages to save in memory when raw data buffer is closed (messages will be displayed when opening raw data buffer)] ** type: integer -** values: 0 .. 65535 (default value: `+256+`) +** values: 0 .. 65535 +** default value: `+256+` * [[option_irc.look.server_buffer]] *irc.look.server_buffer* ** description: pass:none[merge server buffers] ** type: integer -** values: merge_with_core, merge_without_core, independent (default value: `+merge_with_core+`) +** values: merge_with_core, merge_without_core, independent +** default value: `+merge_with_core+` * [[option_irc.look.smart_filter]] *irc.look.smart_filter* ** description: pass:none[filter join/part/quit/nick messages for a nick if not speaking for some minutes on channel (you must create a filter on tag "irc_smart_filter")] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_irc.look.smart_filter_delay]] *irc.look.smart_filter_delay* ** description: pass:none[delay for filtering join/part/quit messages (in minutes): if the nick did not speak during the last N minutes, the join/part/quit is filtered] ** type: integer -** values: 1 .. 10080 (default value: `+5+`) +** values: 1 .. 10080 +** default value: `+5+` * [[option_irc.look.smart_filter_join]] *irc.look.smart_filter_join* ** description: pass:none[enable smart filter for "join" messages] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_irc.look.smart_filter_join_unmask]] *irc.look.smart_filter_join_unmask* ** description: pass:none[delay for unmasking a join message that was filtered with tag "irc_smart_filter" (in minutes): if a nick has joined max N minutes ago and then says something on channel (message, notice or update on topic), the join is unmasked, as well as nick changes after this join (0 = disable: never unmask a join)] ** type: integer -** values: 0 .. 10080 (default value: `+30+`) +** values: 0 .. 10080 +** default value: `+30+` * [[option_irc.look.smart_filter_mode]] *irc.look.smart_filter_mode* ** description: pass:none[enable smart filter for "mode" messages: "*" to filter all modes, "+" to filter all modes in server prefixes (for example "ovh"), "xyz" to filter only modes x/y/z, "-xyz" to filter all modes but not x/y/z; examples: "ovh": filter modes o/v/h, "-bkl": filter all modes but not b/k/l] ** type: string -** values: any string (default value: `+"+"+`) +** values: any string +** default value: `+"+"+` * [[option_irc.look.smart_filter_nick]] *irc.look.smart_filter_nick* ** description: pass:none[enable smart filter for "nick" messages (nick changes)] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_irc.look.smart_filter_quit]] *irc.look.smart_filter_quit* ** description: pass:none[enable smart filter for "part" and "quit" messages] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_irc.look.temporary_servers]] *irc.look.temporary_servers* ** description: pass:none[enable automatic addition of temporary servers with command /connect] ** type: boolean -** values: on, off (default value: `+off+`) +** values: on, off +** default value: `+off+` * [[option_irc.look.topic_strip_colors]] *irc.look.topic_strip_colors* ** description: pass:none[strip colors in topic (used only when displaying buffer title)] ** type: boolean -** values: on, off (default value: `+off+`) +** values: on, off +** default value: `+off+` * [[option_irc.network.autoreconnect_delay_growing]] *irc.network.autoreconnect_delay_growing* ** description: pass:none[growing factor for autoreconnect delay to server (1 = always same delay, 2 = delay*2 for each retry, ..)] ** type: integer -** values: 1 .. 100 (default value: `+2+`) +** values: 1 .. 100 +** default value: `+2+` * [[option_irc.network.autoreconnect_delay_max]] *irc.network.autoreconnect_delay_max* ** description: pass:none[maximum autoreconnect delay to server (in seconds, 0 = no maximum)] ** type: integer -** values: 0 .. 604800 (default value: `+600+`) +** values: 0 .. 604800 +** default value: `+600+` * [[option_irc.network.ban_mask_default]] *irc.network.ban_mask_default* ** description: pass:none[default ban mask for commands /ban, /unban and /kickban; variables $nick, $user, $ident and $host are replaced by their values (extracted from "nick!user@host"); $ident is the same as $user if $user does not start with "~", otherwise it is set to "*"; this default mask is used only if WeeChat knows the host for the nick] ** type: string -** values: any string (default value: `+"*!$ident@$host"+`) +** 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+`) +** 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 -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_irc.network.colors_send]] *irc.network.colors_send* ** description: pass:none[allow user to send colors with special codes (ctrl-c + a code and optional color: b=bold, cxx=color, cxx,yy=color+background, i=italic, o=disable color/attributes, r=reverse, u=underline)] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_irc.network.lag_check]] *irc.network.lag_check* ** description: pass:none[interval between two checks for lag (in seconds, 0 = never check)] ** type: integer -** values: 0 .. 604800 (default value: `+60+`) +** values: 0 .. 604800 +** default value: `+60+` * [[option_irc.network.lag_max]] *irc.network.lag_max* ** description: pass:none[maximum lag (in seconds): if this lag is reached, WeeChat will consider that the answer from server (pong) will never be received and will give up counting the lag (0 = never give up)] ** type: integer -** values: 0 .. 604800 (default value: `+1800+`) +** values: 0 .. 604800 +** default value: `+1800+` * [[option_irc.network.lag_min_show]] *irc.network.lag_min_show* ** description: pass:none[minimum lag to show (in milliseconds)] ** type: integer -** values: 0 .. 86400000 (default value: `+500+`) +** values: 0 .. 86400000 +** default value: `+500+` * [[option_irc.network.lag_reconnect]] *irc.network.lag_reconnect* ** description: pass:none[reconnect to server if lag is greater than or equal to this value (in seconds, 0 = never reconnect); this value must be less than or equal to irc.network.lag_max] ** type: integer -** values: 0 .. 604800 (default value: `+300+`) +** values: 0 .. 604800 +** default value: `+300+` * [[option_irc.network.lag_refresh_interval]] *irc.network.lag_refresh_interval* ** description: pass:none[interval between two refreshs of lag item, when lag is increasing (in seconds)] ** type: integer -** values: 1 .. 3600 (default value: `+1+`) +** values: 1 .. 3600 +** default value: `+1+` * [[option_irc.network.notify_check_ison]] *irc.network.notify_check_ison* ** description: pass:none[interval between two checks for notify with IRC command "ison" (in minutes)] ** type: integer -** values: 1 .. 10080 (default value: `+1+`) +** values: 1 .. 10080 +** default value: `+1+` * [[option_irc.network.notify_check_whois]] *irc.network.notify_check_whois* ** description: pass:none[interval between two checks for notify with IRC command "whois" (in minutes)] ** type: integer -** values: 1 .. 10080 (default value: `+5+`) +** values: 1 .. 10080 +** default value: `+5+` * [[option_irc.network.sasl_fail_unavailable]] *irc.network.sasl_fail_unavailable* ** description: pass:none[cause SASL authentication failure when SASL is requested but unavailable on the server; when this option is enabled, it has effect only if option "sasl_fail" is set to "reconnect" or "disconnect" in the server] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_irc.network.send_unknown_commands]] *irc.network.send_unknown_commands* ** description: pass:none[send unknown commands to server] ** type: boolean -** values: on, off (default value: `+off+`) +** values: on, off +** default value: `+off+` * [[option_irc.network.whois_double_nick]] *irc.network.whois_double_nick* ** description: pass:none[double the nick in /whois command (if only one nick is given), to get idle time in answer; for example: "/whois nick" will send "whois nick nick"] ** type: boolean -** values: on, off (default value: `+off+`) +** values: on, off +** default value: `+off+` * [[option_irc.server_default.addresses]] *irc.server_default.addresses* ** description: pass:none[list of hostname/port or IP/port for server (separated by comma) (note: content is evaluated, see /help eval)] ** type: string -** values: any string (default value: `+""+`) +** values: any string +** default value: `+""+` * [[option_irc.server_default.anti_flood_prio_high]] *irc.server_default.anti_flood_prio_high* ** description: pass:none[anti-flood for high priority queue: number of seconds between two user messages or commands sent to IRC server (0 = no anti-flood)] ** type: integer -** values: 0 .. 60 (default value: `+2+`) +** values: 0 .. 60 +** default value: `+2+` * [[option_irc.server_default.anti_flood_prio_low]] *irc.server_default.anti_flood_prio_low* ** description: pass:none[anti-flood for low priority queue: number of seconds between two messages sent to IRC server (messages like automatic CTCP replies) (0 = no anti-flood)] ** type: integer -** values: 0 .. 60 (default value: `+2+`) +** values: 0 .. 60 +** default value: `+2+` * [[option_irc.server_default.autoconnect]] *irc.server_default.autoconnect* ** description: pass:none[automatically connect to server when WeeChat is starting] ** type: boolean -** values: on, off (default value: `+off+`) +** values: on, off +** default value: `+off+` * [[option_irc.server_default.autojoin]] *irc.server_default.autojoin* ** description: pass:none[comma separated list of channels to join after connection to server (and after executing command + delay if they are set); the channels that require a key must be at beginning of the list, and all the keys must be given after the channels (separated by a space) (example: "#channel1,#channel2,#channel3 key1,key2" where #channel1 and #channel2 are protected by key1 and key2) (note: content is evaluated, see /help eval)] ** type: string -** values: any string (default value: `+""+`) +** values: any string +** default value: `+""+` * [[option_irc.server_default.autoreconnect]] *irc.server_default.autoreconnect* ** description: pass:none[automatically reconnect to server when disconnected] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_irc.server_default.autoreconnect_delay]] *irc.server_default.autoreconnect_delay* ** description: pass:none[delay (in seconds) before trying again to reconnect to server] ** type: integer -** values: 1 .. 65535 (default value: `+10+`) +** values: 1 .. 65535 +** default value: `+10+` * [[option_irc.server_default.autorejoin]] *irc.server_default.autorejoin* ** description: pass:none[automatically rejoin channels after kick; you can define a buffer local variable on a channel to override this value (name of variable: "autorejoin", value: "on" or "off")] ** type: boolean -** values: on, off (default value: `+off+`) +** values: on, off +** default value: `+off+` * [[option_irc.server_default.autorejoin_delay]] *irc.server_default.autorejoin_delay* ** description: pass:none[delay (in seconds) before autorejoin (after kick)] ** type: integer -** values: 0 .. 86400 (default value: `+30+`) +** values: 0 .. 86400 +** default value: `+30+` * [[option_irc.server_default.away_check]] *irc.server_default.away_check* ** description: pass:none[interval between two checks for away (in minutes, 0 = never check)] ** type: integer -** values: 0 .. 10080 (default value: `+0+`) +** values: 0 .. 10080 +** default value: `+0+` * [[option_irc.server_default.away_check_max_nicks]] *irc.server_default.away_check_max_nicks* ** description: pass:none[do not check away nicks on channels with high number of nicks (0 = unlimited)] ** type: integer -** values: 0 .. 1000000 (default value: `+25+`) +** values: 0 .. 1000000 +** default value: `+25+` * [[option_irc.server_default.capabilities]] *irc.server_default.capabilities* ** description: pass:none[comma-separated list of client capabilities to enable for server if they are available (see /help cap for a list of capabilities supported by WeeChat) (example: "away-notify,multi-prefix")] ** type: string -** values: any string (default value: `+""+`) +** values: any string +** default value: `+""+` * [[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)] ** type: string -** values: any string (default value: `+""+`) +** values: any string +** default value: `+""+` * [[option_irc.server_default.command_delay]] *irc.server_default.command_delay* ** description: pass:none[delay (in seconds) after execution of command and before auto-join of channels (example: give some time for authentication before joining channels)] ** type: integer -** values: 0 .. 3600 (default value: `+0+`) +** values: 0 .. 3600 +** default value: `+0+` * [[option_irc.server_default.connection_timeout]] *irc.server_default.connection_timeout* ** description: pass:none[timeout (in seconds) between TCP connection to server and message 001 received, if this timeout is reached before 001 message is received, WeeChat will disconnect from server] ** type: integer -** values: 1 .. 3600 (default value: `+60+`) +** values: 1 .. 3600 +** default value: `+60+` * [[option_irc.server_default.ipv6]] *irc.server_default.ipv6* ** description: pass:none[use IPv6 protocol for server communication (try IPv6 then fallback to IPv4); if disabled, only IPv4 is used] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_irc.server_default.local_hostname]] *irc.server_default.local_hostname* ** description: pass:none[custom local hostname/IP for server (optional, if empty local hostname is used)] ** type: string -** values: any string (default value: `+""+`) +** values: any string +** default value: `+""+` * [[option_irc.server_default.msg_kick]] *irc.server_default.msg_kick* ** description: pass:none[default kick message used by commands "/kick" and "/kickban" (note: content is evaluated, see /help eval; special variables ${nick}, ${channel} and ${server} are replaced by their value)] ** type: string -** values: any string (default value: `+""+`) +** values: any string +** default value: `+""+` * [[option_irc.server_default.msg_part]] *irc.server_default.msg_part* ** description: pass:none[default part message (leaving channel) (note: content is evaluated, see /help eval; special variables ${nick}, ${channel} and ${server} are replaced by their value; "%v" is replaced by WeeChat version if there is no ${...} in string)] ** type: string -** values: any string (default value: `+"WeeChat ${info:version}"+`) +** values: any string +** default value: `+"WeeChat ${info:version}"+` * [[option_irc.server_default.msg_quit]] *irc.server_default.msg_quit* ** description: pass:none[default quit message (disconnecting from server) (note: content is evaluated, see /help eval; special variables ${nick}, ${channel} and ${server} are replaced by their value; "%v" is replaced by WeeChat version if there is no ${...} in string)] ** type: string -** values: any string (default value: `+"WeeChat ${info:version}"+`) +** values: any string +** default value: `+"WeeChat ${info:version}"+` * [[option_irc.server_default.nicks]] *irc.server_default.nicks* ** description: pass:none[nicknames to use on server (separated by comma) (note: content is evaluated, see /help eval)] ** type: string -** values: any string (default value: `+""+`) +** values: any string +** default value: `+""+` * [[option_irc.server_default.nicks_alternate]] *irc.server_default.nicks_alternate* ** description: pass:none[get an alternate nick when all the declared nicks are already used on server: add some "_" until the nick has a length of 9, and then replace last char (or the two last chars) by a number from 1 to 99, until we find a nick not used on server] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_irc.server_default.notify]] *irc.server_default.notify* ** description: pass:none[notify list for server (you should not change this option but use /notify command instead)] ** type: string -** values: any string (default value: `+""+`) +** values: any string +** default value: `+""+` * [[option_irc.server_default.password]] *irc.server_default.password* ** description: pass:none[password for server (note: content is evaluated, see /help eval)] ** type: string -** values: any string (default value: `+""+`) +** values: any string +** default value: `+""+` * [[option_irc.server_default.proxy]] *irc.server_default.proxy* ** description: pass:none[name of proxy used for this server (optional, proxy must be defined with command /proxy)] ** type: string -** values: any string (default value: `+""+`) +** values: any string +** default value: `+""+` * [[option_irc.server_default.realname]] *irc.server_default.realname* ** description: pass:none[real name to use on server (note: content is evaluated, see /help eval)] ** type: string -** values: any string (default value: `+""+`) +** values: any string +** default value: `+""+` * [[option_irc.server_default.sasl_fail]] *irc.server_default.sasl_fail* ** description: pass:none[action to perform if SASL authentication fails: "continue" to ignore the authentication problem, "reconnect" to schedule a reconnection to the server, "disconnect" to disconnect from server (see also option irc.network.sasl_fail_unavailable)] ** type: integer -** values: continue, reconnect, disconnect (default value: `+continue+`) +** values: continue, reconnect, disconnect +** default value: `+continue+` * [[option_irc.server_default.sasl_key]] *irc.server_default.sasl_key* ** description: pass:none[file with ECC private key for mechanism "ecdsa-nist256p-challenge" ("%h" will be replaced by WeeChat home, "~/.weechat" by default)] ** type: string -** values: any string (default value: `+""+`) +** values: any string +** default value: `+""+` * [[option_irc.server_default.sasl_mechanism]] *irc.server_default.sasl_mechanism* ** description: pass:none[mechanism for SASL authentication: "plain" for plain text password, "ecdsa-nist256p-challenge" for key-based challenge authentication, "external" for authentication using client side SSL cert, "dh-blowfish" for blowfish crypted password (insecure, not recommended), "dh-aes" for AES crypted password (insecure, not recommended)] ** type: integer -** values: plain, ecdsa-nist256p-challenge, external, dh-blowfish, dh-aes (default value: `+plain+`) +** values: plain, ecdsa-nist256p-challenge, external, dh-blowfish, dh-aes +** default value: `+plain+` * [[option_irc.server_default.sasl_password]] *irc.server_default.sasl_password* ** description: pass:none[password for SASL authentication; this option is not used for mechanisms "ecdsa-nist256p-challenge" and "external" (note: content is evaluated, see /help eval)] ** type: string -** values: any string (default value: `+""+`) +** values: any string +** default value: `+""+` * [[option_irc.server_default.sasl_timeout]] *irc.server_default.sasl_timeout* ** description: pass:none[timeout (in seconds) before giving up SASL authentication] ** type: integer -** values: 1 .. 3600 (default value: `+15+`) +** values: 1 .. 3600 +** default value: `+15+` * [[option_irc.server_default.sasl_username]] *irc.server_default.sasl_username* ** description: pass:none[username for SASL authentication; this option is not used for mechanism "external" (note: content is evaluated, see /help eval)] ** type: string -** values: any string (default value: `+""+`) +** values: any string +** default value: `+""+` * [[option_irc.server_default.ssl]] *irc.server_default.ssl* ** description: pass:none[use SSL for server communication] ** type: boolean -** values: on, off (default value: `+off+`) +** values: on, off +** default value: `+off+` * [[option_irc.server_default.ssl_cert]] *irc.server_default.ssl_cert* ** description: pass:none[SSL certificate file used to automatically identify your nick ("%h" will be replaced by WeeChat home, "~/.weechat" by default)] ** type: string -** values: any string (default value: `+""+`) +** values: any string +** default value: `+""+` * [[option_irc.server_default.ssl_dhkey_size]] *irc.server_default.ssl_dhkey_size* ** description: pass:none[size of the key used during the Diffie-Hellman Key Exchange] ** type: integer -** values: 0 .. 2147483647 (default value: `+2048+`) +** values: 0 .. 2147483647 +** default value: `+2048+` * [[option_irc.server_default.ssl_fingerprint]] *irc.server_default.ssl_fingerprint* ** description: pass:none[fingerprint of certificate which is trusted and accepted for the server; only hexadecimal digits are allowed (0-9, a-f): 64 chars for SHA-512, 32 chars for SHA-256, 20 chars for SHA-1 (insecure, not recommended); many fingerprints can be separated by commas; if this option is set, the other checks on certificates are NOT performed (option "ssl_verify") (note: content is evaluated, see /help eval)] ** type: string -** values: any string (default value: `+""+`) +** values: any string +** default value: `+""+` * [[option_irc.server_default.ssl_priorities]] *irc.server_default.ssl_priorities* ** description: pass:none[string with priorities for gnutls (for syntax, see documentation of function gnutls_priority_init in gnutls manual, common strings are: "PERFORMANCE", "NORMAL", "SECURE128", "SECURE256", "EXPORT", "NONE")] ** type: string -** values: any string (default value: `+"NORMAL:-VERS-SSL3.0"+`) +** values: any string +** default value: `+"NORMAL:-VERS-SSL3.0"+` * [[option_irc.server_default.ssl_verify]] *irc.server_default.ssl_verify* ** description: pass:none[check that the SSL connection is fully trusted] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_irc.server_default.usermode]] *irc.server_default.usermode* ** description: pass:none[user mode(s) to set after connection to server and before executing command and the auto-join of channels; examples: "+R" (to set mode "R"), "+R-i" (to set mode "R" and remove "i"); see /help mode for the complete mode syntax (note: content is evaluated, see /help eval)] ** type: string -** values: any string (default value: `+""+`) +** values: any string +** default value: `+""+` * [[option_irc.server_default.username]] *irc.server_default.username* ** description: pass:none[user name to use on server (note: content is evaluated, see /help eval)] ** type: string -** values: any string (default value: `+""+`) +** values: any string +** default value: `+""+` diff --git a/doc/en/autogen/user/logger_options.adoc b/doc/en/autogen/user/logger_options.adoc index 57c781c60..bb6c518c8 100644 --- a/doc/en/autogen/user/logger_options.adoc +++ b/doc/en/autogen/user/logger_options.adoc @@ -5,64 +5,77 @@ * [[option_logger.color.backlog_end]] *logger.color.backlog_end* ** description: pass:none[color for line ending the backlog] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+default+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+default+` * [[option_logger.color.backlog_line]] *logger.color.backlog_line* ** description: pass:none[color for backlog lines] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+default+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+default+` * [[option_logger.file.auto_log]] *logger.file.auto_log* ** description: pass:none[automatically save content of buffers to files (unless a buffer disables log)] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_logger.file.flush_delay]] *logger.file.flush_delay* ** description: pass:none[number of seconds between flush of log files (0 = write in log files immediately for each line printed)] ** type: integer -** values: 0 .. 3600 (default value: `+120+`) +** values: 0 .. 3600 +** default value: `+120+` * [[option_logger.file.info_lines]] *logger.file.info_lines* ** description: pass:none[write information line in log file when log starts or ends for a buffer] ** type: boolean -** values: on, off (default value: `+off+`) +** values: on, off +** default value: `+off+` * [[option_logger.file.mask]] *logger.file.mask* ** description: pass:none[default file name mask for log files (format is "directory/to/file" or "file", without first "/" because "path" option is used to build complete path to file); local buffer variables are permitted (you should use only variables that are defined on all buffers, so for example you should NOT use $server nor $channel); date specifiers are permitted (see man strftime)] ** type: string -** values: any string (default value: `+"$plugin.$name.weechatlog"+`) +** values: any string +** default value: `+"$plugin.$name.weechatlog"+` * [[option_logger.file.name_lower_case]] *logger.file.name_lower_case* ** description: pass:none[use only lower case for log filenames] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_logger.file.nick_prefix]] *logger.file.nick_prefix* ** description: pass:none[text to write before nick in prefix of message, example: "<"] ** type: string -** values: any string (default value: `+""+`) +** values: any string +** default value: `+""+` * [[option_logger.file.nick_suffix]] *logger.file.nick_suffix* ** description: pass:none[text to write after nick in prefix of message, example: ">"] ** type: string -** values: any string (default value: `+""+`) +** values: any string +** default value: `+""+` * [[option_logger.file.path]] *logger.file.path* ** description: pass:none[path for WeeChat log files; "%h" at beginning of string is replaced by WeeChat home ("~/.weechat" by default); date specifiers are permitted (see man strftime) (note: content is evaluated, see /help eval)] ** type: string -** values: any string (default value: `+"%h/logs/"+`) +** values: any string +** default value: `+"%h/logs/"+` * [[option_logger.file.replacement_char]] *logger.file.replacement_char* ** description: pass:none[replacement char for special chars in filename built with mask (like directory delimiter)] ** type: string -** values: any string (default value: `+"_"+`) +** values: any string +** default value: `+"_"+` * [[option_logger.file.time_format]] *logger.file.time_format* ** description: pass:none[timestamp used in log files (see man strftime for date/time specifiers)] ** type: string -** values: any string (default value: `+"%Y-%m-%d %H:%M:%S"+`) +** values: any string +** default value: `+"%Y-%m-%d %H:%M:%S"+` * [[option_logger.look.backlog]] *logger.look.backlog* ** description: pass:none[maximum number of lines to display from log file when creating new buffer (0 = no backlog)] ** type: integer -** values: 0 .. 2147483647 (default value: `+20+`) +** values: 0 .. 2147483647 +** default value: `+20+` diff --git a/doc/en/autogen/user/relay_options.adoc b/doc/en/autogen/user/relay_options.adoc index 85c49a3f5..c3ce96b0c 100644 --- a/doc/en/autogen/user/relay_options.adoc +++ b/doc/en/autogen/user/relay_options.adoc @@ -5,139 +5,167 @@ * [[option_relay.color.client]] *relay.color.client* ** description: pass:none[text color for client description] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+cyan+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+cyan+` * [[option_relay.color.status_active]] *relay.color.status_active* ** description: pass:none[text color for "connected" status] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+lightblue+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+lightblue+` * [[option_relay.color.status_auth_failed]] *relay.color.status_auth_failed* ** description: pass:none[text color for "authentication failed" status] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+lightred+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+lightred+` * [[option_relay.color.status_connecting]] *relay.color.status_connecting* ** description: pass:none[text color for "connecting" status] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+yellow+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+yellow+` * [[option_relay.color.status_disconnected]] *relay.color.status_disconnected* ** description: pass:none[text color for "disconnected" status] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+lightred+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+lightred+` * [[option_relay.color.status_waiting_auth]] *relay.color.status_waiting_auth* ** description: pass:none[text color for "waiting authentication" status] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+brown+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+brown+` * [[option_relay.color.text]] *relay.color.text* ** description: pass:none[text color in relay buffer] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+default+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+default+` * [[option_relay.color.text_bg]] *relay.color.text_bg* ** description: pass:none[background color in relay buffer] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+default+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+default+` * [[option_relay.color.text_selected]] *relay.color.text_selected* ** description: pass:none[text color of selected line in relay buffer] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+white+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+white+` * [[option_relay.irc.backlog_max_minutes]] *relay.irc.backlog_max_minutes* ** description: pass:none[maximum number of minutes in backlog per IRC channel (0 = unlimited, examples: 1440 = one day, 10080 = one week, 43200 = one month, 525600 = one year)] ** type: integer -** values: 0 .. 2147483647 (default value: `+1440+`) +** values: 0 .. 2147483647 +** default value: `+1440+` * [[option_relay.irc.backlog_max_number]] *relay.irc.backlog_max_number* ** description: pass:none[maximum number of lines in backlog per IRC channel (0 = unlimited)] ** type: integer -** values: 0 .. 2147483647 (default value: `+256+`) +** values: 0 .. 2147483647 +** default value: `+256+` * [[option_relay.irc.backlog_since_last_disconnect]] *relay.irc.backlog_since_last_disconnect* ** description: pass:none[display backlog starting from last client disconnect] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_relay.irc.backlog_since_last_message]] *relay.irc.backlog_since_last_message* ** description: pass:none[display backlog starting from your last message] ** type: boolean -** values: on, off (default value: `+off+`) +** values: on, off +** default value: `+off+` * [[option_relay.irc.backlog_tags]] *relay.irc.backlog_tags* ** description: pass:none[comma-separated list of messages tags which are displayed in backlog per IRC channel (supported tags: "irc_join", "irc_part", "irc_quit", "irc_nick", "irc_privmsg"), "*" = all supported tags] ** type: string -** values: any string (default value: `+"irc_privmsg"+`) +** values: any string +** default value: `+"irc_privmsg"+` * [[option_relay.irc.backlog_time_format]] *relay.irc.backlog_time_format* ** description: pass:none[format for time in backlog messages (see man strftime for format) (not used if server capability "server-time" was enabled by client, because time is sent as irc tag); empty string = disable time in backlog messages] ** type: string -** values: any string (default value: `+"[%H:%M] "+`) +** values: any string +** default value: `+"[%H:%M] "+` * [[option_relay.look.auto_open_buffer]] *relay.look.auto_open_buffer* ** description: pass:none[auto open relay buffer when a new client is connecting] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_relay.look.raw_messages]] *relay.look.raw_messages* ** description: pass:none[number of raw messages to save in memory when raw data buffer is closed (messages will be displayed when opening raw data buffer)] ** type: integer -** values: 0 .. 65535 (default value: `+256+`) +** values: 0 .. 65535 +** default value: `+256+` * [[option_relay.network.allow_empty_password]] *relay.network.allow_empty_password* ** description: pass:none[allow empty password in relay (it should be enabled only for tests or local network)] ** type: boolean -** values: on, off (default value: `+off+`) +** values: on, off +** default value: `+off+` * [[option_relay.network.allowed_ips]] *relay.network.allowed_ips* ** description: pass:none[POSIX extended regular expression with IPs allowed to use relay (case insensitive, use "(?-i)" at beginning to make it case sensitive), example: "^(123.45.67.89|192.160.*)$"] ** type: string -** values: any string (default value: `+""+`) +** values: any string +** default value: `+""+` * [[option_relay.network.bind_address]] *relay.network.bind_address* ** description: pass:none[address for bind (if empty, connection is possible on all interfaces, use "127.0.0.1" to allow connections from local machine only)] ** type: string -** values: any string (default value: `+""+`) +** values: any string +** default value: `+""+` * [[option_relay.network.clients_purge_delay]] *relay.network.clients_purge_delay* ** description: pass:none[delay for purging disconnected clients (in minutes, 0 = purge clients immediately, -1 = never purge)] ** type: integer -** values: -1 .. 43200 (default value: `+0+`) +** values: -1 .. 43200 +** default value: `+0+` * [[option_relay.network.compression_level]] *relay.network.compression_level* ** description: pass:none[compression level for packets sent to client with WeeChat protocol (0 = disable compression, 1 = low compression ... 9 = best compression)] ** type: integer -** values: 0 .. 9 (default value: `+6+`) +** values: 0 .. 9 +** default value: `+6+` * [[option_relay.network.ipv6]] *relay.network.ipv6* ** description: pass:none[listen on IPv6 socket by default (in addition to IPv4 which is default); protocols IPv4 and IPv6 can be forced (individually or together) in the protocol name (see /help relay)] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_relay.network.max_clients]] *relay.network.max_clients* ** description: pass:none[maximum number of clients connecting to a port (0 = no limit)] ** type: integer -** values: 0 .. 2147483647 (default value: `+5+`) +** values: 0 .. 2147483647 +** default value: `+5+` * [[option_relay.network.password]] *relay.network.password* ** description: pass:none[password required by clients to access this relay (empty value means no password required, see option relay.network.allow_empty_password) (note: content is evaluated, see /help eval)] ** type: string -** values: any string (default value: `+""+`) +** values: any string +** default value: `+""+` * [[option_relay.network.ssl_cert_key]] *relay.network.ssl_cert_key* ** description: pass:none[file with SSL certificate and private key (for serving clients with SSL)] ** type: string -** values: any string (default value: `+"%h/ssl/relay.pem"+`) +** values: any string +** default value: `+"%h/ssl/relay.pem"+` * [[option_relay.network.ssl_priorities]] *relay.network.ssl_priorities* ** description: pass:none[string with priorities for gnutls (for syntax, see documentation of function gnutls_priority_init in gnutls manual, common strings are: "PERFORMANCE", "NORMAL", "SECURE128", "SECURE256", "EXPORT", "NONE")] ** type: string -** values: any string (default value: `+"NORMAL:-VERS-SSL3.0"+`) +** values: any string +** default value: `+"NORMAL:-VERS-SSL3.0"+` * [[option_relay.network.websocket_allowed_origins]] *relay.network.websocket_allowed_origins* ** description: pass:none[POSIX extended regular expression with origins allowed in websockets (case insensitive, use "(?-i)" at beginning to make it case sensitive), example: "^http://(www\.)?example\.(com|org)"] ** type: string -** values: any string (default value: `+""+`) +** values: any string +** default value: `+""+` diff --git a/doc/en/autogen/user/script_options.adoc b/doc/en/autogen/user/script_options.adoc index 28a78507d..122b9768f 100644 --- a/doc/en/autogen/user/script_options.adoc +++ b/doc/en/autogen/user/script_options.adoc @@ -5,204 +5,245 @@ * [[option_script.color.status_autoloaded]] *script.color.status_autoloaded* ** description: pass:none[color for status "autoloaded" ("a")] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+cyan+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+cyan+` * [[option_script.color.status_held]] *script.color.status_held* ** description: pass:none[color for status "held" ("H")] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+white+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+white+` * [[option_script.color.status_installed]] *script.color.status_installed* ** description: pass:none[color for status "installed" ("i")] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+lightcyan+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+lightcyan+` * [[option_script.color.status_obsolete]] *script.color.status_obsolete* ** description: pass:none[color for status "obsolete" ("N")] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+lightmagenta+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+lightmagenta+` * [[option_script.color.status_popular]] *script.color.status_popular* ** description: pass:none[color for status "popular" ("*")] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+yellow+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+yellow+` * [[option_script.color.status_running]] *script.color.status_running* ** description: pass:none[color for status "running" ("r")] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+lightgreen+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+lightgreen+` * [[option_script.color.status_unknown]] *script.color.status_unknown* ** description: pass:none[color for status "unknown" ("?")] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+lightred+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+lightred+` * [[option_script.color.text]] *script.color.text* ** description: pass:none[text color in script buffer] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+default+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+default+` * [[option_script.color.text_bg]] *script.color.text_bg* ** description: pass:none[background color in script buffer] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+default+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+default+` * [[option_script.color.text_bg_selected]] *script.color.text_bg_selected* ** description: pass:none[background color for selected line in script buffer] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+red+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+red+` * [[option_script.color.text_date]] *script.color.text_date* ** description: pass:none[text color of dates in script buffer] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+default+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+default+` * [[option_script.color.text_date_selected]] *script.color.text_date_selected* ** description: pass:none[text color of dates for selected line in script buffer] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+white+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+white+` * [[option_script.color.text_delimiters]] *script.color.text_delimiters* ** description: pass:none[text color of delimiters in script buffer] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+default+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+default+` * [[option_script.color.text_description]] *script.color.text_description* ** description: pass:none[text color of description in script buffer] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+default+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+default+` * [[option_script.color.text_description_selected]] *script.color.text_description_selected* ** description: pass:none[text color of description for selected line in script buffer] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+white+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+white+` * [[option_script.color.text_extension]] *script.color.text_extension* ** description: pass:none[text color of extension in script buffer] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+default+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+default+` * [[option_script.color.text_extension_selected]] *script.color.text_extension_selected* ** description: pass:none[text color of extension for selected line in script buffer] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+white+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+white+` * [[option_script.color.text_name]] *script.color.text_name* ** description: pass:none[text color of script name in script buffer] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+cyan+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+cyan+` * [[option_script.color.text_name_selected]] *script.color.text_name_selected* ** description: pass:none[text color of script name for selected line in script buffer] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+lightcyan+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+lightcyan+` * [[option_script.color.text_selected]] *script.color.text_selected* ** description: pass:none[text color for selected line in script buffer] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+white+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+white+` * [[option_script.color.text_tags]] *script.color.text_tags* ** description: pass:none[text color of tags in script buffer] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+brown+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+brown+` * [[option_script.color.text_tags_selected]] *script.color.text_tags_selected* ** description: pass:none[text color of tags for selected line in script buffer] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+yellow+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+yellow+` * [[option_script.color.text_version]] *script.color.text_version* ** description: pass:none[text color of version in script buffer] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+magenta+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+magenta+` * [[option_script.color.text_version_loaded]] *script.color.text_version_loaded* ** description: pass:none[text color of version loaded in script buffer] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+default+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+default+` * [[option_script.color.text_version_loaded_selected]] *script.color.text_version_loaded_selected* ** description: pass:none[text color of version loaded for selected line in script buffer] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+white+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+white+` * [[option_script.color.text_version_selected]] *script.color.text_version_selected* ** description: pass:none[text color of version for selected line in script buffer] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+lightmagenta+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+lightmagenta+` * [[option_script.look.columns]] *script.look.columns* ** description: pass:none[format of columns displayed in script buffer: following column identifiers are replaced by their value: %a=author, %d=description, %D=date added, %e=extension, %l=language, %L=license, %n=name with extension, %N=name, %r=requirements, %s=status, %t=tags, %u=date updated, %v=version, %V=version loaded, %w=min_weechat, %W=max_weechat)] ** type: string -** values: any string (default value: `+"%s %n %V %v %u | %d | %t"+`) +** values: any string +** default value: `+"%s %n %V %v %u | %d | %t"+` * [[option_script.look.diff_color]] *script.look.diff_color* ** description: pass:none[colorize output of diff] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_script.look.diff_command]] *script.look.diff_command* ** description: pass:none[command used to show differences between script installed and the new version in repository ("auto" = auto detect diff command (git or diff), empty value = disable diff, other string = name of command, for example "diff")] ** type: string -** values: any string (default value: `+"auto"+`) +** values: any string +** default value: `+"auto"+` * [[option_script.look.display_source]] *script.look.display_source* ** description: pass:none[display source code of script on buffer with detail on a script (script is downloaded in a temporary file when detail on script is displayed)] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_script.look.quiet_actions]] *script.look.quiet_actions* ** description: pass:none[quiet actions on script buffer: do not display messages on core buffer when scripts are installed/removed/loaded/unloaded (only errors are displayed)] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_script.look.sort]] *script.look.sort* ** description: pass:none[default sort keys for scripts: comma-separated list of identifiers: a=author, A=autoloaded, d=date added, e=extension, i=installed, l=language, n=name, o=obsolete, p=popularity, r=running, u=date updated; char "-" can be used before identifier to reverse order; example: "i,u": installed scripts first, sorted by update date] ** type: string -** values: any string (default value: `+"p,n"+`) +** values: any string +** default value: `+"p,n"+` * [[option_script.look.translate_description]] *script.look.translate_description* ** description: pass:none[translate description of scripts (if translation is available in your language, otherwise English version is used)] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_script.look.use_keys]] *script.look.use_keys* ** description: pass:none[use keys alt+X in script buffer to do actions on scripts (alt+i = install, alt+r = remove, ...); if disabled, only the input is allowed: i, r, ...] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_script.scripts.autoload]] *script.scripts.autoload* ** description: pass:none[autoload scripts installed (make a link in "autoload" directory to script in parent directory)] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_script.scripts.cache_expire]] *script.scripts.cache_expire* ** description: pass:none[local cache expiration time, in minutes (-1 = never expires, 0 = always expire)] ** type: integer -** values: -1 .. 525600 (default value: `+1440+`) +** values: -1 .. 525600 +** default value: `+1440+` * [[option_script.scripts.download_timeout]] *script.scripts.download_timeout* ** description: pass:none[timeout (in seconds) for download of scripts and list of scripts] ** type: integer -** values: 1 .. 3600 (default value: `+30+`) +** values: 1 .. 3600 +** default value: `+30+` * [[option_script.scripts.hold]] *script.scripts.hold* ** description: pass:none[scripts to "hold": comma-separated list of scripts which will never been upgraded and can not be removed, for example: "buffers.pl,iset.pl"] ** type: string -** values: any string (default value: `+""+`) +** values: any string +** default value: `+""+` * [[option_script.scripts.path]] *script.scripts.path* ** description: pass:none[local cache directory for scripts; "%h" at beginning of string is replaced by WeeChat home ("~/.weechat" by default) (note: content is evaluated, see /help eval)] ** type: string -** values: any string (default value: `+"%h/script"+`) +** values: any string +** default value: `+"%h/script"+` * [[option_script.scripts.url]] *script.scripts.url* ** description: pass:none[URL for file with list of scripts; by default HTTPS is forced, see option script.scripts.url_force_https] ** type: string -** values: any string (default value: `+"http://weechat.org/files/plugins.xml.gz"+`) +** values: any string +** default value: `+"http://weechat.org/files/plugins.xml.gz"+` * [[option_script.scripts.url_force_https]] *script.scripts.url_force_https* ** description: pass:none[force use of HTTPS for downloads (index and scripts); you should disable this option only if you have problems with the downloads] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` diff --git a/doc/en/autogen/user/sec_options.adoc b/doc/en/autogen/user/sec_options.adoc index aa3cc1912..823272b9f 100644 --- a/doc/en/autogen/user/sec_options.adoc +++ b/doc/en/autogen/user/sec_options.adoc @@ -5,19 +5,23 @@ * [[option_sec.crypt.cipher]] *sec.crypt.cipher* ** description: pass:none[cipher used to crypt data (the number after algorithm is the size of the key in bits)] ** type: integer -** values: aes128, aes192, aes256 (default value: `+aes256+`) +** values: aes128, aes192, aes256 +** default value: `+aes256+` * [[option_sec.crypt.hash_algo]] *sec.crypt.hash_algo* ** description: pass:none[hash algorithm used to check the decrypted data] ** type: integer -** values: sha224, sha256, sha384, sha512 (default value: `+sha256+`) +** values: sha224, sha256, sha384, sha512 +** default value: `+sha256+` * [[option_sec.crypt.passphrase_file]] *sec.crypt.passphrase_file* ** description: pass:none[path to a file containing the passphrase to encrypt/decrypt secured data; this option is used only when reading file sec.conf; only first line of file is used; this file is used only if the environment variable "WEECHAT_PASSPHRASE" is not set (the environment variable has higher priority); security note: it is recommended to keep this file readable only by you and store it outside WeeChat home (for example in your home); example: "~/.weechat-passphrase"] ** type: string -** values: any string (default value: `+""+`) +** values: any string +** default value: `+""+` * [[option_sec.crypt.salt]] *sec.crypt.salt* ** description: pass:none[use salt when generating key used in encryption (recommended for maximum security); when enabled, the content of crypted data in file sec.conf will be different on each write of the file; if you put the file sec.conf in a version control system, then you can turn off this option to have always same content in file] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` diff --git a/doc/en/autogen/user/trigger_options.adoc b/doc/en/autogen/user/trigger_options.adoc index c2dd427b3..32291da2b 100644 --- a/doc/en/autogen/user/trigger_options.adoc +++ b/doc/en/autogen/user/trigger_options.adoc @@ -5,54 +5,65 @@ * [[option_trigger.color.flag_command]] *trigger.color.flag_command* ** description: pass:none[text color for command flag (in /trigger list)] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+lightgreen+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+lightgreen+` * [[option_trigger.color.flag_conditions]] *trigger.color.flag_conditions* ** description: pass:none[text color for conditions flag (in /trigger list)] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+yellow+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+yellow+` * [[option_trigger.color.flag_post_action]] *trigger.color.flag_post_action* ** description: pass:none[text color for post action flag (in /trigger list)] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+lightblue+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+lightblue+` * [[option_trigger.color.flag_regex]] *trigger.color.flag_regex* ** description: pass:none[text color for regex flag (in /trigger list)] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+lightcyan+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+lightcyan+` * [[option_trigger.color.flag_return_code]] *trigger.color.flag_return_code* ** description: pass:none[text color for return code flag (in /trigger list)] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+lightmagenta+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+lightmagenta+` * [[option_trigger.color.regex]] *trigger.color.regex* ** description: pass:none[text color for regular expressions] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+white+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+white+` * [[option_trigger.color.replace]] *trigger.color.replace* ** description: pass:none[text color for replacement text (for regular expressions)] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+cyan+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+cyan+` * [[option_trigger.color.trigger]] *trigger.color.trigger* ** description: pass:none[text color for trigger name] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+green+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+green+` * [[option_trigger.color.trigger_disabled]] *trigger.color.trigger_disabled* ** description: pass:none[text color for disabled trigger name] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+red+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+red+` * [[option_trigger.look.enabled]] *trigger.look.enabled* ** description: pass:none[enable trigger support] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_trigger.look.monitor_strip_colors]] *trigger.look.monitor_strip_colors* ** description: pass:none[strip colors in hashtable values displayed on monitor buffer] ** type: boolean -** values: on, off (default value: `+off+`) +** values: on, off +** default value: `+off+` diff --git a/doc/en/autogen/user/weechat_options.adoc b/doc/en/autogen/user/weechat_options.adoc index b9740db01..78bc1a5bb 100644 --- a/doc/en/autogen/user/weechat_options.adoc +++ b/doc/en/autogen/user/weechat_options.adoc @@ -5,1049 +5,1259 @@ * [[option_weechat.color.bar_more]] *weechat.color.bar_more* ** description: pass:none[text color for "+" when scrolling bars] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+lightmagenta+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+lightmagenta+` * [[option_weechat.color.chat]] *weechat.color.chat* ** description: pass:none[text color for chat] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+default+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+default+` * [[option_weechat.color.chat_bg]] *weechat.color.chat_bg* ** description: pass:none[background color for chat] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+default+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+default+` * [[option_weechat.color.chat_buffer]] *weechat.color.chat_buffer* ** description: pass:none[text color for buffer names] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+white+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+white+` * [[option_weechat.color.chat_channel]] *weechat.color.chat_channel* ** description: pass:none[text color for channel names] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+white+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+white+` * [[option_weechat.color.chat_day_change]] *weechat.color.chat_day_change* ** description: pass:none[text color for message displayed when the day has changed] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+cyan+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+cyan+` * [[option_weechat.color.chat_delimiters]] *weechat.color.chat_delimiters* ** description: pass:none[text color for delimiters] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+green+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+green+` * [[option_weechat.color.chat_highlight]] *weechat.color.chat_highlight* ** description: pass:none[text color for highlighted prefix] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+yellow+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+yellow+` * [[option_weechat.color.chat_highlight_bg]] *weechat.color.chat_highlight_bg* ** description: pass:none[background color for highlighted prefix] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+magenta+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+magenta+` * [[option_weechat.color.chat_host]] *weechat.color.chat_host* ** description: pass:none[text color for hostnames] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+cyan+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+cyan+` * [[option_weechat.color.chat_inactive_buffer]] *weechat.color.chat_inactive_buffer* ** description: pass:none[text color for chat when line is inactive (buffer is merged with other buffers and is not selected)] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+default+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+default+` * [[option_weechat.color.chat_inactive_window]] *weechat.color.chat_inactive_window* ** description: pass:none[text color for chat when window is inactive (not current selected window)] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+default+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+default+` * [[option_weechat.color.chat_nick]] *weechat.color.chat_nick* ** description: pass:none[text color for nicks in chat window: used in some server messages and as fallback when a nick color is not found; most of times nick color comes from option weechat.color.chat_nick_colors] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+lightcyan+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+lightcyan+` * [[option_weechat.color.chat_nick_colors]] *weechat.color.chat_nick_colors* ** description: pass:none[text color for nicks (comma separated list of colors, background is allowed with format: "fg:bg", for example: "lightred:blue")] ** type: string -** values: any string (default value: `+"cyan,magenta,green,brown,lightblue,default,lightcyan,lightmagenta,lightgreen,blue"+`) +** values: any string +** default value: `+"cyan,magenta,green,brown,lightblue,default,lightcyan,lightmagenta,lightgreen,blue"+` * [[option_weechat.color.chat_nick_offline]] *weechat.color.chat_nick_offline* ** description: pass:none[text color for offline nick (not in nicklist any more); this color is used only if option weechat.look.color_nick_offline is enabled] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+default+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+default+` * [[option_weechat.color.chat_nick_offline_highlight]] *weechat.color.chat_nick_offline_highlight* ** description: pass:none[text color for offline nick with highlight; this color is used only if option weechat.look.color_nick_offline is enabled] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+default+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+default+` * [[option_weechat.color.chat_nick_offline_highlight_bg]] *weechat.color.chat_nick_offline_highlight_bg* ** description: pass:none[background color for offline nick with highlight; this color is used only if option weechat.look.color_nick_offline is enabled] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+blue+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+blue+` * [[option_weechat.color.chat_nick_other]] *weechat.color.chat_nick_other* ** description: pass:none[text color for other nick in private buffer] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+cyan+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+cyan+` * [[option_weechat.color.chat_nick_prefix]] *weechat.color.chat_nick_prefix* ** description: pass:none[color for nick prefix (string displayed before nick in prefix)] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+green+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+green+` * [[option_weechat.color.chat_nick_self]] *weechat.color.chat_nick_self* ** description: pass:none[text color for local nick in chat window] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+white+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+white+` * [[option_weechat.color.chat_nick_suffix]] *weechat.color.chat_nick_suffix* ** description: pass:none[color for nick suffix (string displayed after nick in prefix)] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+green+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+green+` * [[option_weechat.color.chat_prefix_action]] *weechat.color.chat_prefix_action* ** description: pass:none[text color for action prefix] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+white+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+white+` * [[option_weechat.color.chat_prefix_buffer]] *weechat.color.chat_prefix_buffer* ** description: pass:none[text color for buffer name (before prefix, when many buffers are merged with same number)] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+brown+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+brown+` * [[option_weechat.color.chat_prefix_buffer_inactive_buffer]] *weechat.color.chat_prefix_buffer_inactive_buffer* ** description: pass:none[text color for inactive buffer name (before prefix, when many buffers are merged with same number and if buffer is not selected)] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+default+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+default+` * [[option_weechat.color.chat_prefix_error]] *weechat.color.chat_prefix_error* ** description: pass:none[text color for error prefix] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+yellow+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+yellow+` * [[option_weechat.color.chat_prefix_join]] *weechat.color.chat_prefix_join* ** description: pass:none[text color for join prefix] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+lightgreen+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+lightgreen+` * [[option_weechat.color.chat_prefix_more]] *weechat.color.chat_prefix_more* ** description: pass:none[text color for "+" when prefix is too long] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+lightmagenta+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+lightmagenta+` * [[option_weechat.color.chat_prefix_network]] *weechat.color.chat_prefix_network* ** description: pass:none[text color for network prefix] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+magenta+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+magenta+` * [[option_weechat.color.chat_prefix_quit]] *weechat.color.chat_prefix_quit* ** description: pass:none[text color for quit prefix] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+lightred+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+lightred+` * [[option_weechat.color.chat_prefix_suffix]] *weechat.color.chat_prefix_suffix* ** description: pass:none[text color for suffix (after prefix)] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+green+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+green+` * [[option_weechat.color.chat_read_marker]] *weechat.color.chat_read_marker* ** description: pass:none[text color for unread data marker] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+magenta+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+magenta+` * [[option_weechat.color.chat_read_marker_bg]] *weechat.color.chat_read_marker_bg* ** description: pass:none[background color for unread data marker] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+default+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+default+` * [[option_weechat.color.chat_server]] *weechat.color.chat_server* ** description: pass:none[text color for server names] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+brown+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+brown+` * [[option_weechat.color.chat_tags]] *weechat.color.chat_tags* ** description: pass:none[text color for tags after messages (displayed with command /debug tags)] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+red+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+red+` * [[option_weechat.color.chat_text_found]] *weechat.color.chat_text_found* ** description: pass:none[text color for marker on lines where text sought is found] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+yellow+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+yellow+` * [[option_weechat.color.chat_text_found_bg]] *weechat.color.chat_text_found_bg* ** description: pass:none[background color for marker on lines where text sought is found] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+lightmagenta+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+lightmagenta+` * [[option_weechat.color.chat_time]] *weechat.color.chat_time* ** description: pass:none[text color for time in chat window] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+default+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+default+` * [[option_weechat.color.chat_time_delimiters]] *weechat.color.chat_time_delimiters* ** description: pass:none[text color for time delimiters] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+brown+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+brown+` * [[option_weechat.color.chat_value]] *weechat.color.chat_value* ** description: pass:none[text color for values] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+cyan+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+cyan+` * [[option_weechat.color.chat_value_null]] *weechat.color.chat_value_null* ** description: pass:none[text color for null values (undefined)] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+blue+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+blue+` * [[option_weechat.color.emphasized]] *weechat.color.emphasized* ** description: pass:none[text color for emphasized text (for example when searching text); this option is used only if option weechat.look.emphasized_attributes is an empty string (default value)] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+yellow+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+yellow+` * [[option_weechat.color.emphasized_bg]] *weechat.color.emphasized_bg* ** description: pass:none[background color for emphasized text (for example when searching text); used only if option weechat.look.emphasized_attributes is an empty string (default value)] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+magenta+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+magenta+` * [[option_weechat.color.input_actions]] *weechat.color.input_actions* ** description: pass:none[text color for actions in input line] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+lightgreen+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+lightgreen+` * [[option_weechat.color.input_text_not_found]] *weechat.color.input_text_not_found* ** description: pass:none[text color for unsuccessful text search in input line] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+red+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+red+` * [[option_weechat.color.item_away]] *weechat.color.item_away* ** description: pass:none[text color for away item] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+yellow+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+yellow+` * [[option_weechat.color.nicklist_away]] *weechat.color.nicklist_away* ** description: pass:none[text color for away nicknames] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+cyan+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+cyan+` * [[option_weechat.color.nicklist_group]] *weechat.color.nicklist_group* ** description: pass:none[text color for groups in nicklist] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+green+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+green+` * [[option_weechat.color.separator]] *weechat.color.separator* ** description: pass:none[color for window separators (when split) and separators beside bars (like nicklist)] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+blue+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+blue+` * [[option_weechat.color.status_count_highlight]] *weechat.color.status_count_highlight* ** description: pass:none[text color for count of highlight messages in hotlist (status bar)] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+magenta+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+magenta+` * [[option_weechat.color.status_count_msg]] *weechat.color.status_count_msg* ** description: pass:none[text color for count of messages in hotlist (status bar)] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+brown+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+brown+` * [[option_weechat.color.status_count_other]] *weechat.color.status_count_other* ** description: pass:none[text color for count of other messages in hotlist (status bar)] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+default+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+default+` * [[option_weechat.color.status_count_private]] *weechat.color.status_count_private* ** description: pass:none[text color for count of private messages in hotlist (status bar)] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+green+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+green+` * [[option_weechat.color.status_data_highlight]] *weechat.color.status_data_highlight* ** description: pass:none[text color for buffer with highlight (status bar)] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+lightmagenta+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+lightmagenta+` * [[option_weechat.color.status_data_msg]] *weechat.color.status_data_msg* ** description: pass:none[text color for buffer with new messages (status bar)] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+yellow+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+yellow+` * [[option_weechat.color.status_data_other]] *weechat.color.status_data_other* ** description: pass:none[text color for buffer with new data (not messages) (status bar)] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+default+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+default+` * [[option_weechat.color.status_data_private]] *weechat.color.status_data_private* ** description: pass:none[text color for buffer with private message (status bar)] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+lightgreen+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+lightgreen+` * [[option_weechat.color.status_filter]] *weechat.color.status_filter* ** description: pass:none[text color for filter indicator in status bar] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+green+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+green+` * [[option_weechat.color.status_more]] *weechat.color.status_more* ** description: pass:none[text color for buffer with new data (status bar)] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+yellow+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+yellow+` * [[option_weechat.color.status_mouse]] *weechat.color.status_mouse* ** description: pass:none[text color for mouse indicator in status bar] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+green+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+green+` * [[option_weechat.color.status_name]] *weechat.color.status_name* ** description: pass:none[text color for current buffer name in status bar] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+white+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+white+` * [[option_weechat.color.status_name_ssl]] *weechat.color.status_name_ssl* ** description: pass:none[text color for current buffer name in status bar, if data are secured with a protocol like SSL] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+lightgreen+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+lightgreen+` * [[option_weechat.color.status_nicklist_count]] *weechat.color.status_nicklist_count* ** description: pass:none[text color for number of nicks in nicklist (status bar)] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+default+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+default+` * [[option_weechat.color.status_number]] *weechat.color.status_number* ** description: pass:none[text color for current buffer number in status bar] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+yellow+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+yellow+` * [[option_weechat.color.status_time]] *weechat.color.status_time* ** description: pass:none[text color for time (status bar)] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+default+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+default+` * [[option_weechat.completion.base_word_until_cursor]] *weechat.completion.base_word_until_cursor* ** description: pass:none[if enabled, the base word to complete ends at char before cursor; otherwise the base word ends at first space after cursor] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_weechat.completion.command_inline]] *weechat.completion.command_inline* ** description: pass:none[if enabled, the commands inside command line are completed (the command at beginning of line has higher priority and is used first); note: when this option is enabled, there is no more automatic completion of paths beginning with "/" (outside commands arguments)] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_weechat.completion.default_template]] *weechat.completion.default_template* ** description: pass:none[default completion template (please see documentation for template codes and values: plugin API reference, function "weechat_hook_command")] ** type: string -** values: any string (default value: `+"%(nicks)|%(irc_channels)"+`) +** values: any string +** default value: `+"%(nicks)|%(irc_channels)"+` * [[option_weechat.completion.nick_add_space]] *weechat.completion.nick_add_space* ** description: pass:none[add space after nick completion (when nick is not first word on command line)] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_weechat.completion.nick_completer]] *weechat.completion.nick_completer* ** description: pass:none[string inserted after nick completion (when nick is first word on command line)] ** type: string -** values: any string (default value: `+":"+`) +** values: any string +** default value: `+":"+` * [[option_weechat.completion.nick_first_only]] *weechat.completion.nick_first_only* ** description: pass:none[complete only with first nick found] ** type: boolean -** values: on, off (default value: `+off+`) +** values: on, off +** default value: `+off+` * [[option_weechat.completion.nick_ignore_chars]] *weechat.completion.nick_ignore_chars* ** description: pass:none[chars ignored for nick completion] ** type: string -** values: any string (default value: `+"[]`_-^"+`) +** values: any string +** default value: `+"[]`_-^"+` * [[option_weechat.completion.partial_completion_alert]] *weechat.completion.partial_completion_alert* ** description: pass:none[alert user when a partial completion occurs] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_weechat.completion.partial_completion_command]] *weechat.completion.partial_completion_command* ** description: pass:none[partially complete command names (stop when many commands found begin with same letters)] ** type: boolean -** values: on, off (default value: `+off+`) +** values: on, off +** default value: `+off+` * [[option_weechat.completion.partial_completion_command_arg]] *weechat.completion.partial_completion_command_arg* ** description: pass:none[partially complete command arguments (stop when many arguments found begin with same prefix)] ** type: boolean -** values: on, off (default value: `+off+`) +** values: on, off +** default value: `+off+` * [[option_weechat.completion.partial_completion_count]] *weechat.completion.partial_completion_count* ** description: pass:none[display count for each partial completion in bar item] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_weechat.completion.partial_completion_other]] *weechat.completion.partial_completion_other* ** description: pass:none[partially complete outside commands (stop when many words found begin with same letters)] ** type: boolean -** values: on, off (default value: `+off+`) +** values: on, off +** default value: `+off+` * [[option_weechat.history.display_default]] *weechat.history.display_default* ** description: pass:none[maximum number of commands to display by default in history listing (0 = unlimited)] ** type: integer -** values: 0 .. 2147483647 (default value: `+5+`) +** values: 0 .. 2147483647 +** default value: `+5+` * [[option_weechat.history.max_buffer_lines_minutes]] *weechat.history.max_buffer_lines_minutes* ** description: pass:none[maximum number of minutes in history per buffer (0 = unlimited); examples: 1440 = one day, 10080 = one week, 43200 = one month, 525600 = one year; use 0 ONLY if option weechat.history.max_buffer_lines_number is NOT set to 0] ** type: integer -** values: 0 .. 2147483647 (default value: `+0+`) +** values: 0 .. 2147483647 +** default value: `+0+` * [[option_weechat.history.max_buffer_lines_number]] *weechat.history.max_buffer_lines_number* ** description: pass:none[maximum number of lines in history per buffer (0 = unlimited); use 0 ONLY if option weechat.history.max_buffer_lines_minutes is NOT set to 0] ** type: integer -** values: 0 .. 2147483647 (default value: `+4096+`) +** values: 0 .. 2147483647 +** default value: `+4096+` * [[option_weechat.history.max_commands]] *weechat.history.max_commands* ** description: pass:none[maximum number of user commands in history (0 = unlimited, NOT RECOMMENDED: no limit in memory usage)] ** type: integer -** values: 0 .. 2147483647 (default value: `+100+`) +** values: 0 .. 2147483647 +** default value: `+100+` * [[option_weechat.history.max_visited_buffers]] *weechat.history.max_visited_buffers* ** description: pass:none[maximum number of visited buffers to keep in memory] ** type: integer -** values: 0 .. 1000 (default value: `+50+`) +** values: 0 .. 1000 +** default value: `+50+` * [[option_weechat.look.align_end_of_lines]] *weechat.look.align_end_of_lines* ** description: pass:none[alignment for end of lines (all lines after the first): they are starting under this data (time, buffer, prefix, suffix, message (default))] ** type: integer -** values: time, buffer, prefix, suffix, message (default value: `+message+`) +** values: time, buffer, prefix, suffix, message +** default value: `+message+` * [[option_weechat.look.align_multiline_words]] *weechat.look.align_multiline_words* ** description: pass:none[alignment for multiline words according to option weechat.look.align_end_of_lines; if disabled, the multiline words will have no alignment will not be aligned, which can be useful to not break long URLs] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_weechat.look.bar_more_down]] *weechat.look.bar_more_down* ** description: pass:none[string displayed when bar can be scrolled down (for bars with filling different from "horizontal")] ** type: string -** values: any string (default value: `+"++"+`) +** values: any string +** default value: `+"++"+` * [[option_weechat.look.bar_more_left]] *weechat.look.bar_more_left* ** description: pass:none[string displayed when bar can be scrolled to the left (for bars with filling "horizontal")] ** type: string -** values: any string (default value: `+"<<"+`) +** values: any string +** default value: `+"<<"+` * [[option_weechat.look.bar_more_right]] *weechat.look.bar_more_right* ** description: pass:none[string displayed when bar can be scrolled to the right (for bars with filling "horizontal")] ** type: string -** values: any string (default value: `+">>"+`) +** values: any string +** default value: `+">>"+` * [[option_weechat.look.bar_more_up]] *weechat.look.bar_more_up* ** description: pass:none[string displayed when bar can be scrolled up (for bars with filling different from "horizontal")] ** type: string -** values: any string (default value: `+"--"+`) +** values: any string +** default value: `+"--"+` * [[option_weechat.look.bare_display_exit_on_input]] *weechat.look.bare_display_exit_on_input* ** description: pass:none[exit the bare display mode on any changes in input] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_weechat.look.bare_display_time_format]] *weechat.look.bare_display_time_format* ** description: pass:none[time format in bare display mode (see man strftime for date/time specifiers)] ** type: string -** values: any string (default value: `+"%H:%M"+`) +** values: any string +** default value: `+"%H:%M"+` * [[option_weechat.look.buffer_auto_renumber]] *weechat.look.buffer_auto_renumber* ** description: pass:none[automatically renumber buffers to have only consecutive numbers and start with number 1; if disabled, gaps between buffer numbers are allowed and the first buffer can have a number greater than 1] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_weechat.look.buffer_notify_default]] *weechat.look.buffer_notify_default* ** description: pass:none[default notify level for buffers (used to tell WeeChat if buffer must be displayed in hotlist or not, according to importance of message): all=all messages (default), message=messages+highlights, highlight=highlights only, none=never display in hotlist] ** type: integer -** values: none, highlight, message, all (default value: `+all+`) +** values: none, highlight, message, all +** default value: `+all+` * [[option_weechat.look.buffer_position]] *weechat.look.buffer_position* ** description: pass:none[position of a new buffer: end = after the end of list (number = last number + 1) (default), first_gap = at first available number in the list (after the end of list if no number is available); this option is used only if the buffer has no layout number] ** type: integer -** values: end, first_gap (default value: `+end+`) +** values: end, first_gap +** default value: `+end+` * [[option_weechat.look.buffer_search_case_sensitive]] *weechat.look.buffer_search_case_sensitive* ** description: pass:none[default text search in buffer: case sensitive or not] ** type: boolean -** values: on, off (default value: `+off+`) +** values: on, off +** default value: `+off+` * [[option_weechat.look.buffer_search_force_default]] *weechat.look.buffer_search_force_default* ** description: pass:none[force default values for text search in buffer (instead of using values from last search in buffer)] ** type: boolean -** values: on, off (default value: `+off+`) +** values: on, off +** default value: `+off+` * [[option_weechat.look.buffer_search_regex]] *weechat.look.buffer_search_regex* ** description: pass:none[default text search in buffer: if enabled, search POSIX extended regular expression, otherwise search simple string] ** type: boolean -** values: on, off (default value: `+off+`) +** values: on, off +** default value: `+off+` * [[option_weechat.look.buffer_search_where]] *weechat.look.buffer_search_where* ** description: pass:none[default text search in buffer: in message, prefix, prefix and message] ** type: integer -** values: prefix, message, prefix_message (default value: `+prefix_message+`) +** values: prefix, message, prefix_message +** default value: `+prefix_message+` * [[option_weechat.look.buffer_time_format]] *weechat.look.buffer_time_format* ** description: pass:none[time format for each line displayed in buffers (see man strftime for date/time specifiers) (note: content is evaluated, so you can use colors with format "${color:xxx}", see /help eval); for example time using grayscale (requires support of 256 colors): "${color:252}%H${color:245}%M${color:240}%S"] ** type: string -** values: any string (default value: `+"%H:%M:%S"+`) +** values: any string +** default value: `+"%H:%M:%S"+` * [[option_weechat.look.color_basic_force_bold]] *weechat.look.color_basic_force_bold* ** description: pass:none[force "bold" attribute for light colors and "darkgray" in basic colors (this option is disabled by default: bold is used only if terminal has less than 16 colors)] ** type: boolean -** values: on, off (default value: `+off+`) +** values: on, off +** default value: `+off+` * [[option_weechat.look.color_inactive_buffer]] *weechat.look.color_inactive_buffer* ** description: pass:none[use a different color for lines in inactive buffer (when line is from a merged buffer not selected)] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_weechat.look.color_inactive_message]] *weechat.look.color_inactive_message* ** description: pass:none[use a different color for inactive message (when window is not current window, or if line is from a merged buffer not selected)] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_weechat.look.color_inactive_prefix]] *weechat.look.color_inactive_prefix* ** description: pass:none[use a different color for inactive prefix (when window is not current window, or if line is from a merged buffer not selected)] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_weechat.look.color_inactive_prefix_buffer]] *weechat.look.color_inactive_prefix_buffer* ** description: pass:none[use a different color for inactive buffer name in prefix (when window is not current window, or if line is from a merged buffer not selected)] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_weechat.look.color_inactive_time]] *weechat.look.color_inactive_time* ** description: pass:none[use a different color for inactive time (when window is not current window, or if line is from a merged buffer not selected)] ** type: boolean -** values: on, off (default value: `+off+`) +** values: on, off +** default value: `+off+` * [[option_weechat.look.color_inactive_window]] *weechat.look.color_inactive_window* ** description: pass:none[use a different color for lines in inactive window (when window is not current window)] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_weechat.look.color_nick_offline]] *weechat.look.color_nick_offline* ** description: pass:none[use a different color for offline nicks (not in nicklist any more)] ** type: boolean -** values: on, off (default value: `+off+`) +** values: on, off +** default value: `+off+` * [[option_weechat.look.color_pairs_auto_reset]] *weechat.look.color_pairs_auto_reset* ** description: pass:none[automatically reset table of color pairs when number of available pairs is lower or equal to this number (-1 = disable automatic reset, and then a manual "/color reset" is needed when table is full)] ** type: integer -** values: -1 .. 256 (default value: `+5+`) +** values: -1 .. 256 +** default value: `+5+` * [[option_weechat.look.color_real_white]] *weechat.look.color_real_white* ** description: pass:none[if set, uses real white color, disabled by default for terms with white background (if you never use white background, you should turn on this option to see real white instead of default term foreground color)] ** type: boolean -** values: on, off (default value: `+off+`) +** values: on, off +** default value: `+off+` * [[option_weechat.look.command_chars]] *weechat.look.command_chars* ** description: pass:none[chars used to determine if input string is a command or not: input must start with one of these chars; the slash ("/") is always considered as command prefix (example: ".$")] ** type: string -** values: any string (default value: `+""+`) +** values: any string +** default value: `+""+` * [[option_weechat.look.command_incomplete]] *weechat.look.command_incomplete* ** description: pass:none[if set, incomplete and unambiguous commands are allowed, for example /he for /help] ** type: boolean -** values: on, off (default value: `+off+`) +** values: on, off +** default value: `+off+` * [[option_weechat.look.confirm_quit]] *weechat.look.confirm_quit* ** description: pass:none[if set, /quit command must be confirmed with extra argument "-yes" (see /help quit)] ** type: boolean -** values: on, off (default value: `+off+`) +** values: on, off +** default value: `+off+` * [[option_weechat.look.confirm_upgrade]] *weechat.look.confirm_upgrade* ** description: pass:none[if set, /upgrade command must be confirmed with extra argument "-yes" (see /help upgrade)] ** type: boolean -** values: on, off (default value: `+off+`) +** values: on, off +** default value: `+off+` * [[option_weechat.look.day_change]] *weechat.look.day_change* ** description: pass:none[display special message when day changes] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_weechat.look.day_change_message_1date]] *weechat.look.day_change_message_1date* ** description: pass:none[message displayed when the day has changed, with one date displayed (for example at beginning of buffer) (see man strftime for date/time specifiers) (note: content is evaluated, so you can use colors with format "${color:xxx}", see /help eval)] ** type: string -** values: any string (default value: `+"-- %a, %d %b %Y --"+`) +** values: any string +** default value: `+"-- %a, %d %b %Y --"+` * [[option_weechat.look.day_change_message_2dates]] *weechat.look.day_change_message_2dates* ** description: pass:none[message displayed when the day has changed, with two dates displayed (between two messages); the second date specifiers must start with two "%" because strftime is called two times on this string (see man strftime for date/time specifiers) (note: content is evaluated, so you can use colors with format "${color:xxx}", see /help eval)] ** type: string -** values: any string (default value: `+"-- %%a, %%d %%b %%Y (%a, %d %b %Y) --"+`) +** values: any string +** default value: `+"-- %%a, %%d %%b %%Y (%a, %d %b %Y) --"+` * [[option_weechat.look.eat_newline_glitch]] *weechat.look.eat_newline_glitch* ** description: pass:none[if set, the eat_newline_glitch will be set to 0; this is used to not add new line char at end of each line, and then not break text when you copy/paste text from WeeChat to another application (this option is disabled by default because it can cause serious display bugs)] ** type: boolean -** values: on, off (default value: `+off+`) +** values: on, off +** default value: `+off+` * [[option_weechat.look.emphasized_attributes]] *weechat.look.emphasized_attributes* ** description: pass:none[attributes for emphasized text: one or more attribute chars ("*" for bold, "!" for reverse, "/" for italic, "_" for underline); if the string is empty, the colors weechat.color.emphasized* are used] ** type: string -** values: any string (default value: `+""+`) +** values: any string +** default value: `+""+` * [[option_weechat.look.highlight]] *weechat.look.highlight* ** description: pass:none[comma separated list of words to highlight; case insensitive comparison (use "(?-i)" at beginning of words to make them case sensitive), words may begin or end with "*" for partial match; example: "test,(?-i)*toto*,flash*"] ** type: string -** values: any string (default value: `+""+`) +** values: any string +** default value: `+""+` * [[option_weechat.look.highlight_regex]] *weechat.look.highlight_regex* ** description: pass:none[POSIX extended regular expression used to check if a message has highlight or not, at least one match in string must be surrounded by delimiters (chars different from: alphanumeric, "-", "_" and "|"), regular expression is case insensitive (use "(?-i)" at beginning to make it case sensitive), examples: "flashcode|flashy", "(?-i)FlashCode|flashy"] ** type: string -** values: any string (default value: `+""+`) +** values: any string +** default value: `+""+` * [[option_weechat.look.highlight_tags]] *weechat.look.highlight_tags* ** description: pass:none[comma separated list of tags to highlight; case insensitive comparison; wildcard "*" is allowed in each tag; many tags can be separated by "+" to make a logical "and" between tags; examples: "nick_flashcode" for messages from nick "FlashCode", "irc_notice+nick_toto*" for notices from a nick starting with "toto"] ** type: string -** values: any string (default value: `+""+`) +** values: any string +** default value: `+""+` * [[option_weechat.look.hotlist_add_conditions]] *weechat.look.hotlist_add_conditions* ** description: pass:none[conditions to add a buffer in hotlist (if notify level is OK for the buffer); you can use in these conditions: "window" (current window pointer), "buffer" (buffer pointer to add in hotlist), "priority" (0 = low, 1 = message, 2 = private, 3 = highlight); by default a buffer is added to hotlist if you are away, or if the buffer is not visible on screen (not displayed in any window)] ** type: string -** values: any string (default value: `+"${away} || ${buffer.num_displayed} == 0"+`) +** values: any string +** default value: `+"${away} || ${buffer.num_displayed} == 0"+` * [[option_weechat.look.hotlist_buffer_separator]] *weechat.look.hotlist_buffer_separator* ** description: pass:none[string displayed between buffers in hotlist] ** type: string -** values: any string (default value: `+", "+`) +** values: any string +** default value: `+", "+` * [[option_weechat.look.hotlist_count_max]] *weechat.look.hotlist_count_max* ** description: pass:none[max number of messages count to display in hotlist for a buffer (0 = never display messages count)] ** type: integer -** values: 0 .. 4 (default value: `+2+`) +** values: 0 .. 4 +** default value: `+2+` * [[option_weechat.look.hotlist_count_min_msg]] *weechat.look.hotlist_count_min_msg* ** description: pass:none[display messages count if number of messages is greater or equal to this value] ** type: integer -** values: 1 .. 100 (default value: `+2+`) +** values: 1 .. 100 +** default value: `+2+` * [[option_weechat.look.hotlist_names_count]] *weechat.look.hotlist_names_count* ** description: pass:none[max number of names in hotlist (0 = no name displayed, only buffer numbers)] ** type: integer -** values: 0 .. 10000 (default value: `+3+`) +** values: 0 .. 10000 +** default value: `+3+` * [[option_weechat.look.hotlist_names_length]] *weechat.look.hotlist_names_length* ** description: pass:none[max length of names in hotlist (0 = no limit)] ** type: integer -** values: 0 .. 32 (default value: `+0+`) +** values: 0 .. 32 +** default value: `+0+` * [[option_weechat.look.hotlist_names_level]] *weechat.look.hotlist_names_level* ** description: pass:none[level for displaying names in hotlist (combination of: 1=join/part, 2=message, 4=private, 8=highlight, for example: 12=private+highlight)] ** type: integer -** values: 1 .. 15 (default value: `+12+`) +** values: 1 .. 15 +** default value: `+12+` * [[option_weechat.look.hotlist_names_merged_buffers]] *weechat.look.hotlist_names_merged_buffers* ** description: pass:none[if set, force display of names in hotlist for merged buffers] ** type: boolean -** values: on, off (default value: `+off+`) +** values: on, off +** default value: `+off+` * [[option_weechat.look.hotlist_prefix]] *weechat.look.hotlist_prefix* ** description: pass:none[text displayed at the beginning of the hotlist] ** type: string -** values: any string (default value: `+"H: "+`) +** values: any string +** default value: `+"H: "+` * [[option_weechat.look.hotlist_remove]] *weechat.look.hotlist_remove* ** description: pass:none[remove buffers in hotlist: buffer = remove buffer by buffer, merged = remove all visible merged buffers at once] ** type: integer -** values: buffer, merged (default value: `+merged+`) +** values: buffer, merged +** default value: `+merged+` * [[option_weechat.look.hotlist_short_names]] *weechat.look.hotlist_short_names* ** description: pass:none[if set, uses short names to display buffer names in hotlist (start after first "." in name)] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_weechat.look.hotlist_sort]] *weechat.look.hotlist_sort* ** description: pass:none[sort of hotlist: group_time_*: group by notify level (highlights first) then sort by time, group_number_*: group by notify level (highlights first) then sort by number, number_*: sort by number; asc = ascending sort, desc = descending sort] ** type: integer -** values: group_time_asc, group_time_desc, group_number_asc, group_number_desc, number_asc, number_desc (default value: `+group_time_asc+`) +** values: group_time_asc, group_time_desc, group_number_asc, group_number_desc, number_asc, number_desc +** default value: `+group_time_asc+` * [[option_weechat.look.hotlist_suffix]] *weechat.look.hotlist_suffix* ** description: pass:none[text displayed at the end of the hotlist] ** type: string -** values: any string (default value: `+""+`) +** values: any string +** default value: `+""+` * [[option_weechat.look.hotlist_unique_numbers]] *weechat.look.hotlist_unique_numbers* ** description: pass:none[keep only unique numbers in hotlist (this applies only on hotlist items where name is NOT displayed after number)] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_weechat.look.input_cursor_scroll]] *weechat.look.input_cursor_scroll* ** description: pass:none[number of chars displayed after end of input line when scrolling to display end of line] ** type: integer -** values: 0 .. 100 (default value: `+20+`) +** values: 0 .. 100 +** default value: `+20+` * [[option_weechat.look.input_share]] *weechat.look.input_share* ** description: pass:none[share commands, text, or both in input for all buffers (there is still local history for each buffer)] ** type: integer -** values: none, commands, text, all (default value: `+none+`) +** values: none, commands, text, all +** default value: `+none+` * [[option_weechat.look.input_share_overwrite]] *weechat.look.input_share_overwrite* ** description: pass:none[if set and input is shared, always overwrite input in target buffer] ** type: boolean -** values: on, off (default value: `+off+`) +** values: on, off +** default value: `+off+` * [[option_weechat.look.input_undo_max]] *weechat.look.input_undo_max* ** description: pass:none[max number of "undo" for command line, by buffer (0 = undo disabled)] ** type: integer -** values: 0 .. 65535 (default value: `+32+`) +** values: 0 .. 65535 +** default value: `+32+` * [[option_weechat.look.item_away_message]] *weechat.look.item_away_message* ** description: pass:none[display server away message in away bar item] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_weechat.look.item_buffer_filter]] *weechat.look.item_buffer_filter* ** description: pass:none[string used to show that some lines are filtered in current buffer (bar item "buffer_filter")] ** type: string -** values: any string (default value: `+"*"+`) +** values: any string +** default value: `+"*"+` * [[option_weechat.look.item_buffer_zoom]] *weechat.look.item_buffer_zoom* ** description: pass:none[string used to show zoom on merged buffer (bar item "buffer_zoom")] ** type: string -** values: any string (default value: `+"!"+`) +** values: any string +** default value: `+"!"+` * [[option_weechat.look.item_mouse_status]] *weechat.look.item_mouse_status* ** description: pass:none[string used to show if mouse is enabled (bar item "mouse_status")] ** type: string -** values: any string (default value: `+"M"+`) +** values: any string +** default value: `+"M"+` * [[option_weechat.look.item_time_format]] *weechat.look.item_time_format* ** description: pass:none[time format for "time" bar item (see man strftime for date/time specifiers) (note: content is evaluated, so you can use colors with format "${color:xxx}", see /help eval)] ** type: string -** values: any string (default value: `+"%H:%M"+`) +** values: any string +** default value: `+"%H:%M"+` * [[option_weechat.look.jump_current_to_previous_buffer]] *weechat.look.jump_current_to_previous_buffer* ** description: pass:none[jump to previous buffer displayed when jumping to current buffer number with /buffer *N (where N is a buffer number), to easily switch to another buffer, then come back to current buffer] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_weechat.look.jump_previous_buffer_when_closing]] *weechat.look.jump_previous_buffer_when_closing* ** description: pass:none[jump to previously visited buffer when closing a buffer (if disabled, then jump to buffer number - 1)] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_weechat.look.jump_smart_back_to_buffer]] *weechat.look.jump_smart_back_to_buffer* ** description: pass:none[jump back to initial buffer after reaching end of hotlist] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_weechat.look.key_bind_safe]] *weechat.look.key_bind_safe* ** description: pass:none[allow only binding of "safe" keys (beginning with a ctrl or meta code)] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_weechat.look.key_grab_delay]] *weechat.look.key_grab_delay* ** description: pass:none[default delay (in milliseconds) to grab a key (using default key alt-k); this delay can be overridden in the /input command (see /help input)] ** type: integer -** values: 1 .. 10000 (default value: `+800+`) +** values: 1 .. 10000 +** default value: `+800+` * [[option_weechat.look.mouse]] *weechat.look.mouse* ** description: pass:none[enable mouse support] ** type: boolean -** values: on, off (default value: `+off+`) +** values: on, off +** default value: `+off+` * [[option_weechat.look.mouse_timer_delay]] *weechat.look.mouse_timer_delay* ** description: pass:none[delay (in milliseconds) to grab a mouse event: WeeChat will wait this delay before processing event] ** type: integer -** values: 1 .. 10000 (default value: `+100+`) +** values: 1 .. 10000 +** default value: `+100+` * [[option_weechat.look.nick_color_force]] *weechat.look.nick_color_force* ** description: pass:none[force color for some nicks: hash computed with nickname to find color will not be used for these nicks (format is: "nick1:color1;nick2:color2"); look up for nicks is with exact case then lower case, so it's possible to use only lower case for nicks in this option] ** type: string -** values: any string (default value: `+""+`) +** values: any string +** default value: `+""+` * [[option_weechat.look.nick_color_hash]] *weechat.look.nick_color_hash* ** description: pass:none[hash algorithm used to find the color for a nick: djb2 = variant of djb2 (position of letters matters: anagrams of a nick have different color), sum = sum of letters] ** type: integer -** values: djb2, sum (default value: `+djb2+`) +** values: djb2, sum +** default value: `+djb2+` * [[option_weechat.look.nick_color_stop_chars]] *weechat.look.nick_color_stop_chars* ** description: pass:none[chars used to stop in nick when computing color with letters of nick (at least one char outside this list must be in string before stopping) (example: nick "|nick|away" with "|" in chars will return color of nick "|nick")] ** type: string -** values: any string (default value: `+"_|["+`) +** values: any string +** default value: `+"_|["+` * [[option_weechat.look.nick_prefix]] *weechat.look.nick_prefix* ** description: pass:none[text to display before nick in prefix of message, example: "<"] ** type: string -** values: any string (default value: `+""+`) +** values: any string +** default value: `+""+` * [[option_weechat.look.nick_suffix]] *weechat.look.nick_suffix* ** description: pass:none[text to display after nick in prefix of message, example: ">"] ** type: string -** values: any string (default value: `+""+`) +** values: any string +** default value: `+""+` * [[option_weechat.look.paste_auto_add_newline]] *weechat.look.paste_auto_add_newline* ** description: pass:none[automatically add a newline at the end of pasted text if there are at least two lines and if a confirmation is asked] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_weechat.look.paste_bracketed]] *weechat.look.paste_bracketed* ** description: pass:none[enable terminal "bracketed paste mode" (not supported in all terminals/multiplexers): in this mode, pasted text is bracketed with control sequences so that WeeChat can differentiate pasted text from typed-in text ("ESC[200~", followed by the pasted text, followed by "ESC[201~")] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_weechat.look.paste_bracketed_timer_delay]] *weechat.look.paste_bracketed_timer_delay* ** description: pass:none[force end of bracketed paste after this delay (in seconds) if the control sequence for end of bracketed paste ("ESC[201~") was not received in time] ** type: integer -** values: 1 .. 60 (default value: `+10+`) +** values: 1 .. 60 +** default value: `+10+` * [[option_weechat.look.paste_max_lines]] *weechat.look.paste_max_lines* ** description: pass:none[max number of lines for paste without asking user (-1 = disable this feature)] ** type: integer -** values: -1 .. 2147483647 (default value: `+1+`) +** values: -1 .. 2147483647 +** default value: `+1+` * [[option_weechat.look.prefix_action]] *weechat.look.prefix_action* ** description: pass:none[prefix for action messages (note: content is evaluated, so you can use colors with format "${color:xxx}", see /help eval)] ** type: string -** values: any string (default value: `+" *"+`) +** values: any string +** default value: `+" *"+` * [[option_weechat.look.prefix_align]] *weechat.look.prefix_align* ** description: pass:none[prefix alignment (none, left, right (default))] ** type: integer -** values: none, left, right (default value: `+right+`) +** values: none, left, right +** default value: `+right+` * [[option_weechat.look.prefix_align_max]] *weechat.look.prefix_align_max* ** description: pass:none[max size for prefix (0 = no max size)] ** type: integer -** values: 0 .. 128 (default value: `+0+`) +** values: 0 .. 128 +** default value: `+0+` * [[option_weechat.look.prefix_align_min]] *weechat.look.prefix_align_min* ** description: pass:none[min size for prefix] ** type: integer -** values: 0 .. 128 (default value: `+0+`) +** values: 0 .. 128 +** default value: `+0+` * [[option_weechat.look.prefix_align_more]] *weechat.look.prefix_align_more* ** description: pass:none[char to display if prefix is truncated (must be exactly one char on screen)] ** type: string -** values: any string (default value: `+"+"+`) +** values: any string +** default value: `+"+"+` * [[option_weechat.look.prefix_align_more_after]] *weechat.look.prefix_align_more_after* ** description: pass:none[display the truncature char (by default "+") after the text (by replacing the space that should be displayed here); if disabled, the truncature char replaces last char of text] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_weechat.look.prefix_buffer_align]] *weechat.look.prefix_buffer_align* ** description: pass:none[prefix alignment for buffer name, when many buffers are merged with same number (none, left, right (default))] ** type: integer -** values: none, left, right (default value: `+right+`) +** values: none, left, right +** default value: `+right+` * [[option_weechat.look.prefix_buffer_align_max]] *weechat.look.prefix_buffer_align_max* ** description: pass:none[max size for buffer name, when many buffers are merged with same number (0 = no max size)] ** type: integer -** values: 0 .. 128 (default value: `+0+`) +** values: 0 .. 128 +** default value: `+0+` * [[option_weechat.look.prefix_buffer_align_more]] *weechat.look.prefix_buffer_align_more* ** description: pass:none[char to display if buffer name is truncated (when many buffers are merged with same number) (must be exactly one char on screen)] ** type: string -** values: any string (default value: `+"+"+`) +** values: any string +** default value: `+"+"+` * [[option_weechat.look.prefix_buffer_align_more_after]] *weechat.look.prefix_buffer_align_more_after* ** description: pass:none[display the truncature char (by default "+") after the text (by replacing the space that should be displayed here); if disabled, the truncature char replaces last char of text] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_weechat.look.prefix_error]] *weechat.look.prefix_error* ** description: pass:none[prefix for error messages (note: content is evaluated, so you can use colors with format "${color:xxx}", see /help eval)] ** type: string -** values: any string (default value: `+"=!="+`) +** values: any string +** default value: `+"=!="+` * [[option_weechat.look.prefix_join]] *weechat.look.prefix_join* ** description: pass:none[prefix for join messages (note: content is evaluated, so you can use colors with format "${color:xxx}", see /help eval)] ** type: string -** values: any string (default value: `+"-->"+`) +** values: any string +** default value: `+"-->"+` * [[option_weechat.look.prefix_network]] *weechat.look.prefix_network* ** description: pass:none[prefix for network messages (note: content is evaluated, so you can use colors with format "${color:xxx}", see /help eval)] ** type: string -** values: any string (default value: `+"--"+`) +** values: any string +** default value: `+"--"+` * [[option_weechat.look.prefix_quit]] *weechat.look.prefix_quit* ** description: pass:none[prefix for quit messages (note: content is evaluated, so you can use colors with format "${color:xxx}", see /help eval)] ** type: string -** values: any string (default value: `+"<--"+`) +** values: any string +** default value: `+"<--"+` * [[option_weechat.look.prefix_same_nick]] *weechat.look.prefix_same_nick* ** description: pass:none[prefix displayed for a message with same nick as previous message: use a space " " to hide prefix, another string to display this string instead of prefix, or an empty string to disable feature (display prefix)] ** type: string -** values: any string (default value: `+""+`) +** values: any string +** default value: `+""+` * [[option_weechat.look.prefix_suffix]] *weechat.look.prefix_suffix* ** description: pass:none[string displayed after prefix] ** type: string -** values: any string (default value: `+"|"+`) +** values: any string +** default value: `+"|"+` * [[option_weechat.look.quote_nick_prefix]] *weechat.look.quote_nick_prefix* ** description: pass:none[text to display before nick when quoting a message (see /help cursor)] ** type: string -** values: any string (default value: `+"<"+`) +** values: any string +** default value: `+"<"+` * [[option_weechat.look.quote_nick_suffix]] *weechat.look.quote_nick_suffix* ** description: pass:none[text to display after nick when quoting a message (see /help cursor)] ** type: string -** values: any string (default value: `+">"+`) +** values: any string +** default value: `+">"+` * [[option_weechat.look.quote_time_format]] *weechat.look.quote_time_format* ** description: pass:none[time format when quoting a message (see /help cursor)] ** type: string -** values: any string (default value: `+"%H:%M:%S"+`) +** values: any string +** default value: `+"%H:%M:%S"+` * [[option_weechat.look.read_marker]] *weechat.look.read_marker* ** description: pass:none[use a marker (line or char) on buffers to show first unread line] ** type: integer -** values: none, line, char (default value: `+line+`) +** values: none, line, char +** default value: `+line+` * [[option_weechat.look.read_marker_always_show]] *weechat.look.read_marker_always_show* ** description: pass:none[always show read marker, even if it is after last buffer line] ** type: boolean -** values: on, off (default value: `+off+`) +** values: on, off +** default value: `+off+` * [[option_weechat.look.read_marker_string]] *weechat.look.read_marker_string* ** description: pass:none[string used to draw read marker line (string is repeated until end of line)] ** type: string -** values: any string (default value: `+"- "+`) +** values: any string +** default value: `+"- "+` * [[option_weechat.look.save_config_on_exit]] *weechat.look.save_config_on_exit* ** description: pass:none[save configuration file on exit] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_weechat.look.save_layout_on_exit]] *weechat.look.save_layout_on_exit* ** description: pass:none[save layout on exit (buffers, windows, or both)] ** type: integer -** values: none, buffers, windows, all (default value: `+none+`) +** values: none, buffers, windows, all +** default value: `+none+` * [[option_weechat.look.scroll_amount]] *weechat.look.scroll_amount* ** description: pass:none[how many lines to scroll by with scroll_up and scroll_down] ** type: integer -** values: 1 .. 2147483647 (default value: `+3+`) +** values: 1 .. 2147483647 +** default value: `+3+` * [[option_weechat.look.scroll_bottom_after_switch]] *weechat.look.scroll_bottom_after_switch* ** description: pass:none[scroll to bottom of window after switch to another buffer (do not remember scroll position in windows); the scroll is done only for buffers with formatted content (not free content)] ** type: boolean -** values: on, off (default value: `+off+`) +** values: on, off +** default value: `+off+` * [[option_weechat.look.scroll_page_percent]] *weechat.look.scroll_page_percent* ** description: pass:none[percent of screen to scroll when scrolling one page up or down (for example 100 means one page, 50 half-page)] ** type: integer -** values: 1 .. 100 (default value: `+100+`) +** values: 1 .. 100 +** default value: `+100+` * [[option_weechat.look.search_text_not_found_alert]] *weechat.look.search_text_not_found_alert* ** description: pass:none[alert user when text sought is not found in buffer] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_weechat.look.separator_horizontal]] *weechat.look.separator_horizontal* ** description: pass:none[char used to draw horizontal separators around bars and windows (empty value will draw a real line with ncurses, but may cause bugs with URL selection under some terminals); width on screen must be exactly one char] ** type: string -** values: any string (default value: `+"-"+`) +** values: any string +** default value: `+"-"+` * [[option_weechat.look.separator_vertical]] *weechat.look.separator_vertical* ** description: pass:none[char used to draw vertical separators around bars and windows (empty value will draw a real line with ncurses); width on screen must be exactly one char] ** type: string -** values: any string (default value: `+""+`) +** values: any string +** default value: `+""+` * [[option_weechat.look.tab_width]] *weechat.look.tab_width* ** description: pass:none[number of spaces used to display tabs in messages] ** type: integer -** values: 1 .. 64 (default value: `+1+`) +** values: 1 .. 64 +** default value: `+1+` * [[option_weechat.look.time_format]] *weechat.look.time_format* ** description: pass:none[time format for dates converted to strings and displayed in messages (see man strftime for date/time specifiers)] ** type: string -** values: any string (default value: `+"%a, %d %b %Y %T"+`) +** values: any string +** default value: `+"%a, %d %b %Y %T"+` * [[option_weechat.look.window_auto_zoom]] *weechat.look.window_auto_zoom* ** description: pass:none[automatically zoom on current window if the terminal becomes too small to display all windows (use alt-z to unzoom windows when the terminal is big enough)] ** type: boolean -** values: on, off (default value: `+off+`) +** values: on, off +** default value: `+off+` * [[option_weechat.look.window_separator_horizontal]] *weechat.look.window_separator_horizontal* ** description: pass:none[display an horizontal separator between windows] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_weechat.look.window_separator_vertical]] *weechat.look.window_separator_vertical* ** description: pass:none[display a vertical separator between windows] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_weechat.look.window_title]] *weechat.look.window_title* ** description: pass:none[title for window (terminal for Curses GUI), set on startup; an empty string will keep title unchanged (note: content is evaluated, see /help eval)] ** type: string -** values: any string (default value: `+"WeeChat ${info:version}"+`) +** values: any string +** default value: `+"WeeChat ${info:version}"+` * [[option_weechat.look.word_chars_highlight]] *weechat.look.word_chars_highlight* ** description: pass:none[comma-separated list of chars (or range of chars) that are considered part or words for highlights; each item can be a single char, a range of chars (format: a-z), a class of wide character (for example "alnum", see man wctype); a "!" before the item makes it negative (ie the char is NOT considered part of words); the value "*" matches any char; unicode chars are allowed with the format \u1234, for example \u00A0 for unbreakable space (see /help print for supported formats)] ** type: string -** values: any string (default value: `+"!\u00A0,-,_,|,alnum"+`) +** values: any string +** default value: `+"!\u00A0,-,_,|,alnum"+` * [[option_weechat.look.word_chars_input]] *weechat.look.word_chars_input* ** description: pass:none[comma-separated list of chars (or range of chars) that are considered part or words for command line; each item can be a single char, a range of chars (format: a-z), a class of wide character (for example "alnum", see man wctype); a "!" before the item makes it negative (ie the char is NOT considered part of words); the value "*" matches any char; unicode chars are allowed with the format \u1234, for example \u00A0 for unbreakable space (see /help print for supported formats)] ** type: string -** values: any string (default value: `+"!\u00A0,-,_,|,alnum"+`) +** values: any string +** default value: `+"!\u00A0,-,_,|,alnum"+` * [[option_weechat.network.connection_timeout]] *weechat.network.connection_timeout* ** description: pass:none[timeout (in seconds) for connection to a remote host (made in a child process)] ** type: integer -** values: 1 .. 2147483647 (default value: `+60+`) +** values: 1 .. 2147483647 +** default value: `+60+` * [[option_weechat.network.gnutls_ca_file]] *weechat.network.gnutls_ca_file* ** description: pass:none[file containing the certificate authorities ("%h" will be replaced by WeeChat home, "~/.weechat" by default)] ** type: string -** values: any string (default value: `+"/etc/ssl/certs/ca-certificates.crt"+`) +** values: any string +** default value: `+"/etc/ssl/certs/ca-certificates.crt"+` * [[option_weechat.network.gnutls_handshake_timeout]] *weechat.network.gnutls_handshake_timeout* ** description: pass:none[timeout (in seconds) for gnutls handshake] ** type: integer -** values: 1 .. 2147483647 (default value: `+30+`) +** values: 1 .. 2147483647 +** default value: `+30+` * [[option_weechat.network.proxy_curl]] *weechat.network.proxy_curl* ** description: pass:none[name of proxy used for download of URLs with Curl (used to download list of scripts and in scripts calling function hook_process); the proxy must be defined with command /proxy] ** type: string -** values: any string (default value: `+""+`) +** values: any string +** default value: `+""+` * [[option_weechat.plugin.autoload]] *weechat.plugin.autoload* ** description: pass:none[comma separated list of plugins to load automatically at startup, "*" means all plugins found, a name beginning with "!" is a negative value to prevent a plugin from being loaded, wildcard "*" is allowed in names (examples: "*" or "*,!lua,!tcl")] ** type: string -** values: any string (default value: `+"*"+`) +** values: any string +** default value: `+"*"+` * [[option_weechat.plugin.debug]] *weechat.plugin.debug* ** description: pass:none[enable debug messages by default in all plugins (option disabled by default, which is highly recommended)] ** type: boolean -** values: on, off (default value: `+off+`) +** values: on, off +** default value: `+off+` * [[option_weechat.plugin.extension]] *weechat.plugin.extension* ** description: pass:none[comma separated list of file name extensions for plugins] ** type: string -** values: any string (default value: `+".so,.dll"+`) +** values: any string +** default value: `+".so,.dll"+` * [[option_weechat.plugin.path]] *weechat.plugin.path* ** description: pass:none[path for searching plugins ("%h" will be replaced by WeeChat home, "~/.weechat" by default)] ** type: string -** values: any string (default value: `+"%h/plugins"+`) +** values: any string +** default value: `+"%h/plugins"+` * [[option_weechat.plugin.save_config_on_unload]] *weechat.plugin.save_config_on_unload* ** description: pass:none[save configuration files when unloading plugins] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_weechat.startup.command_after_plugins]] *weechat.startup.command_after_plugins* ** description: pass:none[command executed when WeeChat starts, after loading plugins (note: content is evaluated, see /help eval)] ** type: string -** values: any string (default value: `+""+`) +** values: any string +** default value: `+""+` * [[option_weechat.startup.command_before_plugins]] *weechat.startup.command_before_plugins* ** description: pass:none[command executed when WeeChat starts, before loading plugins (note: content is evaluated, see /help eval)] ** type: string -** values: any string (default value: `+""+`) +** values: any string +** default value: `+""+` * [[option_weechat.startup.display_logo]] *weechat.startup.display_logo* ** description: pass:none[display WeeChat logo at startup] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_weechat.startup.display_version]] *weechat.startup.display_version* ** description: pass:none[display WeeChat version at startup] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_weechat.startup.sys_rlimit]] *weechat.startup.sys_rlimit* ** description: pass:none[set resource limits for WeeChat process, format is: "res1:limit1,res2:limit2"; resource name is the end of constant (RLIMIT_XXX) in lower case (see man setrlimit for values); limit -1 means "unlimited"; example: set unlimited size for core file and max 1GB of virtual memory: "core:-1,as:1000000000"] ** type: string -** values: any string (default value: `+""+`) +** values: any string +** default value: `+""+` diff --git a/doc/en/autogen/user/xfer_options.adoc b/doc/en/autogen/user/xfer_options.adoc index 7b5701c22..de088dfe5 100644 --- a/doc/en/autogen/user/xfer_options.adoc +++ b/doc/en/autogen/user/xfer_options.adoc @@ -5,139 +5,167 @@ * [[option_xfer.color.status_aborted]] *xfer.color.status_aborted* ** description: pass:none[text color for "aborted" status] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+lightred+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+lightred+` * [[option_xfer.color.status_active]] *xfer.color.status_active* ** description: pass:none[text color for "active" status] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+lightblue+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+lightblue+` * [[option_xfer.color.status_connecting]] *xfer.color.status_connecting* ** description: pass:none[text color for "connecting" status] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+yellow+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+yellow+` * [[option_xfer.color.status_done]] *xfer.color.status_done* ** description: pass:none[text color for "done" status] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+lightgreen+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+lightgreen+` * [[option_xfer.color.status_failed]] *xfer.color.status_failed* ** description: pass:none[text color for "failed" status] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+lightred+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+lightred+` * [[option_xfer.color.status_waiting]] *xfer.color.status_waiting* ** description: pass:none[text color for "waiting" status] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+lightcyan+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+lightcyan+` * [[option_xfer.color.text]] *xfer.color.text* ** description: pass:none[text color in xfer buffer] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+default+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+default+` * [[option_xfer.color.text_bg]] *xfer.color.text_bg* ** description: pass:none[background color in xfer buffer] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+default+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+default+` * [[option_xfer.color.text_selected]] *xfer.color.text_selected* ** description: pass:none[text color of selected line in xfer buffer] ** type: color -** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `+white+`) +** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline +** default value: `+white+` * [[option_xfer.file.auto_accept_chats]] *xfer.file.auto_accept_chats* ** description: pass:none[automatically accept chat requests (use carefully!)] ** type: boolean -** values: on, off (default value: `+off+`) +** values: on, off +** default value: `+off+` * [[option_xfer.file.auto_accept_files]] *xfer.file.auto_accept_files* ** description: pass:none[automatically accept incoming files (use carefully!)] ** type: boolean -** values: on, off (default value: `+off+`) +** values: on, off +** default value: `+off+` * [[option_xfer.file.auto_accept_nicks]] *xfer.file.auto_accept_nicks* ** description: pass:none[comma-separated list of nicks for which the incoming files and chats are automatically accepted; format is "server.nick" (for a specific server) or "nick" (for all servers); example: "freenode.FlashCode,andrew"] ** type: string -** values: any string (default value: `+""+`) +** values: any string +** default value: `+""+` * [[option_xfer.file.auto_check_crc32]] *xfer.file.auto_check_crc32* ** description: pass:none[automatically check CRC32 file checksum if it is found in the filename (8 hexadecimal chars)] ** type: boolean -** values: on, off (default value: `+off+`) +** values: on, off +** default value: `+off+` * [[option_xfer.file.auto_rename]] *xfer.file.auto_rename* ** description: pass:none[rename incoming files if already exists (add ".1", ".2", ...)] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_xfer.file.auto_resume]] *xfer.file.auto_resume* ** description: pass:none[automatically resume file transfer if connection with remote host is lost] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_xfer.file.convert_spaces]] *xfer.file.convert_spaces* ** description: pass:none[convert spaces to underscores when sending and receiving files] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_xfer.file.download_path]] *xfer.file.download_path* ** description: pass:none[path for writing incoming files: "%h" at beginning of string is replaced by WeeChat home ("~/.weechat" by default) (note: content is evaluated, see /help eval)] ** type: string -** values: any string (default value: `+"%h/xfer"+`) +** values: any string +** default value: `+"%h/xfer"+` * [[option_xfer.file.upload_path]] *xfer.file.upload_path* ** description: pass:none[path for reading files when sending (when no path is specified by user): "%h" at beginning of string is replaced by WeeChat home ("~/.weechat" by default) (note: content is evaluated, see /help eval)] ** type: string -** values: any string (default value: `+"~"+`) +** values: any string +** default value: `+"~"+` * [[option_xfer.file.use_nick_in_filename]] *xfer.file.use_nick_in_filename* ** description: pass:none[use remote nick as prefix in local filename when receiving a file] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_xfer.look.auto_open_buffer]] *xfer.look.auto_open_buffer* ** description: pass:none[auto open xfer buffer when a new xfer is added to list] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_xfer.look.progress_bar_size]] *xfer.look.progress_bar_size* ** description: pass:none[size of progress bar, in chars (if 0, progress bar is disabled)] ** type: integer -** values: 0 .. 256 (default value: `+20+`) +** values: 0 .. 256 +** default value: `+20+` * [[option_xfer.look.pv_tags]] *xfer.look.pv_tags* ** description: pass:none[comma separated list of tags used in private messages, for example: "notify_message", "notify_private" or "notify_highlight"] ** type: string -** values: any string (default value: `+"notify_private"+`) +** values: any string +** default value: `+"notify_private"+` * [[option_xfer.network.blocksize]] *xfer.network.blocksize* ** description: pass:none[block size for sending packets, in bytes] ** type: integer -** values: 1024 .. 102400 (default value: `+65536+`) +** values: 1024 .. 102400 +** default value: `+65536+` * [[option_xfer.network.fast_send]] *xfer.network.fast_send* ** description: pass:none[does not wait for ACK when sending file] ** type: boolean -** values: on, off (default value: `+on+`) +** values: on, off +** default value: `+on+` * [[option_xfer.network.own_ip]] *xfer.network.own_ip* ** description: pass:none[IP or DNS address used for sending files/chats (if empty, local interface IP is used)] ** type: string -** values: any string (default value: `+""+`) +** values: any string +** default value: `+""+` * [[option_xfer.network.port_range]] *xfer.network.port_range* ** description: pass:none[restricts outgoing files/chats to use only ports in the given range (useful for NAT) (syntax: a single port, ie. 5000 or a port range, ie. 5000-5015, empty value means any port, it's recommended to use ports greater than 1024, because only root can use ports below 1024)] ** type: string -** values: any string (default value: `+""+`) +** values: any string +** default value: `+""+` * [[option_xfer.network.speed_limit]] *xfer.network.speed_limit* ** description: pass:none[speed limit for sending files, in kilo-bytes by second (0 means no limit)] ** type: integer -** values: 0 .. 2147483647 (default value: `+0+`) +** values: 0 .. 2147483647 +** default value: `+0+` * [[option_xfer.network.timeout]] *xfer.network.timeout* ** description: pass:none[timeout for xfer request (in seconds)] ** type: integer -** values: 5 .. 2147483647 (default value: `+300+`) +** values: 5 .. 2147483647 +** default value: `+300+` |