From 274f2e90da29401e978738f45cd7b1a44d0080ee Mon Sep 17 00:00:00 2001 From: Peter Tripp Date: Tue, 1 Jul 2025 12:12:46 -0400 Subject: [PATCH] Add support for more python operators (#33720) Closes: https://github.com/zed-industries/zed/issues/33683 | Before | After | | - | - | | Screenshot 2025-07-01 at 11 42 56 | Screenshot 2025-07-01 at 11 44 45 | Release Notes: - python: Properly highlight additional operators ("&=", "<<=", ">>=", "@=", "^=" and "|=") --- crates/languages/src/python/highlights.scm | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/crates/languages/src/python/highlights.scm b/crates/languages/src/python/highlights.scm index 97d5fb5275..77db9b2f4c 100644 --- a/crates/languages/src/python/highlights.scm +++ b/crates/languages/src/python/highlights.scm @@ -226,6 +226,12 @@ ">>" "|" "~" + "&=" + "<<=" + ">>=" + "@=" + "^=" + "|=" ] @operator [