diff options
Diffstat (limited to 'lua/lexers/python.lua')
| -rw-r--r-- | lua/lexers/python.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lua/lexers/python.lua b/lua/lexers/python.lua index 15d1684..63e2e82 100644 --- a/lua/lexers/python.lua +++ b/lua/lexers/python.lua @@ -33,6 +33,7 @@ local number = token(l.NUMBER, l.float + integer) -- Keywords. local keyword = token(l.KEYWORD, word_match{ + 'async', 'await', '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', |
