atom / language-python

Python package for Atom
Other
190 stars 146 forks source link

Added async (line 851) #318

Closed ThatXliner closed 4 years ago

ThatXliner commented 4 years ago

Added keyword async:

 'illegal_names':
    'match': '\\b(and|as|assert|break|class|continue|def|del|elif|else|except|exec|finally|for|from|global|if|import|in|is|lambda|nonlocal|not|or|pass|print|raise|return|try|while|with|yield|await|async)\\b'
    'name': 'invalid.illegal.name.python'

Requirements

Description of the Change

Alternate Designs

Benefits

Possible Drawbacks

Code that already uses async as a variable name will be highlighted differently

Applicable Issues