comparison runtime/doc/usr_27.txt @ 11:4424b47a0797

updated for version 7.0003
author vimboss
date Wed, 30 Jun 2004 16:16:41 +0000
parents 3fc0f57ecb91
children 8b0ee9d57d7f
comparison
equal deleted inserted replaced
10:4e2284e71352 11:4424b47a0797
1 *usr_27.txt* For Vim version 7.0aa. Last change: 2003 Oct 28 1 *usr_27.txt* For Vim version 7.0aa. Last change: 2004 Jun 26
2 2
3 VIM USER MANUAL - by Bram Moolenaar 3 VIM USER MANUAL - by Bram Moolenaar
4 4
5 Search commands and patterns 5 Search commands and patterns
6 6
302 302
303 Will match "ab" in "abbb". Actually, it will never match more than one b, 303 Will match "ab" in "abbb". Actually, it will never match more than one b,
304 because there is no reason to match more. It requires something else to force 304 because there is no reason to match more. It requires something else to force
305 it to match more than the lower limit. 305 it to match more than the lower limit.
306 The same rules apply to removing "n" and "m". It's even possible to remove 306 The same rules apply to removing "n" and "m". It's even possible to remove
307 both of the, resulting in "\{-}". This matches the item before it zero or 307 both of the numbes, resulting in "\{-}". This matches the item before it zero
308 more times, as few as possible. The item by itself always match zero times. 308 or more times, as few as possible. The item by itself always matches zero
309 It is useful when combined with something else. Example: > 309 times. It is useful when combined with something else. Example: >
310 310
311 /a.\{-}b 311 /a.\{-}b
312 312
313 This matches "axb" in "axbxb". If this pattern would be used: > 313 This matches "axb" in "axbxb". If this pattern would be used: >
314 314