1
0
mirror of https://github.com/gryf/python-syntax.git synced 2025-12-17 11:30:27 +01:00

Update CHANGES/README

This commit is contained in:
Dmitry Vasiliev
2015-11-01 18:41:08 +01:00
parent e4d992dc44
commit 2ed516d569
4 changed files with 11 additions and 1 deletions

View File

@@ -1,3 +1,7 @@
Revision 3.6.0 (2015-11-XX):
- Fix 'async def' highlighting. Patch by Joongi Kim
Revision 3.5.0 (2015-06-10): Revision 3.5.0 (2015-06-10):
- Add support for 'async ...' and 'await' keywords introduced in - Add support for 'async ...' and 'await' keywords introduced in

View File

@@ -138,6 +138,7 @@ List of the contributors in alphabetical order:
- `Ihor Gorobets <https://github.com/iho>`_ - `Ihor Gorobets <https://github.com/iho>`_
- `Jeroen Ruigrok van der Werven <https://github.com/ashemedai>`_ - `Jeroen Ruigrok van der Werven <https://github.com/ashemedai>`_
- `John Eikenberry <https://github.com/eikenb>`_ - `John Eikenberry <https://github.com/eikenb>`_
- `Joongi Kim <https://github.com/achimnol>`_
- `Marc Weber <https://github.com/MarcWeber>`_ - `Marc Weber <https://github.com/MarcWeber>`_
- `Pedro Algarvio <https://github.com/s0undt3ch>`_ - `Pedro Algarvio <https://github.com/s0undt3ch>`_
- `Victor Salgado <https://github.com/mcsalgado>`_ - `Victor Salgado <https://github.com/mcsalgado>`_

View File

@@ -31,6 +31,7 @@
" Ihor Gorobets " Ihor Gorobets
" Jeroen Ruigrok van der Werven " Jeroen Ruigrok van der Werven
" John Eikenberry " John Eikenberry
" Joongi Kim
" Marc Weber " Marc Weber
" Pedro Algarvio " Pedro Algarvio
" Victor Salgado " Victor Salgado
@@ -179,7 +180,6 @@ else
syn match pythonStatement "\<async\s\+def\>" nextgroup=pythonFunction skipwhite syn match pythonStatement "\<async\s\+def\>" nextgroup=pythonFunction skipwhite
syn match pythonStatement "\<async\s\+with\>" display syn match pythonStatement "\<async\s\+with\>" display
syn match pythonStatement "\<async\s\+for\>" display syn match pythonStatement "\<async\s\+for\>" display
syn match pythonStatement "\<async\s\+with\>" display
endif endif
" "

View File

@@ -18,6 +18,11 @@ class Classname
def функция def функция
class Класс class Класс
await
async def Test
async with
async for
# Builtin objects. # Builtin objects.
True False Ellipsis None NotImplemented True False Ellipsis None NotImplemented