diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2019-11-04 19:01:31 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2019-11-04 19:01:31 +0100 |
commit | 07577194c54c11f5bf207f21b0cec1852fd4ed80 (patch) | |
tree | 27b84a81b48e832c9eca52a62fe048b3addc5360 /doc | |
parent | 9264de9ce0ff99f633d26c2eb67cb7e7b51ae18d (diff) | |
download | weechat-07577194c54c11f5bf207f21b0cec1852fd4ed80.zip |
doc: add examples of division in ${calc:...} (plugin API reference)
Diffstat (limited to 'doc')
-rw-r--r-- | doc/en/weechat_plugin_api.en.adoc | 4 | ||||
-rw-r--r-- | doc/fr/weechat_plugin_api.fr.adoc | 4 | ||||
-rw-r--r-- | doc/it/weechat_plugin_api.it.adoc | 4 | ||||
-rw-r--r-- | doc/ja/weechat_plugin_api.ja.adoc | 4 |
4 files changed, 16 insertions, 0 deletions
diff --git a/doc/en/weechat_plugin_api.en.adoc b/doc/en/weechat_plugin_api.en.adoc index 09b0a1d88..ebfa16944 100644 --- a/doc/en/weechat_plugin_api.en.adoc +++ b/doc/en/weechat_plugin_api.en.adoc @@ -2584,10 +2584,14 @@ expanded to last): `+**+`: power. | `+${calc:5+2*3}+` + `+${calc:(5+2)*3}+` + + `+${calc:10/4}+` + + `+${calc:10//4}+` + `+${calc:9.2%3}+` + `+${calc:2**16}+` | `+11+` + `+21+` + + `+2.5+` + + `+2+` + `+0.2+` + `+65536+` diff --git a/doc/fr/weechat_plugin_api.fr.adoc b/doc/fr/weechat_plugin_api.fr.adoc index a9ee70711..fea1abe13 100644 --- a/doc/fr/weechat_plugin_api.fr.adoc +++ b/doc/fr/weechat_plugin_api.fr.adoc @@ -2632,10 +2632,14 @@ première étendue à la dernière) : `+**+`: puissance. | `+${calc:5+2*3}+` + `+${calc:(5+2)*3}+` + + `+${calc:10/4}+` + + `+${calc:10//4}+` + `+${calc:9.2%3}+` + `+${calc:2**16}+` | `+11+` + `+21+` + + `+2.5+` + + `+2+` + `+0.2+` + `+65536+` diff --git a/doc/it/weechat_plugin_api.it.adoc b/doc/it/weechat_plugin_api.it.adoc index cabcfd47f..e34a62ff1 100644 --- a/doc/it/weechat_plugin_api.it.adoc +++ b/doc/it/weechat_plugin_api.it.adoc @@ -2691,10 +2691,14 @@ expanded to last): `+**+`: power. | `+${calc:5+2*3}+` + `+${calc:(5+2)*3}+` + + `+${calc:10/4}+` + + `+${calc:10//4}+` + `+${calc:9.2%3}+` + `+${calc:2**16}+` | `+11+` + `+21+` + + `+2.5+` + + `+2+` + `+0.2+` + `+65536+` diff --git a/doc/ja/weechat_plugin_api.ja.adoc b/doc/ja/weechat_plugin_api.ja.adoc index 54776092d..cb4dca7ac 100644 --- a/doc/ja/weechat_plugin_api.ja.adoc +++ b/doc/ja/weechat_plugin_api.ja.adoc @@ -2602,10 +2602,14 @@ str5 = weechat.string_eval_expression("password=abc password=def", {}, {}, optio `+**+`: power. | `+${calc:5+2*3}+` + `+${calc:(5+2)*3}+` + + `+${calc:10/4}+` + + `+${calc:10//4}+` + `+${calc:9.2%3}+` + `+${calc:2**16}+` | `+11+` + `+21+` + + `+2.5+` + + `+2+` + `+0.2+` + `+65536+` |