Browse Source

Added nonlocal keyword

Dmitry Vasiliev 15 years ago
parent
commit
894f6d0fdd
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      python3.0.vim

+ 1
- 1
python3.0.vim View File

@@ -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