updated for version 7.0204
diff --git a/runtime/doc/version7.txt b/runtime/doc/version7.txt
index 4d9fd51..addb5a2 100644
--- a/runtime/doc/version7.txt
+++ b/runtime/doc/version7.txt
@@ -1,4 +1,4 @@
-*version7.txt* For Vim version 7.0aa. Last change: 2006 Feb 21
+*version7.txt* For Vim version 7.0aa. Last change: 2006 Feb 22
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -388,6 +388,14 @@
<A-RightMouse> ('mousemodel' "extend")
Make a blockwise selection. |<A-LeftMouse>|
+gF Start editing the filename under the cursor and jump
+ to the line number following the file name.
+ (Yegappan Lakshmanan)
+
+CTRL-W F Start editing the filename under the cursor in a new
+ window and jump to the line number following the file
+ name. (Yegappan Lakshmanan)
+
Insert mode commands: ~
CTRL-\ CTRL-O Execute a Normal mode command. Like CTRL-O but
@@ -800,9 +808,6 @@
For the '%' item in 'viminfo', allow a number to set a maximum for the number
of buffers.
-The 'statusline' option can be local to the window, so that each window can
-have a different value. (partly by Yegappan Lakshmanan)
-
When a file looks like a shell script, check for an "exec" command that starts
the tcl interpreter. (suggested by Alexios Zavras)
@@ -1018,12 +1023,20 @@
The colortest.vim script can now be invoked directly with ":source" or
":runtime".
+The 'statusline' option can be local to the window, so that each window can
+have a different value. (partly by Yegappan Lakshmanan)
+
The 'statusline' option and other options that support the same format can now
use these new features:
- When it starts with "%!" the value is first evaluated as an expression
before parsing the value.
- "%#HLname#" can be used to start highlighting with HLname.
+When 'statusline' is set to something that causes an error message then it is
+made empty to avoid an endless redraw loop. Also for other options, such at
+'tabline'. ":verbose set statusline" will mention that it was set in an error
+handler.
+
==============================================================================
COMPILE TIME CHANGES *compile-changes-7*
@@ -1722,4 +1735,8 @@
screen would be cleared and redrawn, causing the message about the edited file
to be cleared. Now set "keep_msg" to redraw the last message.
+For a color terminal: When the Normal HL uses bold, possibly to make the color
+lighter, and another HL group specifies a color it might become light as well.
+Now reset bold if a HL group doesn't specify bold itself.
+
vim:tw=78:ts=8:ft=help:norl: