From 60d47904bf974bd1ab9f401c6e4004fab0480454 Mon Sep 17 00:00:00 2001 From: Stephan Seitz Date: Thu, 20 Aug 2020 11:00:11 +0200 Subject: [PATCH] Python highlights: add additional operators This is applies the upstream PR to our repo: https://github.com/tree-sitter/tree-sitter-python/pull/73 --- queries/python/highlights.scm | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/queries/python/highlights.scm b/queries/python/highlights.scm index d8dcf0266..28110cd86 100644 --- a/queries/python/highlights.scm +++ b/queries/python/highlights.scm @@ -135,13 +135,16 @@ "//=" "/=" "&" + "&=" "%" "%=" "^" + "^=" "+" "+=" "<" "<<" + "<<=" "<=" "<>" "=" @@ -149,7 +152,11 @@ ">" ">=" ">>" + ">>=" + "@" + "@=" "|" + "|=" "~" "and" "in"