Bläddra i källkod

Added nonlocal keyword

Dmitry Vasiliev 15 år sedan
förälder
incheckning
894f6d0fdd
1 ändrade filer med 1 tillägg och 1 borttagningar
  1. 1
    1
      python3.0.vim

+ 1
- 1
python3.0.vim Visa fil

@@ -100,7 +100,7 @@ syn keyword pythonStatement	exec return
100 100
 syn keyword pythonStatement	pass raise
101 101
 syn keyword pythonStatement	global assert
102 102
 syn keyword pythonStatement	lambda yield
103
-syn keyword pythonStatement	with
103
+syn keyword pythonStatement	with nonlocal
104 104
 syn keyword pythonStatement	def class nextgroup=pythonFunction skipwhite
105 105
 syn match   pythonFunction	"[a-zA-Z_][a-zA-Z0-9_]*" display contained
106 106
 syn keyword pythonRepeat	for while