summaryrefslogtreecommitdiff
path: root/src/testdir/test95.in
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2013-05-24 21:59:54 +0200
committerBram Moolenaar <Bram@vim.org>2013-05-24 21:59:54 +0200
commit3c577f26cd5d3b8252352d66396e85c4ebe1305d (patch)
tree4113e3d2398a7493c076b916e52e3082598ece2c /src/testdir/test95.in
parent1d814754c0f7c6ae913ed6549e8ac848c058ef1a (diff)
downloadvim-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.in4
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'])