Python highlights: add additional operators

This is applies the upstream PR to our repo:
https://github.com/tree-sitter/tree-sitter-python/pull/73
This commit is contained in:
Stephan Seitz 2020-08-20 11:00:11 +02:00 committed by Kiyan Yazdani
parent d2538ab7a7
commit 5c0ca925af

View file

@ -131,13 +131,16 @@
"//="
"/="
"&"
"&="
"%"
"%="
"^"
"^="
"+"
"+="
"<"
"<<"
"<<="
"<="
"<>"
"="
@ -145,7 +148,11 @@
">"
">="
">>"
">>="
"@"
"@="
"|"
"|="
"~"
"and"
"in"