comparison runtime/doc/version7.txt @ 24:8ff7fd162d3c v7.0016

updated for version 7.0016
author vimboss
date Mon, 13 Sep 2004 20:26:32 +0000
parents 3f44e9abe4ec
children 404aac550f35
comparison
equal deleted inserted replaced
23:3f44e9abe4ec 24:8ff7fd162d3c
1 *version7.txt* For Vim version 7.0aa. Last change: 2004 Sep 06 1 *version7.txt* For Vim version 7.0aa. Last change: 2004 Sep 13
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
120 |:diffoff| Switch off diff mode in the current window or in all 120 |:diffoff| Switch off diff mode in the current window or in all
121 windows. 121 windows.
122 122
123 |:keepalt| Do not change the alternate file. 123 |:keepalt| Do not change the alternate file.
124 124
125 |:delmarks| Delete marks.
126
125 127
126 New functions: ~ 128 New functions: ~
127 129
128 byteidx(expr, nr) |byteidx()| Index of a character. (Ilya Sher) 130 byteidx(expr, nr) |byteidx()| Index of a character. (Ilya Sher)
129 finddir(name) |finddir()| Find a directory in 'path'. 131 finddir(name) |finddir()| Find a directory in 'path'.
133 Weibull) 135 Weibull)
134 getftype(fname) |getftype()| Get type of file. (Nikolai Weibull) 136 getftype(fname) |getftype()| Get type of file. (Nikolai Weibull)
135 repeat(expr, count) |repeat()| Repeat "expr" "count" times. 137 repeat(expr, count) |repeat()| Repeat "expr" "count" times.
136 (Christophe Poucet) 138 (Christophe Poucet)
137 tr(expr, from, to) |tr()| Translate characters. (Ron Aaron) 139 tr(expr, from, to) |tr()| Translate characters. (Ron Aaron)
140 system(cmd, input) |system()| Filters {input} through a shell
141 command.
138 142
139 143
140 New autocommand events: ~ 144 New autocommand events: ~
141 145
142 |InsertEnter| starting Insert or Replace mode 146 |InsertEnter| starting Insert or Replace mode
143 |InsertChange| going from Insert to Replace mode or back 147 |InsertChange| going from Insert to Replace mode or back
144 |InsertLeave| leaving Insert or Replace mode 148 |InsertLeave| leaving Insert or Replace mode
145 149
146 |ColorScheme| after loading a color scheme 150 |ColorScheme| after loading a color scheme
151
152
153 New items in search patterns: ~
154 |/\%d| \%d123 search for character with decimal number
155 |/\]| [\d123] idem, in a colletion
156 |/\%o| \%o103 search for character with octal number
157 |/\]| [\o1o3] idem, in a colletion
158 |/\%x| \%x1a search for character with 2 pos. hex number
159 |/\]| [\x1a] idem, in a colletion
160 |/\%u| \%u12ab search for character with 4 pos. hex number
161 |/\]| [\u12ab] idem, in a colletion
162 |/\%U| \%U1234abcd search for character with 8 pos. hex number
163 |/\]| [\U1234abcd] idem, in a colletion
164 (The above partly by Ciaran McCreesh)
147 165
148 166
149 New Syntax/Indent/FTplugin files: ~ 167 New Syntax/Indent/FTplugin files: ~
150 168
151 MuPAD source syntax, indent and ftplugin. (Dave Silvia) 169 MuPAD source syntax, indent and ftplugin. (Dave Silvia)
346 364
347 Win32: When 'encoding' is set to "utf-8" in the vimrc file, files from the 365 Win32: When 'encoding' is set to "utf-8" in the vimrc file, files from the
348 command line with non-ASCII characters are not used correctly. Recode the 366 command line with non-ASCII characters are not used correctly. Recode the
349 file names when 'encoding' is set, using the Unicode command line. 367 file names when 'encoding' is set, using the Unicode command line.
350 368
369 Win32 console: When the default for 'encoding' ends up to be "latin1", the
370 default value of 'isprint' was wrong.
371
372 When an error message is given while waiting for a character (e.g., when an
373 xterm reports the number of colors), the hit-enter prompt overwrote the last
374 line. Don't reset msg_didout in normal_cmd() for K_IGNORE.
375
351 vim:tw=78:ts=8:ft=help:norl: 376 vim:tw=78:ts=8:ft=help:norl: