diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2016-05-15 22:50:17 -0400 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2016-05-15 22:50:17 -0400 |
commit | 71450b54aa22fd1d60e5b4d0929f254a56c8869d (patch) | |
tree | a12909d6ec1a9b5cd91ff79b8d43275ab16814de /runtime/doc/pattern.txt | |
parent | 082abb7ca6f45fa937a0377a5edc68929a1c08a9 (diff) | |
parent | 92fe357a523de1a4bed0c5778389dc7d669d29c4 (diff) | |
download | rneovim-71450b54aa22fd1d60e5b4d0929f254a56c8869d.tar.gz rneovim-71450b54aa22fd1d60e5b4d0929f254a56c8869d.tar.bz2 rneovim-71450b54aa22fd1d60e5b4d0929f254a56c8869d.zip |
Merge pull request #4743 from jamessan/vim-7.4.1037
vim-patch:7.4.1037,fa73534
Diffstat (limited to 'runtime/doc/pattern.txt')
-rw-r--r-- | runtime/doc/pattern.txt | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/runtime/doc/pattern.txt b/runtime/doc/pattern.txt index d7b16cc533..5897f756d8 100644 --- a/runtime/doc/pattern.txt +++ b/runtime/doc/pattern.txt @@ -1,4 +1,4 @@ -*pattern.txt* For Vim version 7.4. Last change: 2015 Dec 26 +*pattern.txt* For Vim version 7.4. Last change: 2016 Jan 03 VIM REFERENCE MANUAL by Bram Moolenaar @@ -1094,7 +1094,10 @@ x A single character, with no special meaning, matches itself plausible pattern for a Unix filename: "[-./[:alnum:]_~]\+" That is, a list of at least one character, each of which is either '-', '.', '/', alphabetic, numeric, '_' or '~'. - These items only work for 8-bit characters. + These items only work for 8-bit characters, except [:lower:] and + [:upper:] also work for multi-byte characters when using the new + regexp engine. In the future these items may work for multi-byte + characters. */[[=* *[==]* - An equivalence class. This means that characters are matched that have almost the same meaning, e.g., when ignoring accents. This |