From 1c6b4f75a006c4411d01a1234cabda3eb4aded1a Mon Sep 17 00:00:00 2001 From: Stanislav Seletskiy Date: Mon, 16 May 2016 09:32:05 +0600 Subject: [PATCH] fix 107: error, introduced in 47d343d --- syntax/snippets.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/syntax/snippets.vim b/syntax/snippets.vim index af79279..86fe65a 100644 --- a/syntax/snippets.vim +++ b/syntax/snippets.vim @@ -157,8 +157,8 @@ syn match snipPriorityValue "-\?\d\+" contained display " context {{{3 -syn match snipContext "^\%context.*$" contains=snipContextKeyword display skipwhite -syn match snipContextKeyword "\%context" contained nextgroup=snipContextValue skipwhite display +syn match snipContext "^context.*$" contains=snipContextKeyword display skipwhite +syn match snipContextKeyword "context" contained nextgroup=snipContextValue skipwhite display syn match snipContextValue '"[^"]*"' contained contains=snipContextValueP syn region snipContextValueP start=,"\@<=., end=,\ze", contained contains=@Python skipwhite keepend