From 894f6d0fdd2a337cc445f25ac5ef8cd89a68bbe0 Mon Sep 17 00:00:00 2001 From: Dmitry Vasiliev Date: Sat, 6 Dec 2008 14:19:56 +0300 Subject: [PATCH] Added nonlocal keyword --- python3.0.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python3.0.vim b/python3.0.vim index fb996d4..8dac59b 100644 --- a/python3.0.vim +++ b/python3.0.vim @@ -100,7 +100,7 @@ syn keyword pythonStatement exec return syn keyword pythonStatement pass raise syn keyword pythonStatement global assert syn keyword pythonStatement lambda yield -syn keyword pythonStatement with +syn keyword pythonStatement with nonlocal syn keyword pythonStatement def class nextgroup=pythonFunction skipwhite syn match pythonFunction "[a-zA-Z_][a-zA-Z0-9_]*" display contained syn keyword pythonRepeat for while