diff options
author | Bram Moolenaar <Bram@vim.org> | 2013-05-24 23:10:50 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2013-05-24 23:10:50 +0200 |
commit | fad8de084a568678ccb5e38c62618c6ae0f57bfe (patch) | |
tree | 7bb288dcfc45680c20a4509063f78480e7a7cd3a /src/testdir/test95.in | |
parent | 3c577f26cd5d3b8252352d66396e85c4ebe1305d (diff) | |
download | vim-fad8de084a568678ccb5e38c62618c6ae0f57bfe.zip |
updated for version 7.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.in | 9 |
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']) |