Unnamed repository; edit this file 'description' to name the repository.
Add `is not` and `not in` to python syntax (#10647)
| -rw-r--r-- | runtime/queries/python/highlights.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/runtime/queries/python/highlights.scm b/runtime/queries/python/highlights.scm index 0a082f2f..9f7d2790 100644 --- a/runtime/queries/python/highlights.scm +++ b/runtime/queries/python/highlights.scm @@ -215,9 +215,11 @@ [ "and" "or" + "not in" "in" "not" "del" + "is not" "is" ] @keyword.operator |