1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-12 14:14:48 +02:00

trigger: minor change in output of /trigger for regex

This commit is contained in:
Sebastien Helleu
2014-01-26 11:05:51 +01:00
parent e9e32931aa
commit a0a2103828
+8 -14
View File
@@ -73,22 +73,16 @@ trigger_command_trigger (void *data, struct t_gui_buffer *buffer, int argc,
weechat_printf_tags (NULL, "no_trigger",
" conditions: \"%s\"", option);
}
if (ptr_trigger->regex_count > 0)
for (i = 0; i < ptr_trigger->regex_count; i++)
{
weechat_printf_tags (NULL, "no_trigger",
" %d regex:",
ptr_trigger->regex_count);
for (i = 0; i < ptr_trigger->regex_count; i++)
{
weechat_printf_tags (NULL, "no_trigger",
" %d: %s%s %s-->%s %s",
i + 1,
weechat_color (weechat_config_string (trigger_config_color_regex)),
ptr_trigger->regex[i].str_regex,
weechat_color ("chat_delimiters"),
weechat_color (weechat_config_string (trigger_config_color_replace)),
ptr_trigger->regex[i].replace);
}
" regex %d: %s%s %s-->%s %s",
i + 1,
weechat_color (weechat_config_string (trigger_config_color_regex)),
ptr_trigger->regex[i].str_regex,
weechat_color ("chat_delimiters"),
weechat_color (weechat_config_string (trigger_config_color_replace)),
ptr_trigger->regex[i].replace);
}
option = weechat_config_string (ptr_trigger->options[TRIGGER_OPTION_COMMAND]);
if (option && option[0])