From 65df2f426a2ab87a6ec5d78288d6f185c34f94e0 Mon Sep 17 00:00:00 2001 From: Matt Boyle Date: Wed, 1 Sep 2010 20:20:16 +0800 Subject: [PATCH] Make the test file valid perl. it's not really fair to expect Vim to correctly highlight invalid syntax! --- t_source/perl/basic.t | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/t_source/perl/basic.t b/t_source/perl/basic.t index 160b6739..be93ce5f 100644 --- a/t_source/perl/basic.t +++ b/t_source/perl/basic.t @@ -1,6 +1,6 @@ my $escaped_fixed = "lol is \"lol\""; -my $escaped_fixed = q(lol is (\)); -my $escaped_fixed = qq(lol is (\)); +my $escaped_fixed = q(lol is (\))); +my $escaped_fixed = qq(lol is (\))); my $escaped_fixed = qr(\((.)\)); # this really is ok, not sure how to match balanced ()s in vim-syntax-lingo though package Dummy;