Highlights(python): Add @keyword.function

Use `@keyword.function` for `def` and `lambda`
This commit is contained in:
Sergio Alejandro Vargas 2021-06-17 13:33:53 -05:00 committed by Stephan Seitz
parent 3413581b58
commit 017760113a

View file

@ -195,17 +195,20 @@
"del"
] @keyword.operator
[
"def"
"lambda"
] @keyword.function
[
"assert"
"async"
"await"
"class"
"def"
"except"
"exec"
"finally"
"global"
"lambda"
"nonlocal"
"pass"
"print"