]> git.eshelyaron.com Git - emacs.git/commitdiff
Make python-ts-mode's syntax-highlighting more standardized
authorDmitry Gutov <dmitry@gutov.dev>
Thu, 23 Nov 2023 22:00:32 +0000 (00:00 +0200)
committerDmitry Gutov <dmitry@gutov.dev>
Thu, 23 Nov 2023 22:00:32 +0000 (00:00 +0200)
This was brought up in a Reddit discussion.

* lisp/progmodes/python.el (python--treesit-fontify-variable):
Use font-lock-variable-use-face (since it applies to references).
(python-ts-mode): Move 'property' from 3rd to 4th
treesit-font-lock-level.

lisp/progmodes/python.el

index e17651d9275a57f43f882435d12726f4e1014ddd..a794457619657ea4563681e010c38a37c3ab3752 100644 (file)
@@ -1225,7 +1225,7 @@ For NODE, OVERRIDE, START, END, and ARGS, see
   (when (python--treesit-variable-p node)
     (treesit-fontify-with-override
      (treesit-node-start node) (treesit-node-end node)
-     'font-lock-variable-name-face override start end)))
+     'font-lock-variable-use-face override start end)))
 
 \f
 ;;; Indentation
@@ -6717,8 +6717,8 @@ implementations: `python-mode' and `python-ts-mode'."
                 '(( comment definition)
                   ( keyword string type)
                   ( assignment builtin constant decorator
-                    escape-sequence number property string-interpolation )
-                  ( bracket delimiter function operator variable)))
+                    escape-sequence number string-interpolation )
+                  ( bracket delimiter function operator variable property)))
     (setq-local treesit-font-lock-settings python--treesit-settings)
     (setq-local imenu-create-index-function
                 #'python-imenu-treesit-create-index)