diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2004-07-05 22:31:26 +0000 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2004-07-05 22:31:26 +0000 |
commit | 750a5cbc6d524c0ec2c28178e605756e603f6970 (patch) | |
tree | db1a40156fdfea2585da2c4d1b312154bdaaf94b /src/common/weeconfig.c | |
parent | 77fab4ae297371a6d992888a9864ac1bb75adab5 (diff) | |
download | weechat-750a5cbc6d524c0ec2c28178e605756e603f6970.zip |
Added "col_status_delimiters" config option
Diffstat (limited to 'src/common/weeconfig.c')
-rw-r--r-- | src/common/weeconfig.c | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/src/common/weeconfig.c b/src/common/weeconfig.c index 92ff21880..18703b4e5 100644 --- a/src/common/weeconfig.c +++ b/src/common/weeconfig.c @@ -172,6 +172,7 @@ int cfg_col_chat_dark; int cfg_col_chat_highlight; int cfg_col_chat_bg; int cfg_col_status; +int cfg_col_status_delimiters; int cfg_col_status_data_msg; int cfg_col_status_data_highlight; int cfg_col_status_data_other; @@ -255,18 +256,22 @@ t_config_option weechat_options_colors[] = N_("color for status bar"), OPTION_TYPE_COLOR, 0, 0, 0, "gray", NULL, &cfg_col_status, NULL, &config_change_color }, + { "col_status_delimiters", N_("color for status bar delimiters"), + N_("color for status bar delimiters"), + OPTION_TYPE_COLOR, 0, 0, 0, + "cyan", NULL, &cfg_col_status_delimiters, NULL, &config_change_color }, { "col_status_data_msg", N_("color for window with new messages"), N_("color for window with new messages (status bar)"), OPTION_TYPE_COLOR, 0, 0, 0, - "lightred", NULL, &cfg_col_status_data_msg, NULL, &config_change_color }, + "yellow", NULL, &cfg_col_status_data_msg, NULL, &config_change_color }, { "col_status_highlight", N_("color for window with highlight"), N_("color for window with highlight (status bar)"), OPTION_TYPE_COLOR, 0, 0, 0, - "yellow", NULL, &cfg_col_status_data_highlight, NULL, &config_change_color }, + "lightmagenta", NULL, &cfg_col_status_data_highlight, NULL, &config_change_color }, { "col_status_data_other", N_("color for window with new data (not messages)"), N_("color for window with new data (not messages) (status bar)"), OPTION_TYPE_COLOR, 0, 0, 0, - "lightmagenta", NULL, &cfg_col_status_data_other, NULL, &config_change_color }, + "gray", NULL, &cfg_col_status_data_other, NULL, &config_change_color }, { "col_status_more", N_("color for \"*MORE*\" text"), N_("color for window with new data (status bar)"), OPTION_TYPE_COLOR, 0, 0, 0, |