diff runtime/doc/version7.txt @ 218:0d6554dfc71e v7.0061

updated for version 7.0061
author vimboss
date Fri, 18 Mar 2005 20:30:32 +0000
parents 87857ffdbf46
children 14ded4ba39cc
line wrap: on
line diff
--- a/runtime/doc/version7.txt
+++ b/runtime/doc/version7.txt
@@ -1,4 +1,4 @@
-*version7.txt*  For Vim version 7.0aa.  Last change: 2005 Mar 15
+*version7.txt*  For Vim version 7.0aa.  Last change: 2005 Mar 18
 
 
 		  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -580,6 +580,9 @@ Added the <xUp>, <xDown>, <xLeft> and <x
 the two forms that xterm can send their codes in and still handle all possible
 modifiers.
 
+getwinvar() now also works to obtain a buffer-local option from the specified
+window.
+
 ==============================================================================
 COMPILE TIME CHANGES					*compile-changes-7*
 
@@ -950,9 +953,6 @@ indirectly invokes ":normal".
 Diff mode failed when $DIFF_OPTIONS was set in the environment.  Unset it
 before invoking "diff".
 
-When renaming a file is done by making a copy (accross file systems), set the
-permissions and ACL of the copy to those of the original file.
-
 Completion didn't work after ":argdo", ":windo" and ":bufdo".  Also for ":set
 &l:opt" and ":set &g:opt". (Peter Winters)
 
@@ -966,8 +966,25 @@ is received.  Avoid invoking the autocom
 character, let it put K_CURSORHOLD in the input buffer.
 
 Removed the "COUNT" flag from ":argadd", to avoid ":argadd 1*" to be used like
-":1argadd *".
+":1argadd *".  Same for ":argdelete" and ":argedit".
 
 Avoid that $LANG is used for the menus when LC_MESSAGES is "en_US".
 
+Added backslashes before dashes in the vim.1 manual page to make the appear as
+real dashes. (Pierr Habouzit)
+
+Where "gq" left the cursor depended on the value of 'formatprg'.  Now "gq"
+always leaves the cursor at the last line of the formatted text.
+
+When editing a compressed file, such as "changelog.Debian.gz" file, filetype
+detection may try to check the contents of the file while it's still
+compressed.  Skip setting 'filetype' for compressed files until they have been
+decompressed.  Required for patterns that end in a "*".
+
+Starting with an argument "+cmd" or "-S script" causes the cursor the be moved
+to the first line.  That breaks a BufReadPost autocommand that uses g`".
+Don't move the cursor if it's somewhere past the first line.
+
+"gg=G" while 'modifiable' is off was uninterruptable.
+
  vim:tw=78:ts=8:ft=help:norl: