comparison runtime/doc/version7.txt @ 279:946f0cbdd535 v7.0074

updated for version 7.0074
author vimboss
date Fri, 20 May 2005 21:31:17 +0000
parents 8fa8d7964cf1
children e697bd3c3876
comparison
equal deleted inserted replaced
278:a7e59720a155 279:946f0cbdd535
1 *version7.txt* For Vim version 7.0aa. Last change: 2005 May 19 1 *version7.txt* For Vim version 7.0aa. Last change: 2005 May 20
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
74 74
75 When ":file xxx" is used in a buffer without a name, the alternate file name 75 When ":file xxx" is used in a buffer without a name, the alternate file name
76 isn't set. This avoids creating buffers without a name that are not useful. 76 isn't set. This avoids creating buffers without a name that are not useful.
77 77
78 The "2html.vim" script now converts closed folds to HTML. This means the HTML 78 The "2html.vim" script now converts closed folds to HTML. This means the HTML
79 looks like its displayed, with the same folds open and closed. Use "zR" if no 79 looks like its displayed, with the same folds open and closed. Use "zR", or
80 folds should appear in the HTML. (partly by Carl Osterwisch) 80 "let html_ignore_folding=1", if no folds should appear in the HTML. (partly by
81 Carl Osterwisch)
81 Diff mode now is also converted as it is displayed. 82 Diff mode now is also converted as it is displayed.
82 83
83 Win32: The effect of the <F10> key depended on 'winaltkeys'. Now it depends 84 Win32: The effect of the <F10> key depended on 'winaltkeys'. Now it depends
84 on whether <F10> has been mapped or not. This allows mapping <F10> without 85 on whether <F10> has been mapped or not. This allows mapping <F10> without
85 changing 'winaltkeys'. 86 changing 'winaltkeys'.
1070 1071
1071 Use of sprintf() sometimes didn't check properly for buffer overflow. Also 1072 Use of sprintf() sometimes didn't check properly for buffer overflow. Also
1072 when using smsg(). Included code for snprintf() to avoid having to do size 1073 when using smsg(). Included code for snprintf() to avoid having to do size
1073 checks where invoking them 1074 checks where invoking them
1074 1075
1076 ":help \=<Tab>" didn't find "sub-replace-\=". Wild menu for help tags didn't
1077 show backslashes. ":he :s\=" didn't work.
1078
1079 When reading an errorfile "~/" in a file name was not expanded.
1080
1081 GTK GUI: When adding a scrollbar (e.g. when using ":vsplit") in a script or
1082 removing it the window size may change. GTK sends us resize events when we
1083 change the window size ourselves, but they may come at an unexpected moment.
1084 Peek for a character to get any window resize events and fix 'columns' and
1085 'lines' to undo this.
1086
1075 vim:tw=78:ts=8:ft=help:norl: 1087 vim:tw=78:ts=8:ft=help:norl: