From 4028e5c200f6eebfcce25de1a5b4b4753f08629a Mon Sep 17 00:00:00 2001 From: Sebastien Helleu Date: Sat, 15 Feb 2014 11:18:39 +0100 Subject: [PATCH] trigger: update help of options trigger.trigger.xxx.{arguments|command} --- src/plugins/trigger/trigger-config.c | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/plugins/trigger/trigger-config.c b/src/plugins/trigger/trigger-config.c index cc4c97ec6..a9cfe7e09 100644 --- a/src/plugins/trigger/trigger-config.c +++ b/src/plugins/trigger/trigger-config.c @@ -261,10 +261,8 @@ trigger_config_create_trigger_option (const char *trigger_name, int index_option ptr_option = weechat_config_new_option ( trigger_config_file, trigger_config_section_trigger, option_name, "string", - N_("arguments for the hook (depend on the hook type); for " - "signal/hsignal/modifier: name[;name...], for print: " - "buffer;tags;strip_colors;message, for timer: " - "interval;align_second;max_calls"), + N_("arguments for the hook (depend on the hook type, see /help " + "trigger)"), NULL, 0, 0, value, NULL, 0, NULL, NULL, &trigger_config_change_trigger_arguments, NULL, NULL, NULL); break; @@ -300,7 +298,8 @@ trigger_config_create_trigger_option (const char *trigger_name, int index_option ptr_option = weechat_config_new_option ( trigger_config_file, trigger_config_section_trigger, option_name, "string", - N_("command run if conditions are OK, after regex replacements"), + N_("command(s) to run if conditions are OK, after regex " + "replacements (many commands can be separated by semicolons)"), NULL, 0, 0, value, NULL, 0, NULL, NULL, &trigger_config_change_trigger_command, NULL, NULL, NULL); break;