diff options
author | Bram Moolenaar <Bram@vim.org> | 2013-05-24 21:59:54 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2013-05-24 21:59:54 +0200 |
commit | 3c577f26cd5d3b8252352d66396e85c4ebe1305d (patch) | |
tree | 4113e3d2398a7493c076b916e52e3082598ece2c /src/testdir/test95.in | |
parent | 1d814754c0f7c6ae913ed6549e8ac848c058ef1a (diff) | |
download | vim-git-3c577f26cd5d3b8252352d66396e85c4ebe1305d.tar.gz |
updated for version 7.3.1011v7.3.1011
Problem: New regexp engine is inefficient with multi-byte characters.
Solution: Handle a character at a time instead of a byte at a time. Also
make \Z partly work.
Diffstat (limited to 'src/testdir/test95.in')
-rw-r--r-- | src/testdir/test95.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/testdir/test95.in b/src/testdir/test95.in index e332b9708..3451cc511 100644 --- a/src/testdir/test95.in +++ b/src/testdir/test95.in @@ -35,6 +35,10 @@ STARTTEST :call add(tl, ['\f\+', '&*fname ', 'fname']) :call add(tl, ['\%#=1\f\+', '&*fname ', 'fname']) +:"""" Test composing character matching +:call add(tl, ['.ม', 'xม่x yมy', 'yม']) +:call add(tl, ['.ม่', 'xม่x yมy', 'xม่']) + :"""" Test \Z :call add(tl, ['ú\Z', 'x']) |