From: Yuan Fu Date: Sat, 18 Nov 2023 19:01:08 +0000 (-0800) Subject: Add missing python-ts-mode keyword (bug#67015) X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=da946ca6924b5ba1a1c785284406cf894aef12b5;p=emacs.git Add missing python-ts-mode keyword (bug#67015) * lisp/progmodes/python.el (python--treesit-keywords): Add "not in". --- diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el index d9ca37145e1..e17651d9275 100644 --- a/lisp/progmodes/python.el +++ b/lisp/progmodes/python.el @@ -969,7 +969,7 @@ It makes underscores and dots word constituent chars.") "raise" "return" "try" "while" "with" "yield" ;; These are technically operators, but we fontify them as ;; keywords. - "and" "in" "is" "not" "or")) + "and" "in" "is" "not" "or" "not in")) (defvar python--treesit-builtins '("abs" "all" "any" "ascii" "bin" "bool" "breakpoint" "bytearray"