summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2008-03-15 09:48:13 +0100
committerSebastien Helleu <flashcode@flashtux.org>2008-03-15 09:48:13 +0100
commit13c6866c80521bbd7ed0874b0966c5bb71f80531 (patch)
tree9543001770923d888c79ecf6fc53b6387ef11400
parent68b586c22996ae05d25f0d08efe1a2e7143c588b (diff)
downloadweechat-13c6866c80521bbd7ed0874b0966c5bb71f80531.zip
New default settings for action/network prefixes, new default color for network prefix
-rw-r--r--src/core/wee-config.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/wee-config.c b/src/core/wee-config.c
index 5d8838dc3..7f8f288af 100644
--- a/src/core/wee-config.c
+++ b/src/core/wee-config.c
@@ -726,12 +726,12 @@ config_weechat_init ()
weechat_config_file, ptr_section,
"look_prefix_network", "string",
N_("prefix for network messages"),
- NULL, 0, 0, "-@-", &config_change_prefix, NULL);
+ NULL, 0, 0, "--", &config_change_prefix, NULL);
config_look_prefix[GUI_CHAT_PREFIX_ACTION] = config_file_new_option (
weechat_config_file, ptr_section,
"look_prefix_action", "string",
N_("prefix for action messages"),
- NULL, 0, 0, "-*-", &config_change_prefix, NULL);
+ NULL, 0, 0, "*", &config_change_prefix, NULL);
config_look_prefix[GUI_CHAT_PREFIX_JOIN] = config_file_new_option (
weechat_config_file, ptr_section,
"look_prefix_join", "string",
@@ -921,7 +921,7 @@ config_weechat_init ()
weechat_config_file, ptr_section,
"color_chat_prefix_network", "color",
N_("text color for network prefix"),
- NULL, GUI_COLOR_CHAT_PREFIX_NETWORK, 0, "lightmagenta", &config_change_color, NULL);
+ NULL, GUI_COLOR_CHAT_PREFIX_NETWORK, 0, "magenta", &config_change_color, NULL);
config_color_chat_prefix[GUI_CHAT_PREFIX_ACTION] = config_file_new_option (
weechat_config_file, ptr_section,
"color_chat_prefix_action", "color",