|
|
|
|
174
|
syn match pythonStatement "\<yield\s\+from\>" display
|
174
|
syn match pythonStatement "\<yield\s\+from\>" display
|
175
|
syn keyword pythonBoolean True False
|
175
|
syn keyword pythonBoolean True False
|
176
|
syn match pythonFunction "\%([^[:cntrl:][:space:][:punct:][:digit:]]\|_\)\%([^[:cntrl:][:punct:][:space:]]\|_\)*" display contained
|
176
|
syn match pythonFunction "\%([^[:cntrl:][:space:][:punct:][:digit:]]\|_\)\%([^[:cntrl:][:punct:][:space:]]\|_\)*" display contained
|
|
|
177
|
+ syn keyword pythonStatement await
|
|
|
178
|
+ syn match pythonStatement "\<async\s\+def\>" display
|
|
|
179
|
+ syn match pythonStatement "\<async\s\+with\>" display
|
|
|
180
|
+ syn match pythonStatement "\<async\s\+for\>" display
|
|
|
181
|
+ syn match pythonStatement "\<async\s\+with\>" display
|
177
|
endif
|
182
|
endif
|
178
|
|
183
|
|
179
|
"
|
184
|
"
|