summaryrefslogtreecommitdiffstats
path: root/runtime/doc/builtin.txt
diff options
context:
space:
mode:
authorYegappan Lakshmanan <yegappan@yahoo.com>2023-12-24 11:01:23 +0100
committerChristian Brabandt <cb@256bit.org>2023-12-24 11:03:06 +0100
commit49cdd629a39d7e40e7349e65cb177e2442871a04 (patch)
treec15f19b2e508d6d04033de43a34651e409cee028 /runtime/doc/builtin.txt
parentea9964a36f948c1266d43dd8b3890c6f3bdd243d (diff)
runtime(doc): list of new/changed features in version9.txt
closes: #13753 Signed-off-by: Yegappan Lakshmanan <yegappan@yahoo.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
Diffstat (limited to 'runtime/doc/builtin.txt')
-rw-r--r--runtime/doc/builtin.txt8
1 files changed, 6 insertions, 2 deletions
diff --git a/runtime/doc/builtin.txt b/runtime/doc/builtin.txt
index 6f05055c38..3f2aea926e 100644
--- a/runtime/doc/builtin.txt
+++ b/runtime/doc/builtin.txt
@@ -1,4 +1,4 @@
-*builtin.txt* For Vim version 9.0. Last change: 2023 Dec 14
+*builtin.txt* For Vim version 9.0. Last change: 2023 Dec 24
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -5163,8 +5163,12 @@ items({dict}) *items()*
for [key, value] in items(mydict)
echo key .. ': ' .. value
endfor
+<
+ A List or a String argument is also supported. In these
+ cases, items() returns a List with the index and the value at
+ the index.
-< Can also be used as a |method|: >
+ Can also be used as a |method|: >
mydict->items()
job_ functions are documented here: |job-functions-details|