|
@@ -31,6 +31,7 @@
|
31
|
31
|
" Ihor Gorobets
|
32
|
32
|
" Jeroen Ruigrok van der Werven
|
33
|
33
|
" John Eikenberry
|
|
34
|
+" Joongi Kim
|
34
|
35
|
" Marc Weber
|
35
|
36
|
" Pedro Algarvio
|
36
|
37
|
" Victor Salgado
|
|
@@ -176,10 +177,9 @@ else
|
176
|
177
|
syn keyword pythonBoolean True False
|
177
|
178
|
syn match pythonFunction "\%([^[:cntrl:][:space:][:punct:][:digit:]]\|_\)\%([^[:cntrl:][:punct:][:space:]]\|_\)*" display contained
|
178
|
179
|
syn keyword pythonStatement await
|
179
|
|
- syn match pythonStatement "\<async\s\+def\>" display
|
|
180
|
+ syn match pythonStatement "\<async\s\+def\>" nextgroup=pythonFunction skipwhite
|
180
|
181
|
syn match pythonStatement "\<async\s\+with\>" display
|
181
|
182
|
syn match pythonStatement "\<async\s\+for\>" display
|
182
|
|
- syn match pythonStatement "\<async\s\+with\>" display
|
183
|
183
|
endif
|
184
|
184
|
|
185
|
185
|
"
|