diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2005-02-15 20:03:35 +0000 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2005-02-15 20:03:35 +0000 |
commit | 84f84823c9e6889072cdc6b3d7c0dbf1fb3dc00f (patch) | |
tree | cea5ed15f4b0b69cda69d598db420254aa6f26d1 /src/common/weeconfig.c | |
parent | 0d21ca207d05ffa06f071677067b634f512c07a9 (diff) | |
download | weechat-84f84823c9e6889072cdc6b3d7c0dbf1fb3dc00f.zip |
Added support for UnrealIrcd ("~" for chan owner, "&" for chan admin)
Diffstat (limited to 'src/common/weeconfig.c')
-rw-r--r-- | src/common/weeconfig.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/common/weeconfig.c b/src/common/weeconfig.c index 04e678f40..a9d14c674 100644 --- a/src/common/weeconfig.c +++ b/src/common/weeconfig.c @@ -204,6 +204,8 @@ int cfg_col_input_nick; int cfg_col_input_bg; int cfg_col_nick; int cfg_col_nick_away; +int cfg_col_nick_chanowner; +int cfg_col_nick_chanadmin; int cfg_col_nick_op; int cfg_col_nick_halfop; int cfg_col_nick_voice; @@ -347,6 +349,14 @@ t_config_option weechat_options_colors[] = N_("color for away nicknames"), OPTION_TYPE_COLOR, 0, 0, 0, "cyan", NULL, &cfg_col_nick_away, NULL, &config_change_color }, + { "col_nick_chanowner", N_("color for chan owner symbol"), + N_("color for chan owner symbol (specific to unrealircd)"), + OPTION_TYPE_COLOR, 0, 0, 0, + "lightgreen", NULL, &cfg_col_nick_chanowner, NULL, &config_change_color }, + { "col_nick_chanadmin", N_("color for chan admin symbol"), + N_("color for chan admin symbol (specific to unrealircd)"), + OPTION_TYPE_COLOR, 0, 0, 0, + "lightgreen", NULL, &cfg_col_nick_chanadmin, NULL, &config_change_color }, { "col_nick_op", N_("color for operator symbol"), N_("color for operator symbol"), OPTION_TYPE_COLOR, 0, 0, 0, |