summaryrefslogtreecommitdiff
path: root/src/testdir/test95.in
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2013-05-24 23:10:50 +0200
committerBram Moolenaar <Bram@vim.org>2013-05-24 23:10:50 +0200
commitfad8de084a568678ccb5e38c62618c6ae0f57bfe (patch)
tree7bb288dcfc45680c20a4509063f78480e7a7cd3a /src/testdir/test95.in
parent3c577f26cd5d3b8252352d66396e85c4ebe1305d (diff)
downloadvim-git-fad8de084a568678ccb5e38c62618c6ae0f57bfe.tar.gz
updated for version 7.3.1012v7.3.1012
Problem: \Z does not work properly with the new regexp engine. Solution: Make \Z work. Add tests.
Diffstat (limited to 'src/testdir/test95.in')
-rw-r--r--src/testdir/test95.in9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/testdir/test95.in b/src/testdir/test95.in
index 3451cc511..5e4822051 100644
--- a/src/testdir/test95.in
+++ b/src/testdir/test95.in
@@ -41,6 +41,15 @@ STARTTEST
:"""" Test \Z
:call add(tl, ['ú\Z', 'x'])
+:call add(tl, ['יהוה\Z', 'יהוה', 'יהוה'])
+:call add(tl, ['יְהוָה\Z', 'יהוה', 'יהוה'])
+:call add(tl, ['יהוה\Z', 'יְהוָה', 'יְהוָה'])
+:call add(tl, ['יְהוָה\Z', 'יְהוָה', 'יְהוָה'])
+:call add(tl, ['יְ\Z', 'וְיַ', 'יַ'])
+:call add(tl, ["ק\u200d\u05b9x\\Z", "xק\u200d\u05b9xy", "ק\u200d\u05b9x"])
+:call add(tl, ["ק\u200d\u05b9x\\Z", "xק\u200dxy", "ק\u200dx"])
+:call add(tl, ["ק\u200dx\\Z", "xק\u200d\u05b9xy", "ק\u200d\u05b9x"])
+:call add(tl, ["ק\u200dx\\Z", "xק\u200dxy", "ק\u200dx"])
:"""" Combining different tests and features
:call add(tl, ['[^[=a=]]\+', 'ddaãâbcd', 'dd'])