diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2014-11-01 20:34:52 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2014-11-01 20:34:52 +0100 |
commit | e0810ae6d557c7f47044518b4224dced6feb64ff (patch) | |
tree | e6bd6e348017d62bed926094f5da66f4ec7dd358 /src/plugins | |
parent | de067ff6a037dfcb591647d56390a75e60fdb0cc (diff) | |
download | weechat-e0810ae6d557c7f47044518b4224dced6feb64ff.zip |
trigger: fix trigger example "effects" in /help trigger (update regex to new format)
Diffstat (limited to 'src/plugins')
-rw-r--r-- | src/plugins/trigger/trigger-command.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/trigger/trigger-command.c b/src/plugins/trigger/trigger-command.c index a03879e54..d24e3069f 100644 --- a/src/plugins/trigger/trigger-command.c +++ b/src/plugins/trigger/trigger-command.c @@ -1148,9 +1148,9 @@ trigger_command_init () " add text attributes *bold*, _underline_ and /italic/ (only in " "user messages):\n" " /trigger add effects modifier weechat_print \"${tg_tag_nick}\" " - "\"==\\*(\\S+)\\*==*${color:bold}$1${color:-bold}*== " - "==_(\\S+)_==_${color:underline}$1${color:-underline}_== " - "==/(\\S+)/==/${color:italic}$1${color:-italic}/\"\n" + "\"==\\*(\\S+)\\*==*${color:bold}${re:1}${color:-bold}*== " + "==_(\\S+)_==_${color:underline}${re:1}${color:-underline}_== " + "==/(\\S+)/==/${color:italic}${re:1}${color:-italic}/\"\n" " hide nicklist bar on small terminals:\n" " /trigger add resize_small signal signal_sigwinch " "\"${info:term_width} < 100\" \"\" \"/bar hide nicklist\"\n" |