1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-29 07:58:28 +00:00

Add missing python-ts-mode keyword (bug#67015)

* lisp/progmodes/python.el (python--treesit-keywords): Add "not in".
This commit is contained in:
Yuan Fu 2023-11-18 11:01:08 -08:00
parent 0128495afd
commit da946ca692
No known key found for this signature in database
GPG Key ID: 56E19BC57664A442

View File

@ -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"