diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2017-03-30 22:13:14 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2017-03-30 22:13:14 +0200 |
commit | bb00b6b8fb895e85d2959bebba9d49fe9de61438 (patch) | |
tree | f751d79ce8c49eedc7164916349d14be6ec638b5 /doc/fr | |
parent | f0c8da2f05a4b463cbc7d03341ee8a7a6db45f61 (diff) | |
download | weechat-bb00b6b8fb895e85d2959bebba9d49fe9de61438.zip |
core: add ${re:#} to get the index of last group captured in evaluation of expressions
Diffstat (limited to 'doc/fr')
-rw-r--r-- | doc/fr/weechat_plugin_api.fr.adoc | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/doc/fr/weechat_plugin_api.fr.adoc b/doc/fr/weechat_plugin_api.fr.adoc index a2fea8a0d..4b1761935 100644 --- a/doc/fr/weechat_plugin_api.fr.adoc +++ b/doc/fr/weechat_plugin_api.fr.adoc @@ -2101,9 +2101,18 @@ première étendue à la dernière) : | `+${re:N}+` | Groupe regex capturé : `0` = toute la chaîne correspondante, - `1` à `99` = groupe capturé, `+++` = dernier groupe capturé. | - `+${re:1}+` | - `+test+` + `1` à `99` = groupe capturé, `+++` = dernier groupe capturé, + `#` = index du dernier groupe capturé (_WeeChat ≥ 1.8_). | + `+${re:0}+` + + `+${re:1}+` + + `+${re:2}+` + + `+${re:+++}+` + + `+${re:#}+` | + `+test1 test2+` + + `+test1+` + + `+test2+` + + `+test2+` + + `+2+` | `+${color:nom}+` | Code couleur WeeChat (le nom de couleur a des attributs facultatifs), |