comparison runtime/doc/version7.txt @ 38:c524f99c7925 v7.0022

updated for version 7.0022
author vimboss
date Sun, 12 Dec 2004 11:37:09 +0000
parents 125e80798a85
children 410fa1a31baf
comparison
equal deleted inserted replaced
37:fdf55076c53f 38:c524f99c7925
1 *version7.txt* For Vim version 7.0aa. Last change: 2004 Dec 09 1 *version7.txt* For Vim version 7.0aa. Last change: 2004 Dec 11
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
164 repeat(expr, count) |repeat()| Repeat "expr" "count" times. 164 repeat(expr, count) |repeat()| Repeat "expr" "count" times.
165 (Christophe Poucet) 165 (Christophe Poucet)
166 tr(expr, from, to) |tr()| Translate characters. (Ron Aaron) 166 tr(expr, from, to) |tr()| Translate characters. (Ron Aaron)
167 system(cmd, input) |system()| Filters {input} through a shell 167 system(cmd, input) |system()| Filters {input} through a shell
168 command. 168 command.
169 getfontname([name]) |getfontname()| Get actual font name being used.
169 170
170 171
171 New autocommand events: ~ 172 New autocommand events: ~
172 173
173 |InsertEnter| starting Insert or Replace mode 174 |InsertEnter| starting Insert or Replace mode
221 Also fixes the problem that setting 'clipboard' to "unnamed" breaks using 222 Also fixes the problem that setting 'clipboard' to "unnamed" breaks using
222 "yyp". 223 "yyp".
223 224
224 Mac: GUI font selector. (Peter "Rain Dog" Cucka) 225 Mac: GUI font selector. (Peter "Rain Dog" Cucka)
225 226
227 Mac: better integration with Xcode. Post a fake mouse-up event after the odoc
228 event and the drag receive handler to work around a stall after Vim loads a
229 file. Fixed an off-by-one line number error. (Da Woon Jung)
230
226 The netrw plugin now also supports viewing a directory, when "scp://" is used. 231 The netrw plugin now also supports viewing a directory, when "scp://" is used.
227 Deleting and renaming files is possible. (Charles Campbell) 232 Deleting and renaming files is possible. (Charles Campbell)
228 233
229 Added the t_SI and t_EI escape sequences for starting and ending Insert mode. 234 Added the t_SI and t_EI escape sequences for starting and ending Insert mode.
230 To be used to set the cursor shape to a bar or a block. No default values, 235 To be used to set the cursor shape to a bar or a block. No default values,
492 497
493 After "Y" '[ and '] were not at start/end of the yanked text. 498 After "Y" '[ and '] were not at start/end of the yanked text.
494 499
495 When a telnet connection is dropped Vim preserves files and exits. While 500 When a telnet connection is dropped Vim preserves files and exits. While
496 doing that a SIGHUP may arrive and disturbe us, thus ignore it. (Scott 501 doing that a SIGHUP may arrive and disturbe us, thus ignore it. (Scott
497 Anderson) Also postpone SIGHUP until it's safe to handle. Added 502 Anderson) Also postpone SIGHUP, SIGQUIT and SIGTERM until it's safe to
498 handle_sighup(). 503 handle. Added handle_signal().
504
505 When using "set laststatus=2 cmdheight=2" in the .gvimrc you may only get one
506 line for the cmdline. (Christian Robinson) Invoke command_height() after the
507 GUI has started up.
499 508
500 vim:tw=78:ts=8:ft=help:norl: 509 vim:tw=78:ts=8:ft=help:norl: