diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2011-04-11 13:57:00 +0200 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2011-04-11 13:57:00 +0200 |
commit | 9d128cad2279ff070d8204e1d3d7003f379c58da (patch) | |
tree | f75686cf81ed32debf23d13809dd90c7f0b0cb4d /doc/en | |
parent | 8597f14bf6efe06000070c0e90fe729c843e8d7c (diff) | |
download | weechat-9d128cad2279ff070d8204e1d3d7003f379c58da.zip |
core: add messages counts in hotlist for each buffer, option weechat.look.hotlist_buffer_separator and tag "notify_none"
New options:
- weechat.look.hotlist_buffer_separator
- weechat.look.hotlist_count_max
- weechat.look.hotlist_count_min_msg
- weechat.color.status_count_msg
- weechat.color.status_count_private
- weechat.color.status_count_highlight
- weechat.color.status_count_other
Diffstat (limited to 'doc/en')
-rw-r--r-- | doc/en/autogen/user/weechat_commands.txt | 2 | ||||
-rw-r--r-- | doc/en/autogen/user/weechat_options.txt | 37 | ||||
-rw-r--r-- | doc/en/weechat_user.en.txt | 30 |
3 files changed, 52 insertions, 17 deletions
diff --git a/doc/en/autogen/user/weechat_commands.txt b/doc/en/autogen/user/weechat_commands.txt index 4545869f1..aa9941d37 100644 --- a/doc/en/autogen/user/weechat_commands.txt +++ b/doc/en/autogen/user/weechat_commands.txt @@ -189,7 +189,7 @@ The default key alt+'=' toggles filtering on/off. Tags most commonly used: no_filter, no_highlight, no_log, log0..log9 (log level), - notify_message, notify_private, notify_highlight, + notify_none, notify_message, notify_private, notify_highlight, nick_xxx (xxx is nick in message), irc_xxx (xxx is command name or number, see /server raw), irc_numeric, irc_error, irc_action, irc_ctcp, irc_ctcp_reply, irc_smart_filter, away_info. diff --git a/doc/en/autogen/user/weechat_options.txt b/doc/en/autogen/user/weechat_options.txt index 225b6b937..a55a2f81d 100644 --- a/doc/en/autogen/user/weechat_options.txt +++ b/doc/en/autogen/user/weechat_options.txt @@ -149,7 +149,7 @@ ** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)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: `lightgreen`) * *weechat.color.input_text_not_found* -** description: `text color for unsucessful text search in input line` +** description: `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 underline (default value: `red`) @@ -173,6 +173,26 @@ ** 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: `blue`) +* *weechat.color.status_count_highlight* +** description: `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 underline (default value: `magenta`) + +* *weechat.color.status_count_msg* +** description: `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 underline (default value: `brown`) + +* *weechat.color.status_count_other* +** description: `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 underline (default value: `default`) + +* *weechat.color.status_count_private* +** description: `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 underline (default value: `green`) + * *weechat.color.status_data_highlight* ** description: `text color for buffer with highlight (status bar)` ** type: color @@ -353,6 +373,21 @@ ** type: string ** values: any string (default value: `"-"`) +* *weechat.look.hotlist_buffer_separator* +** description: `string displayed between buffers in hotlist` +** type: string +** values: any string (default value: `", "`) + +* *weechat.look.hotlist_count_max* +** description: `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`) + +* *weechat.look.hotlist_count_min_msg* +** description: `display messages count if number of messages is greater or equal to this value` +** type: integer +** values: 1 .. 100 (default value: `2`) + * *weechat.look.hotlist_names_count* ** description: `max number of names in hotlist (0 = no name displayed, only buffer numbers)` ** type: integer diff --git a/doc/en/weechat_user.en.txt b/doc/en/weechat_user.en.txt index a4990dfcb..e914f01c4 100644 --- a/doc/en/weechat_user.en.txt +++ b/doc/en/weechat_user.en.txt @@ -354,7 +354,7 @@ Example of terminal with WeeChat: │ │ │ │ │ │ │ │ │ -│[12:55] [4] [irc/freenode] 3:#test(+n){5}* [Act: 4,2] │ +│[12:55] [6] [irc/freenode] 3:#test(+n){5}* [Act: 4:#abc(2,5), 6] │ │[flashy] hi joe!█ │ └─────────────────────────────────────────────────────────────────────────────────────────┘ ........................................ @@ -375,18 +375,18 @@ Bar 'status' has following default items: [width="100%",cols="^3,^3l,10",options="header"] |======================================== -| Item | Example | Description -| time | [12:55] | time -| buffer_count | [4] | number of opened buffers -| buffer_plugin | [irc/freenode] | plugin of current buffer (irc plugin can add IRC server name used by buffer) -| buffer_number | 3 | current buffer number -| buffer_name | #test(+n) | current buffer name -| buffer_nicklist_count | {5} | number of nicks in nicklist -| buffer_filter | * | filtering indicator: `*` means some lines are filtered (hidden), empty value means all lines are displayed -| lag | [Lag: 2.5] | lag indicator, in seconds (hidden if lag is low) -| hotlist | [Act: 4,2] | list of buffers with activity (unread messages) -| completion | abc(2) def(5) | list of words for completion, with number of possible completions for each word -| scroll | -MORE(50)- | scroll indicator, with number of lines below last line displayed +| Item | Example | Description +| time | [12:55] | time +| buffer_count | [6] | number of opened buffers +| buffer_plugin | [irc/freenode] | plugin of current buffer (irc plugin can add IRC server name used by buffer) +| buffer_number | 3 | current buffer number +| buffer_name | #test(+n) | current buffer name (with channel modes for irc channels) +| buffer_nicklist_count | {5} | number of nicks in nicklist +| buffer_filter | * | filtering indicator: `*` means some lines are filtered (hidden), empty value means all lines are displayed +| lag | [Lag: 2.5] | lag indicator, in seconds (hidden if lag is low) +| hotlist | [Act: 4:#abc(2,5), 6] | list of buffers with activity (unread messages) (in example, 2 highlights and 5 unread messages on '#abc', one unread message on buffer #6) +| completion | abc(2) def(5) | list of words for completion, with number of possible completions for each word +| scroll | -MORE(50)- | scroll indicator, with number of lines below last line displayed |======================================== Bar 'input' has following default items: @@ -395,10 +395,10 @@ Bar 'input' has following default items: |======================================== | Item | Example | Description | input_paste | [Paste 7 lines ? [ctrl-Y] Yes [ctrl-N] No] | question to user for pasting lines -| input_prompt | [nick] | input prompt (nick for irc plugin) +| input_prompt | [flashy] | input prompt (nick for irc plugin) | away | (away) | away indicator | input_search | [Text search] | text search indicator -| input_text | bla bla... | input text +| input_text | hi joe! | input text |======================================== [[key_bindings]] |