1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-03 16:23:14 +02:00

fset: add options for colors in buffer's title

New options:
- fset.color.title_count_options
- fset.color.title_current_option
- fset.color.title_filter
- fset.color.title_marked_options
- fset.color.title_sort
This commit is contained in:
Sébastien Helleu
2017-06-05 21:13:09 +02:00
parent 476f6ae7bb
commit 690ef1e309
4 changed files with 90 additions and 12 deletions
+22 -12
View File
@@ -54,15 +54,17 @@ fset_buffer_set_title ()
if (fset_option_count_marked > 0)
{
snprintf (str_marked, sizeof (str_marked),
" (*: %d)",
fset_option_count_marked);
" (*: %s%d%s)",
weechat_color (weechat_config_string (fset_config_color_title_marked_options)),
fset_option_count_marked,
weechat_color ("bar_fg"));
}
num_options = weechat_arraylist_size (fset_options);
snprintf (str_title, sizeof (str_title),
_("Filter: %s | %d/%d%s | "
"Sort: %s | "
_("Filter: %s%s%s | %s%d%s/%s%d%s%s | "
"Sort: %s%s%s | "
"Key(input): "
"alt+space=toggle boolean, "
"alt+'-'(-)=subtract 1, "
@@ -70,19 +72,27 @@ fset_buffer_set_title ()
"alt+f,alt+r(r)=reset, "
"alf+f,alt+u(u)=unset, "
"alt+enter(s)=set, "
"alt+f,alt+a(a)=append "
"alt+','=mark/unmark "
"shift+down=mark/move down "
"shift+up=mark/move up "
"($)=refresh "
"($$)=unmark/refresh "
"alt+v(v)=toggle help bar "
"alt+f,alt+a(a)=append, "
"alt+','=mark/unmark, "
"shift+down=mark and move down, "
"shift+up=mark and move up, "
"($)=refresh, "
"($$)=unmark/refresh, "
"alt+v(v)=toggle help bar, "
"(q)=close buffer"),
weechat_color (weechat_config_string (fset_config_color_title_filter)),
(fset_option_filter) ? fset_option_filter : "*",
weechat_color ("bar_fg"),
weechat_color (weechat_config_string (fset_config_color_title_current_option)),
(num_options > 0) ? fset_buffer_selected_line + 1 : 0,
weechat_color ("bar_fg"),
weechat_color (weechat_config_string (fset_config_color_title_count_options)),
num_options,
weechat_color ("bar_fg"),
str_marked,
weechat_config_string (fset_config_look_sort));
weechat_color (weechat_config_string (fset_config_color_title_sort)),
weechat_config_string (fset_config_look_sort),
weechat_color ("bar_fg"));
weechat_buffer_set (fset_buffer, "title", str_title);
}