diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2022-12-10 16:37:03 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2022-12-10 16:37:03 +0100 |
commit | 5b9b1e175b723ef1c7aceb1b4bf27534b2795805 (patch) | |
tree | ed6f986fc0b336cd1aea261b7525ac83819a323a /doc/en/weechat_plugin_api.en.adoc | |
parent | 9b93919b06c8a508940748125ea99029c162bc85 (diff) | |
download | weechat-5b9b1e175b723ef1c7aceb1b4bf27534b2795805.zip |
core: add color attributes "blink" and "dim" (half bright) (closes #1855)
Diffstat (limited to 'doc/en/weechat_plugin_api.en.adoc')
-rw-r--r-- | doc/en/weechat_plugin_api.en.adoc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/en/weechat_plugin_api.en.adoc b/doc/en/weechat_plugin_api.en.adoc index ecd867599..a26241688 100644 --- a/doc/en/weechat_plugin_api.en.adoc +++ b/doc/en/weechat_plugin_api.en.adoc @@ -8676,6 +8676,10 @@ Arguments: _irc.color.message_quit_ _(WeeChat ≥ 1.2)_ ** color with optional attributes/background (see below) ** attribute: +*** _blink_: set blink +*** _-blink_: remove blink +*** _dim_: set "dim" (half bright) +*** _-dim_: remove "dim" (half bright) *** _bold_: set bold *** _-bold_: remove bold *** _reverse_: set reverse @@ -8698,6 +8702,8 @@ Arguments: Format of color is: attributes (optional) + color name + ",background" (optional). Possible attributes are: +* `+%+`: blink +* `+.+`: "dim" (half bright) * `+*+`: bold text * `+!+`: reverse video * `+/+`: italic |