diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2011-09-22 11:09:16 +0200 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2011-09-22 11:09:16 +0200 |
commit | 25e1e6e23d9584df24f052151611161c34cda09e (patch) | |
tree | be4534e1b8f92807c158abcdc57ec212cb582ad4 /doc/en/autogen | |
parent | 3146a6c65c777a104646a576b6e6c84ecd6bc340 (diff) | |
download | weechat-25e1e6e23d9584df24f052151611161c34cda09e.zip |
core: add colors for inactive windows and lines (in merged buffers)
New boolean options to control use of inactive colors:
- weechat.look.color_inactive_message
- weechat.look.color_inactive_prefix
- weechat.look.color_inactive_prefix_buffer
- weechat.look.color_inactive_time
New "inactive" color options:
- weechat.color.chat_inactive_line
- weechat.color.chat_inactive_window
- weechat.color.chat_prefix_buffer_inactive_line
Diffstat (limited to 'doc/en/autogen')
-rw-r--r-- | doc/en/autogen/user/weechat_options.txt | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/doc/en/autogen/user/weechat_options.txt b/doc/en/autogen/user/weechat_options.txt index efb8c75d2..6379231d5 100644 --- a/doc/en/autogen/user/weechat_options.txt +++ b/doc/en/autogen/user/weechat_options.txt @@ -43,6 +43,16 @@ ** 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 underline (default value: `cyan`) +* *weechat.color.chat_inactive_line* +** description: `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 underline (default value: `darkgray`) + +* *weechat.color.chat_inactive_window* +** description: `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 underline (default value: `darkgray`) + * *weechat.color.chat_nick* ** description: `text color for nicks in chat window` ** type: color @@ -73,6 +83,11 @@ ** 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 underline (default value: `brown`) +* *weechat.color.chat_prefix_buffer_inactive_line* +** description: `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 underline (default value: `darkgray`) + * *weechat.color.chat_prefix_error* ** description: `text color for error prefix` ** type: color @@ -353,6 +368,26 @@ ** type: string ** values: any string (default value: `"%H:%M:%S"`) +* *weechat.look.color_inactive_message* +** description: `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`) + +* *weechat.look.color_inactive_prefix* +** description: `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`) + +* *weechat.look.color_inactive_prefix_buffer* +** description: `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`) + +* *weechat.look.color_inactive_time* +** description: `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`) + * *weechat.look.color_pairs_auto_reset* ** description: `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 |