summaryrefslogtreecommitdiff
path: root/src/testdir/test64.in
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2013-09-25 18:16:38 +0200
committerBram Moolenaar <Bram@vim.org>2013-09-25 18:16:38 +0200
commitf211884fa151a3c39b1a85a115d6d88ce85bbe54 (patch)
treef0c0f08921f79390a278b9c15336fe4438b8c8ff /src/testdir/test64.in
parent699c12076de7d8811045cd2b98df78d7108b68ed (diff)
downloadvim-git-f211884fa151a3c39b1a85a115d6d88ce85bbe54.tar.gz
updated for version 7.4.037v7.4.037
Problem: Using "\ze" in a sub-pattern does not result in the end of the match to be set. (Axel Bender) Solution: Copy the end of match position when a recursive match was successful.
Diffstat (limited to 'src/testdir/test64.in')
-rw-r--r--src/testdir/test64.in1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/testdir/test64.in b/src/testdir/test64.in
index ef04ba26a..2df9a6b60 100644
--- a/src/testdir/test64.in
+++ b/src/testdir/test64.in
@@ -425,6 +425,7 @@ STARTTEST
:"
:" complicated look-behind match
:call add(tl, [2, '\(r\@<=\|\w\@<!\)\/', 'x = /word/;', '/'])
+:call add(tl, [2, '^[a-z]\+\ze \&\(asdf\)\@<!', 'foo bar', 'foo'])
:"
:""""" \@>
:call add(tl, [2, '\(a*\)\@>a', 'aaaa'])