Skip to content

Commit

Permalink
Make the test file valid perl.
Browse files Browse the repository at this point in the history
it's not really fair to expect Vim to correctly highlight invalid
syntax!
  • Loading branch information
Matt Boyle authored and petdance committed Sep 1, 2010
1 parent dc1f872 commit 65df2f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions 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;
Expand Down

0 comments on commit 65df2f4

Please sign in to comment.