updated for version 7.0117
diff --git a/runtime/doc/version7.txt b/runtime/doc/version7.txt
index ce0c4a4..5fd7688 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 Jul 25
+*version7.txt* For Vim version 7.0aa. Last change: 2005 Jul 27
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -25,6 +25,7 @@
Printing multi-byte text |new-print-multi-byte|
Translated manual pages |new-manpage-trans|
Internal grep |new-vimgrep|
+Scroll back in messages |new-scroll-back|
POSIX compatibility |new-posix|
Debugger support |new-debug-support|
Various new items |new-items-7|
@@ -227,6 +228,17 @@
places where file names are expanded, thus also with |:next| and |:args|.
+Scroll back in messages *new-scroll-back*
+-----------------------
+
+When displaying messages, at the |more-prompt| and the |hit-enter-prompt|, The
+'k', 'u' and 'b' keys can be used to scroll back to previous messages. This
+is especially useful for commands such as ":syntax", ":autocommand" and
+":highlight". This is implemented in a generic way thus it works for all
+commands and highlighting is kept. Only works when the 'more' option is set.
+Previously it only partly worked for ":clist".
+
+
POSIX compatibility *new-posix*
-------------------
@@ -350,6 +362,12 @@
|:sort| Sort lines in the buffer without depending on an
external command.
+|:caddfile| Add error messages to an existing quickfix list
+ (Yegappan Lakshmanan).
+
+|:cexpr| Read error messages from a Vim expression (Yegappan
+ Lakshmanan).
+
New functions: ~
@@ -1214,4 +1232,12 @@
the resulting command ":e +foo" doesn't work. Now insert a backslash: ":e
\+foo".
+When the translation of "-- More --" was not 10 characters long the following
+message would be in the wrong position.
+
+At the more-prompt the last character in the last line wasn't drawn.
+
+When deleting non-existing text while 'virtualedit' is set the '[ and '] marks
+were not set.
+
vim:tw=78:ts=8:ft=help:norl: