Browse Source

Update CHANGES/README

Dmitry Vasiliev 8 years ago
parent
commit
2ed516d569
4 changed files with 11 additions and 1 deletions
  1. 4
    0
      CHANGES.txt
  2. 1
    0
      README.rst
  3. 1
    1
      syntax/python.vim
  4. 5
    0
      test.py

+ 4
- 0
CHANGES.txt View File

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

+ 1
- 0
README.rst View File

138
 - `Ihor Gorobets <https://github.com/iho>`_
138
 - `Ihor Gorobets <https://github.com/iho>`_
139
 - `Jeroen Ruigrok van der Werven <https://github.com/ashemedai>`_
139
 - `Jeroen Ruigrok van der Werven <https://github.com/ashemedai>`_
140
 - `John Eikenberry <https://github.com/eikenb>`_
140
 - `John Eikenberry <https://github.com/eikenb>`_
141
+- `Joongi Kim <https://github.com/achimnol>`_
141
 - `Marc Weber <https://github.com/MarcWeber>`_
142
 - `Marc Weber <https://github.com/MarcWeber>`_
142
 - `Pedro Algarvio <https://github.com/s0undt3ch>`_
143
 - `Pedro Algarvio <https://github.com/s0undt3ch>`_
143
 - `Victor Salgado <https://github.com/mcsalgado>`_
144
 - `Victor Salgado <https://github.com/mcsalgado>`_

+ 1
- 1
syntax/python.vim View File

31
 "   Ihor Gorobets
31
 "   Ihor Gorobets
32
 "   Jeroen Ruigrok van der Werven
32
 "   Jeroen Ruigrok van der Werven
33
 "   John Eikenberry
33
 "   John Eikenberry
34
+"   Joongi Kim
34
 "   Marc Weber
35
 "   Marc Weber
35
 "   Pedro Algarvio
36
 "   Pedro Algarvio
36
 "   Victor Salgado
37
 "   Victor Salgado
179
   syn match   pythonStatement   "\<async\s\+def\>" nextgroup=pythonFunction skipwhite
180
   syn match   pythonStatement   "\<async\s\+def\>" nextgroup=pythonFunction skipwhite
180
   syn match   pythonStatement   "\<async\s\+with\>" display
181
   syn match   pythonStatement   "\<async\s\+with\>" display
181
   syn match   pythonStatement   "\<async\s\+for\>" display
182
   syn match   pythonStatement   "\<async\s\+for\>" display
182
-  syn match   pythonStatement   "\<async\s\+with\>" display
183
 endif
183
 endif
184
 
184
 
185
 "
185
 "

+ 5
- 0
test.py View File

18
 def функция
18
 def функция
19
 class Класс
19
 class Класс
20
 
20
 
21
+await
22
+async def Test
23
+async with
24
+async for
25
+
21
 # Builtin objects.
26
 # Builtin objects.
22
 
27
 
23
 True False Ellipsis None NotImplemented
28
 True False Ellipsis None NotImplemented