From: Yuan Fu Date: Wed, 23 Nov 2022 02:47:47 +0000 (-0800) Subject: Tweak python-ts-mode fontification (bug#59470) X-Git-Tag: emacs-29.0.90~1582 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d2ab1c4a9af205bbeeaf5a0b6333797c18e43f86;p=emacs.git Tweak python-ts-mode fontification (bug#59470) * lisp/progmodes/python.el (python--treesit-settings): Only fontify the @ and the identifier of a decorator, not the argument list (if there is any). --- diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el index af59b8e1467..3a919c8cf20 100644 --- a/lisp/progmodes/python.el +++ b/lisp/progmodes/python.el @@ -1113,7 +1113,9 @@ fontified." :feature 'decorator :language 'python - '((decorator) @font-lock-type-face) + '((decorator "@" @font-lock-type-face) + (decorator (call function: (identifier) @font-lock-type-face)) + (decorator (identifier) @font-lock-type-face)) :feature 'type :language 'python