diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-04-21 08:53:19 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-04-21 08:53:19 +0200 |
commit | aa3b15dbebf333282503d6031e2f9ba6ee4398ed (patch) | |
tree | 8a1518d3ddce2596994d226aa11324211dc2402a /runtime/doc/pattern.txt | |
parent | 4445f7ee708f1a1304526a5979c9dd9883a92a0a (diff) | |
download | vim-git-aa3b15dbebf333282503d6031e2f9ba6ee4398ed.tar.gz |
Updated runtime files.
Diffstat (limited to 'runtime/doc/pattern.txt')
-rw-r--r-- | runtime/doc/pattern.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/doc/pattern.txt b/runtime/doc/pattern.txt index 9cb6e1186..e77c1c268 100644 --- a/runtime/doc/pattern.txt +++ b/runtime/doc/pattern.txt @@ -576,7 +576,7 @@ An atom can be followed by an indication of how many times the atom can be matched and in what way. This is called a multi. See |/multi| for an overview. - */star* */\star* *E56* + */star* */\star* * (use \* when 'magic' is not set) Matches 0 or more of the preceding atom, as many as possible. Example 'nomagic' matches ~ @@ -596,7 +596,7 @@ overview. the end of the file and then tries matching "END", backing up one character at a time. - */\+* *E57* + */\+* \+ Matches 1 or more of the preceding atom, as many as possible. {not in Vi} Example matches ~ @@ -612,7 +612,7 @@ overview. \? Just like \=. Cannot be used when searching backwards with the "?" command. {not in Vi} - */\{* *E58* *E60* *E554* *E870* + */\{* *E60* *E554* *E870* \{n,m} Matches n to m of the preceding atom, as many as possible \{n} Matches n of the preceding atom \{n,} Matches at least n of the preceding atom, as many as possible |