comparison runtime/doc/version7.txt @ 29:ac33b7c03fac v7.0018

updated for version 7.0018
author vimboss
date Mon, 11 Oct 2004 10:16:09 +0000
parents 404aac550f35
children 41f9fd58cf13
comparison
equal deleted inserted replaced
28:726bdc53fa49 29:ac33b7c03fac
1 *version7.txt* For Vim version 7.0aa. Last change: 2004 Oct 07 1 *version7.txt* For Vim version 7.0aa. Last change: 2004 Oct 11
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
45 45
46 Removed the old and incomplete "VimBuddy" code. 46 Removed the old and incomplete "VimBuddy" code.
47 47
48 Buffers without a name report "No Name" instead of "No File". It was 48 Buffers without a name report "No Name" instead of "No File". It was
49 confusing for buffers with a name and 'buftype' set to "nofile". 49 confusing for buffers with a name and 'buftype' set to "nofile".
50
51 When ":file xxx" is used in a buffer without a name, the alternate file name
52 isn't set. This avoids creating buffers without a name that are not useful.
53
54 The "2html.vim" script now converts closed folds to HTML. This means the HTML
55 looks like its displayed, with the same folds open and closed. Use "zR" if no
56 folds should appear in the HTML. (partly by Carl Osterwisch)
50 57
51 ============================================================================== 58 ==============================================================================
52 NEW FEATURES *new-7* 59 NEW FEATURES *new-7*
53 60
54 New data types *new-data-types* 61 New data types *new-data-types*
122 129
123 |:keepalt| Do not change the alternate file. 130 |:keepalt| Do not change the alternate file.
124 131
125 |:delmarks| Delete marks. 132 |:delmarks| Delete marks.
126 133
134 |:sandbox| Command modifier: execute the argument in the sandbox.
135
127 136
128 New functions: ~ 137 New functions: ~
129 138
139 browsedir(title, init) |browsedir()| Dialog to select a directory.
130 byteidx(expr, nr) |byteidx()| Index of a character. (Ilya Sher) 140 byteidx(expr, nr) |byteidx()| Index of a character. (Ilya Sher)
131 finddir(name) |finddir()| Find a directory in 'path'. 141 finddir(name) |finddir()| Find a directory in 'path'.
132 findfile(name) |findfile()| Find a file in 'path'. (Johannes 142 findfile(name) |findfile()| Find a file in 'path'. (Johannes
133 Zellner) 143 Zellner)
144 foldtextresult(lnum) |foldtextresult()| The text displayed for a closed
145 fold at line "lnum".
134 getfperm(fname) |getfperm()| Get file permission string. (Nikolai 146 getfperm(fname) |getfperm()| Get file permission string. (Nikolai
135 Weibull) 147 Weibull)
136 getftype(fname) |getftype()| Get type of file. (Nikolai Weibull) 148 getftype(fname) |getftype()| Get type of file. (Nikolai Weibull)
137 repeat(expr, count) |repeat()| Repeat "expr" "count" times. 149 repeat(expr, count) |repeat()| Repeat "expr" "count" times.
138 (Christophe Poucet) 150 (Christophe Poucet)
394 console version. 406 console version.
395 407
396 Win32 GUI: latin9 text (iso-8859-15) was not displayed correctly, because 408 Win32 GUI: latin9 text (iso-8859-15) was not displayed correctly, because
397 there is no codepage for latin9. Do our own conversion from latin9 to UCS2. 409 there is no codepage for latin9. Do our own conversion from latin9 to UCS2.
398 410
411 When two versions of GTK+ 2 are installed it was possible to use the header
412 files from one and the library from the other. Use GTK_LIBDIR to put the
413 directory for the library early in the link flags.
414
415 With the GUI find/replace dialog a replace only worked if the pattern was
416 literal text. Now it works for any pattern.
417
399 vim:tw=78:ts=8:ft=help:norl: 418 vim:tw=78:ts=8:ft=help:norl: