comparison 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
comparison
equal deleted inserted replaced
217:89114a6baf3c 218:0d6554dfc71e
1 *version7.txt* For Vim version 7.0aa. Last change: 2005 Mar 15 1 *version7.txt* For Vim version 7.0aa. Last change: 2005 Mar 18
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
578 and the * stands for the modifier code. 578 and the * stands for the modifier code.
579 Added the <xUp>, <xDown>, <xLeft> and <xRight> keys, to be able to recognize 579 Added the <xUp>, <xDown>, <xLeft> and <xRight> keys, to be able to recognize
580 the two forms that xterm can send their codes in and still handle all possible 580 the two forms that xterm can send their codes in and still handle all possible
581 modifiers. 581 modifiers.
582 582
583 getwinvar() now also works to obtain a buffer-local option from the specified
584 window.
585
583 ============================================================================== 586 ==============================================================================
584 COMPILE TIME CHANGES *compile-changes-7* 587 COMPILE TIME CHANGES *compile-changes-7*
585 588
586 Dropped the support for the BeOS and Amiga GUI. They were not maintained and 589 Dropped the support for the BeOS and Amiga GUI. They were not maintained and
587 probably didn't work. If you want to work on this: get the Vim 6.x version 590 probably didn't work. If you want to work on this: get the Vim 6.x version
948 indirectly invokes ":normal". 951 indirectly invokes ":normal".
949 952
950 Diff mode failed when $DIFF_OPTIONS was set in the environment. Unset it 953 Diff mode failed when $DIFF_OPTIONS was set in the environment. Unset it
951 before invoking "diff". 954 before invoking "diff".
952 955
953 When renaming a file is done by making a copy (accross file systems), set the
954 permissions and ACL of the copy to those of the original file.
955
956 Completion didn't work after ":argdo", ":windo" and ":bufdo". Also for ":set 956 Completion didn't work after ":argdo", ":windo" and ":bufdo". Also for ":set
957 &l:opt" and ":set &g:opt". (Peter Winters) 957 &l:opt" and ":set &g:opt". (Peter Winters)
958 958
959 When setting 'ttymouse' to "dec" in an xterm that supports the DEC mouse 959 When setting 'ttymouse' to "dec" in an xterm that supports the DEC mouse
960 locator it doesn't work. Now switch off the mouse before selecting another 960 locator it doesn't work. Now switch off the mouse before selecting another
964 characters the typeahead buffer may be messed up, e.g., when a mouse-up event 964 characters the typeahead buffer may be messed up, e.g., when a mouse-up event
965 is received. Avoid invoking the autocommands from the function waiting for a 965 is received. Avoid invoking the autocommands from the function waiting for a
966 character, let it put K_CURSORHOLD in the input buffer. 966 character, let it put K_CURSORHOLD in the input buffer.
967 967
968 Removed the "COUNT" flag from ":argadd", to avoid ":argadd 1*" to be used like 968 Removed the "COUNT" flag from ":argadd", to avoid ":argadd 1*" to be used like
969 ":1argadd *". 969 ":1argadd *". Same for ":argdelete" and ":argedit".
970 970
971 Avoid that $LANG is used for the menus when LC_MESSAGES is "en_US". 971 Avoid that $LANG is used for the menus when LC_MESSAGES is "en_US".
972 972
973 Added backslashes before dashes in the vim.1 manual page to make the appear as
974 real dashes. (Pierr Habouzit)
975
976 Where "gq" left the cursor depended on the value of 'formatprg'. Now "gq"
977 always leaves the cursor at the last line of the formatted text.
978
979 When editing a compressed file, such as "changelog.Debian.gz" file, filetype
980 detection may try to check the contents of the file while it's still
981 compressed. Skip setting 'filetype' for compressed files until they have been
982 decompressed. Required for patterns that end in a "*".
983
984 Starting with an argument "+cmd" or "-S script" causes the cursor the be moved
985 to the first line. That breaks a BufReadPost autocommand that uses g`".
986 Don't move the cursor if it's somewhere past the first line.
987
988 "gg=G" while 'modifiable' is off was uninterruptable.
989
973 vim:tw=78:ts=8:ft=help:norl: 990 vim:tw=78:ts=8:ft=help:norl: