comparison runtime/doc/version7.txt @ 697:f08390485cd3 v7.0210

updated for version 7.0210
author vimboss
date Wed, 01 Mar 2006 00:01:28 +0000
parents 07d199fe02ed
children c78d973dce9e
comparison
equal deleted inserted replaced
696:f0a9ef4db025 697:f08390485cd3
1 *version7.txt* For Vim version 7.0aa. Last change: 2006 Feb 27 1 *version7.txt* For Vim version 7.0aa. Last change: 2006 Feb 28
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
129 compatibility problems and because "SS" can't be changed back to a sharp s. 129 compatibility problems and because "SS" can't be changed back to a sharp s.
130 130
131 "gd" previously found the very first occurrence of a variable in a function, 131 "gd" previously found the very first occurrence of a variable in a function,
132 that could be the function argument without type. Now it finds the position 132 that could be the function argument without type. Now it finds the position
133 where the type is given. 133 where the type is given.
134
135 The line continuation in functions was not taken into account, line numbers in
136 errors were logical lines, not lines in the sourced file. That made it
137 difficult to locate errors. Now the line number in the sourced file is
138 reported, relative to the function start. This also means that line numbers
139 for ":breakadd func" are different.
134 140
135 ============================================================================== 141 ==============================================================================
136 NEW FEATURES *new-7* 142 NEW FEATURES *new-7*
137 143
138 Vim script enhancements *new-vim-script* 144 Vim script enhancements *new-vim-script*
507 |:lvimgrep| Like |:vimgrep| but use the location list. 513 |:lvimgrep| Like |:vimgrep| but use the location list.
508 |:lvimgrepadd| Like |:vimgrepadd| but use the location list. 514 |:lvimgrepadd| Like |:vimgrepadd| but use the location list.
509 |:lhelpgrep| Like |:helpgrep| but use the location list. 515 |:lhelpgrep| Like |:helpgrep| but use the location list.
510 |:lcscope| Like |:cscope| but use the location list. 516 |:lcscope| Like |:cscope| but use the location list.
511 |:ltag| Jump to a tag and add matching tags to a location list. 517 |:ltag| Jump to a tag and add matching tags to a location list.
518
519 |:undojoin| Join a change with the previous undo block.
512 520
513 521
514 Ex command modifiers: ~ 522 Ex command modifiers: ~
515 523
516 |:keepalt| Do not change the alternate file. 524 |:keepalt| Do not change the alternate file.
834 list. 842 list.
835 843
836 Win32: When libintl.dll supports bind_textdomain_codeset(), use it. 844 Win32: When libintl.dll supports bind_textdomain_codeset(), use it.
837 (NAKADAIRA Yukihiro) 845 (NAKADAIRA Yukihiro)
838 846
847 Win32: Vim was not aware of hard links on NTFS file systems. These are
848 detected now for when 'backupcopy' is "auto". Also fixed a bogus "file has
849 been changed since reading it" error for links.
850
839 When foldtext() finds no text after removing the comment leader, use the 851 When foldtext() finds no text after removing the comment leader, use the
840 second line of the fold. Helps for C-style /* */ comments where the first 852 second line of the fold. Helps for C-style /* */ comments where the first
841 line is just "/*". 853 line is just "/*".
842 854
843 When editing the same file from two systems (e.g., Unix and MS-Windows) there 855 When editing the same file from two systems (e.g., Unix and MS-Windows) there
1785 1797
1786 GUI: The "Replace All" button didn't handle backslashes in the replacement in 1798 GUI: The "Replace All" button didn't handle backslashes in the replacement in
1787 the same way as "Replace". Escape backslashes so that they are taken 1799 the same way as "Replace". Escape backslashes so that they are taken
1788 literally. 1800 literally.
1789 1801
1790 An error in a function reported a line number that doesn't take line 1802 When using Select mode from Insert mode and typing a key, causing lines to be
1791 continuation into account. Now store a NULL for continuation lines, so that 1803 deleted and a message displayed, delayed the effect of inserting the key.
1792 the index is equal to the line number in the sourced file. 1804 Now overwrite the message without delay.
1793 1805
1794 vim:tw=78:ts=8:ft=help:norl: 1806 vim:tw=78:ts=8:ft=help:norl: