File tree Expand file tree Collapse file tree 4 files changed +11
-1
lines changed
Expand file tree Collapse file tree 4 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 1+ Revision 3.6.0 (2015-11-XX):
2+
3+ - Fix 'async def' highlighting. Patch by Joongi Kim
4+
15Revision 3.5.0 (2015-06-10):
26
37 - Add support for 'async ...' and 'await' keywords introduced in
Original file line number Diff line number Diff line change @@ -138,6 +138,7 @@ List of the contributors in alphabetical order:
138138- `Ihor Gorobets <https://github.com/iho >`_
139139- `Jeroen Ruigrok van der Werven <https://github.com/ashemedai >`_
140140- `John Eikenberry <https://github.com/eikenb >`_
141+ - `Joongi Kim <https://github.com/achimnol >`_
141142- `Marc Weber <https://github.com/MarcWeber >`_
142143- `Pedro Algarvio <https://github.com/s0undt3ch >`_
143144- `Victor Salgado <https://github.com/mcsalgado >`_
Original file line number Diff line number Diff line change 3131" Ihor Gorobets
3232" Jeroen Ruigrok van der Werven
3333" John Eikenberry
34+ " Joongi Kim
3435" Marc Weber
3536" Pedro Algarvio
3637" Victor Salgado
179180 syn match pythonStatement " \< async\s\+ def\> " nextgroup =pythonFunction skipwhite
180181 syn match pythonStatement " \< async\s\+ with\> " display
181182 syn match pythonStatement " \< async\s\+ for\> " display
182- syn match pythonStatement " \< async\s\+ with\> " display
183183endif
184184
185185"
Original file line number Diff line number Diff line change @@ -18,6 +18,11 @@ class Classname
1818def функция
1919class Класс
2020
21+ await
22+ async def Test
23+ async with
24+ async for
25+
2126# Builtin objects.
2227
2328True False Ellipsis None NotImplemented
You can’t perform that action at this time.
0 commit comments