From 5e3ab2e73075ef01954c8d1cf9092541ad23a863 Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Sun, 2 Dec 2012 22:06:50 +0100 Subject: [PATCH] after/syntax/perl.vim: Fix regex for continue/break. --- vim/after/syntax/perl.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vim/after/syntax/perl.vim b/vim/after/syntax/perl.vim index 5cf6514..ebedc23 100644 --- a/vim/after/syntax/perl.vim +++ b/vim/after/syntax/perl.vim @@ -24,7 +24,7 @@ highlight link perlSharpBang SpecialComment " I never use continue and break, and always confuse them with next and last. -syntax match Error "\" +syntax match Error "\<\(continue\|break\)\>" " Highlight statement control keywords differently when my color scheme is " used. -- 2.43.2