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

core: remove options trigger.color.trigger and trigger.color.trigger_disabled (issue #1820)

These options are used instead:

- weechat.color.chat_status_disabled
- weechat.color.chat_status_enabled
This commit is contained in:
Sébastien Helleu
2023-05-01 20:16:59 +02:00
parent b8f9b83500
commit 385b1d0133
19 changed files with 31 additions and 265 deletions
-12
View File
@@ -780,18 +780,6 @@ trigger_config_init ()
N_("text color for replacement text (for regular expressions)"),
NULL, 0, 0, "cyan", NULL, 0,
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
trigger_config_color_trigger = weechat_config_new_option (
trigger_config_file, trigger_config_section_color,
"trigger", "color",
N_("text color for trigger name"),
NULL, 0, 0, "green", NULL, 0,
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
trigger_config_color_trigger_disabled = weechat_config_new_option (
trigger_config_file, trigger_config_section_color,
"trigger_disabled", "color",
N_("text color for disabled trigger name"),
NULL, 0, 0, "red", NULL, 0,
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
}
/* trigger */