summaryrefslogtreecommitdiff
path: root/doc/en/autogen/user
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2019-09-20 21:37:01 +0200
committerSébastien Helleu <flashcode@flashtux.org>2019-09-20 21:37:01 +0200
commit997894edc04e87b0ba0c81712c92a83ec7f5c121 (patch)
tree8dc259f773da21c8592421da0323694843b146db /doc/en/autogen/user
parent0109c519375f8a54552127e71ea2b00b1baa296e (diff)
downloadweechat-997894edc04e87b0ba0c81712c92a83ec7f5c121.zip
core: add calculation of expression in evaluation of expressions with "calc:..." (issue #997)
Diffstat (limited to 'doc/en/autogen/user')
-rw-r--r--doc/en/autogen/user/weechat_commands.adoc8
1 files changed, 5 insertions, 3 deletions
diff --git a/doc/en/autogen/user/weechat_commands.adoc b/doc/en/autogen/user/weechat_commands.adoc
index 89aad68d6..2cf3cf4c1 100644
--- a/doc/en/autogen/user/weechat_commands.adoc
+++ b/doc/en/autogen/user/weechat_commands.adoc
@@ -308,9 +308,10 @@ Some variables are replaced in expression, using the format ${variable}, variabl
9. current date/time (format: "date" or "date:format")
10. an environment variable (format: "env:XXX")
11. a ternary operator (format: "if:condition?value_if_true:value_if_false")
- 12. an option (format: "file.section.option")
- 13. a local variable in buffer
- 14. a hdata name/variable (the value is automatically converted to string), by default "window" and "buffer" point to current window/buffer.
+ 12. result of an expression with parentheses and operators + - * / // % (format: "calc:xxx")
+ 13. an option (format: "file.section.option")
+ 14. a local variable in buffer
+ 15. a hdata name/variable (the value is automatically converted to string), by default "window" and "buffer" point to current window/buffer.
Format for hdata can be one of following:
hdata.var1.var2...: start with a hdata (pointer must be known), and ask variables one after one (other hdata can be followed)
hdata[list].var1.var2...: start with a hdata using a list, for example:
@@ -337,6 +338,7 @@ Examples (simple strings):
/eval -n ${if:${info:term_width}>80?big:small} ==> big
/eval -n ${rev:Hello} ==> olleH
/eval -n ${repeat:5,-} ==> -----
+ /eval -n ${calc:(5+2)*3} ==> 21
Examples (conditions):
/eval -n -c ${window.buffer.number} > 2 ==> 0