updated for version 7.0037
diff --git a/runtime/doc/version7.txt b/runtime/doc/version7.txt
index a48db75..ccf9b03 100644
--- a/runtime/doc/version7.txt
+++ b/runtime/doc/version7.txt
@@ -1,4 +1,4 @@
-*version7.txt* For Vim version 7.0aa. Last change: 2005 Jan 09
+*version7.txt* For Vim version 7.0aa. Last change: 2005 Jan 11
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -94,13 +94,21 @@
In Vim scripts the following types have been added:
- list ordered list of items
- dictionary associative array of items
- function reference to a function
+ List ordered list of items |List|
+ Dictionary associative array of items |Dictionary|
+ Funcref reference to a function |Funcref|
Many functions and commands have been added to support the new types.
-NOT IMPLEMENTED YET!
+The Dictionary is NOT IMPLEMENTED YET!
+
+The |string()| function can be used to get a string representation of a
+variable. Works for Numbers, Strings and composites of them. Then |eval()|
+can be used to turn the string back into the variable value.
+
+The |sharp-string| has been added as a convenient way to put an expression in
+a string. Examples: >
+ :let l = filter(mylist, # & =~ '^\A'#)
KDE support *new-KDE*
@@ -117,6 +125,7 @@
The |:mzscheme| command can be used to execute MzScheme commands.
The |:mzfile| command can be used to execute an MzScheme script file.
+
Printing multi-byte text *new-print-multi-byte*
------------------
@@ -651,4 +660,6 @@
(possible when using CTRL-R =), pressing Esc would directly restart Insert
mode. (Peter Winters)
+"2daw" didn't work at end of file if the last word is a single character.
+
vim:tw=78:ts=8:ft=help:norl: