comparison runtime/doc/version7.txt @ 462:c21975c58b44 v7.0123

updated for version 7.0123
author vimboss
date Thu, 04 Aug 2005 21:32:22 +0000
parents 7f2d3b3c15a2
children 3b705e71c7b0
comparison
equal deleted inserted replaced
461:f98374445f66 462:c21975c58b44
1 *version7.txt* For Vim version 7.0aa. Last change: 2005 Aug 01 1 *version7.txt* For Vim version 7.0aa. Last change: 2005 Aug 04
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
26 Translated manual pages |new-manpage-trans| 26 Translated manual pages |new-manpage-trans|
27 Internal grep |new-vimgrep| 27 Internal grep |new-vimgrep|
28 Scroll back in messages |new-scroll-back| 28 Scroll back in messages |new-scroll-back|
29 POSIX compatibility |new-posix| 29 POSIX compatibility |new-posix|
30 Debugger support |new-debug-support| 30 Debugger support |new-debug-support|
31 Remote file explorer |new-netrw-explore|
31 Various new items |new-items-7| 32 Various new items |new-items-7|
32 33
33 IMPROVEMENTS |improvements-7| 34 IMPROVEMENTS |improvements-7|
34 35
35 COMPILE TIME CHANGES |compile-changes-7| 36 COMPILE TIME CHANGES |compile-changes-7|
296 ---------------- 297 ----------------
297 298
298 The 'balloonexpr' option has been added. This is a generic way to implement 299 The 'balloonexpr' option has been added. This is a generic way to implement
299 balloon functionality. You can use it to show info for the word under the 300 balloon functionality. You can use it to show info for the word under the
300 mouse pointer. 301 mouse pointer.
302
303
304 Remote file explorer *new-netrw-explore*
305 --------------------
306
307 The netrw plugin now also supports viewing a directory, when "scp://" is used.
308 Deleting and renaming files is possible.
309
310 To avoid duplicating a lot of code, the previous file explorer plugin has been
311 integrated in the netrw plugin. This means browsing local and remote files
312 works the same way.
313
314 ":browse edit" and ":browse split" use the netrw plugin when it's available
315 and a GUI dialog is not possible.
316
317 The netrw plugin is maintained by Charles Campbell.
301 318
302 319
303 Various new items *new-items-7* 320 Various new items *new-items-7*
304 ----------------- 321 -----------------
305 322
522 539
523 Mac: better integration with Xcode. Post a fake mouse-up event after the odoc 540 Mac: better integration with Xcode. Post a fake mouse-up event after the odoc
524 event and the drag receive handler to work around a stall after Vim loads a 541 event and the drag receive handler to work around a stall after Vim loads a
525 file. Fixed an off-by-one line number error. (Da Woon Jung) 542 file. Fixed an off-by-one line number error. (Da Woon Jung)
526 543
527 The netrw plugin now also supports viewing a directory, when "scp://" is used.
528 Deleting and renaming files is possible. (Charles Campbell)
529
530 Added the t_SI and t_EI escape sequences for starting and ending Insert mode. 544 Added the t_SI and t_EI escape sequences for starting and ending Insert mode.
531 To be used to set the cursor shape to a bar or a block. No default values, 545 To be used to set the cursor shape to a bar or a block. No default values,
532 they are not supported by termcap/terminfo. 546 they are not supported by termcap/terminfo.
533 547
534 Autocommands can be defined local to a buffer. This means they will also work 548 Autocommands can be defined local to a buffer. This means they will also work
732 ' mark if the cursor is moved. (Yegappan Lakshmanan) 746 ' mark if the cursor is moved. (Yegappan Lakshmanan)
733 747
734 When 'verbose' is set the output of ":highlight" will show where a highlight 748 When 'verbose' is set the output of ":highlight" will show where a highlight
735 item was last set. 749 item was last set.
736 750
751 For 'errorformat' it was not possible to have a file name that contains the
752 character that follows after "%f". For example, in "%f:%l:%m" the file name
753 could not contain ":". Now include the first ":" where the rest of the
754 pattern matches. In the example a ":" not followed by a line number is
755 included in the file name. (suggested by Emanuele Giaquinta)
756
737 ============================================================================== 757 ==============================================================================
738 COMPILE TIME CHANGES *compile-changes-7* 758 COMPILE TIME CHANGES *compile-changes-7*
739 759
740 Dropped the support for the BeOS and Amiga GUI. They were not maintained and 760 Dropped the support for the BeOS and Amiga GUI. They were not maintained and
741 probably didn't work. If you want to work on this: get the Vim 6.x version 761 probably didn't work. If you want to work on this: get the Vim 6.x version
1248 At the more-prompt the last character in the last line wasn't drawn. 1268 At the more-prompt the last character in the last line wasn't drawn.
1249 1269
1250 When deleting non-existing text while 'virtualedit' is set the '[ and '] marks 1270 When deleting non-existing text while 'virtualedit' is set the '[ and '] marks
1251 were not set. 1271 were not set.
1252 1272
1273 Win32: Could not use "**/" in 'path', it had to be "**\".
1274
1253 vim:tw=78:ts=8:ft=help:norl: 1275 vim:tw=78:ts=8:ft=help:norl: