diff options
author | Bram Moolenaar <Bram@vim.org> | 2004-06-30 16:16:41 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2004-06-30 16:16:41 +0000 |
commit | 843ee41eb8258ac50ed81976757d8b228382a880 (patch) | |
tree | d0fcdff9e19b05b182de1bb1be46b2e6f5b8b0b7 /runtime/doc/usr_27.txt | |
parent | f4b8e57ffd048f9ca46dd7618939ba7a1b2294ec (diff) | |
download | vim-843ee41eb8258ac50ed81976757d8b228382a880.zip |
updated for version 7.0003
Diffstat (limited to 'runtime/doc/usr_27.txt')
-rw-r--r-- | runtime/doc/usr_27.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/runtime/doc/usr_27.txt b/runtime/doc/usr_27.txt index 46fb19070..82d17b215 100644 --- a/runtime/doc/usr_27.txt +++ b/runtime/doc/usr_27.txt @@ -1,4 +1,4 @@ -*usr_27.txt* For Vim version 7.0aa. Last change: 2003 Oct 28 +*usr_27.txt* For Vim version 7.0aa. Last change: 2004 Jun 26 VIM USER MANUAL - by Bram Moolenaar @@ -304,9 +304,9 @@ Will match "ab" in "abbb". Actually, it will never match more than one b, because there is no reason to match more. It requires something else to force it to match more than the lower limit. The same rules apply to removing "n" and "m". It's even possible to remove -both of the, resulting in "\{-}". This matches the item before it zero or -more times, as few as possible. The item by itself always match zero times. -It is useful when combined with something else. Example: > +both of the numbes, resulting in "\{-}". This matches the item before it zero +or more times, as few as possible. The item by itself always matches zero +times. It is useful when combined with something else. Example: > /a.\{-}b |