diff options
author | Bram Moolenaar <Bram@vim.org> | 2018-03-18 14:44:37 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2018-03-18 14:44:37 +0100 |
commit | 98ef233e14faaaf42e0342da1803d493ce0337b2 (patch) | |
tree | b9cbd039bdc455aa054aa50d35ccd6bdaaeade84 /runtime/doc/pattern.txt | |
parent | 9ef2a30e6ff5830984b57dd3d682656789a7ad78 (diff) | |
download | vim-git-98ef233e14faaaf42e0342da1803d493ce0337b2.tar.gz |
Update runtime files. Convert a couple of help files to utf-8.
Diffstat (limited to 'runtime/doc/pattern.txt')
-rw-r--r-- | runtime/doc/pattern.txt | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/runtime/doc/pattern.txt b/runtime/doc/pattern.txt index a4d0d2e50..ead319c29 100644 --- a/runtime/doc/pattern.txt +++ b/runtime/doc/pattern.txt @@ -1,4 +1,4 @@ -*pattern.txt* For Vim version 8.0. Last change: 2018 Feb 04 +*pattern.txt* For Vim version 8.0. Last change: 2018 Mar 13 VIM REFERENCE MANUAL by Bram Moolenaar @@ -1166,7 +1166,8 @@ x A single character, with no special meaning, matches itself - Matching with a collection can be slow, because each character in the text has to be compared with each character in the collection. Use one of the other atoms above when possible. Example: "\d" is - much faster than "[0-9]" and matches the same characters. + much faster than "[0-9]" and matches the same characters. However, + the new |NFA| regexp engine deals with this better than the old one. */\%[]* *E69* *E70* *E369* \%[] A sequence of optionally matched atoms. This always matches. |