Hi
":help min()" or ":help max() suggests that it works
with lists only, but it actually also work with dictionaries.
Attach path updates the documentation.
Regards
Dominique
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt
index ec4030e..78b1ddf 100644
--- a/runtime/doc/eval.txt
+++ b/runtime/doc/eval.txt
@@ -5797,15 +5797,19 @@ matchstrpos({expr}, {pat}[, {start}[, {count}]]) *matchstrpos()*
*max()*
max({list}) Return the maximum value of all items in {list}.
- If {list} is not a list or one of the items in {list} cannot
- be used as a Number this results in an error.
- An empty |List| results in zero.
+ {list} can be a list or a dictionary. For a dictionary,
+ it returns the maximum of all values in the dictionary.
+ If {list} is neither a list nor a dictionary, or one of the
+ items in {list} cannot be used as a Number this results in
+ an error. An empty |List| or |Dictionary| results in zero.
*min()*
min({list}) Return the minimum value of all items in {list}.
- If {list} is not a list or one of the items in {list} cannot
- be used as a Number this results in an error.
- An empty |List| results in zero.
+ {list} can be a list or a dictionary. For a dictionary,
+ it returns the minimum of all values in the dictionary.
+ If {list} is neither a list nor a dictionary, or one of the
+ items in {list} cannot be used as a Number this results in
+ an error. An empty |List| or |Dictionary| results in zero.
*mkdir()* *E739*
mkdir({name} [, {path} [, {prot}]])