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