diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2022-10-31 08:08:46 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2022-11-06 09:14:14 +0100 |
commit | 7555993bbc061c86d8f57b424a872a2496021a48 (patch) | |
tree | 3696ab69969c97b1027050de322fc3b8b1f71c6b /src/plugins/trigger/trigger-callback.h | |
parent | 3b674a5e160301b0af71a6568cc34fdc0ec5fd04 (diff) | |
download | weechat-7555993bbc061c86d8f57b424a872a2496021a48.zip |
trigger: add regex command "y" to translate chars, set default regex command to "s" (regex replace) (closes #1510)
Diffstat (limited to 'src/plugins/trigger/trigger-callback.h')
-rw-r--r-- | src/plugins/trigger/trigger-callback.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/trigger/trigger-callback.h b/src/plugins/trigger/trigger-callback.h index 07da9b0bb..7435129fc 100644 --- a/src/plugins/trigger/trigger-callback.h +++ b/src/plugins/trigger/trigger-callback.h @@ -32,7 +32,7 @@ struct t_trigger_context struct t_weelist *vars_updated; struct timeval start_exec; struct timeval start_check_conditions; - struct timeval start_replace_regex; + struct timeval start_regex; struct timeval start_run_command; struct timeval end_exec; }; |