diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2019-09-21 13:54:36 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2019-09-21 13:54:36 +0200 |
commit | e1a461279731877ad66298d9c0576997474453af (patch) | |
tree | deb81f9f0b023a969e3592d15936aecdec3907cc /doc/en | |
parent | de456363882d54f18d6fd8614c6d5431d7402824 (diff) | |
download | weechat-e1a461279731877ad66298d9c0576997474453af.zip |
core: ignore color codes in ${length:xxx} and ${lengthscr:xxx}
Diffstat (limited to 'doc/en')
-rw-r--r-- | doc/en/weechat_plugin_api.en.adoc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/en/weechat_plugin_api.en.adoc b/doc/en/weechat_plugin_api.en.adoc index 91a7e14f3..b602ad1c2 100644 --- a/doc/en/weechat_plugin_api.en.adoc +++ b/doc/en/weechat_plugin_api.en.adoc @@ -2476,7 +2476,7 @@ expanded to last): | `+${length:xxx}+` + (_WeeChat ≥ 2.7_) | - Length of string (number of UTF-8 chars). | + Length of string (number of UTF-8 chars), color codes are ignored. | `+${length:test}+` + `+${length:こんにちは世界}+` | `+4+` + @@ -2484,7 +2484,7 @@ expanded to last): | `+${lengthscr:xxx}+` + (_WeeChat ≥ 2.7_) | - Length of string displayed on screen. | + Length of string displayed on screen, color codes are ignored. | `+${lengthscr:test}+` + `+${lengthscr:こんにちは世界}+` | `+4+` + |