]> git.eshelyaron.com Git - emacs.git/commitdiff
rust-ts-mode: Highlight variable declarations
authorDmitry Gutov <dgutov@yandex.ru>
Sun, 5 Feb 2023 16:49:24 +0000 (18:49 +0200)
committerDmitry Gutov <dgutov@yandex.ru>
Sun, 5 Feb 2023 16:50:23 +0000 (18:50 +0200)
(rust-ts-mode--font-lock-settings): Change scoped_type_identifier
highlight to match similar cases.  Highlight variable declarations
inside all kinds of destructuring patterns, not just function
definitions.
* lisp/progmodes/rust-ts-mode.el (rust-ts-mode--fontify-pattern):
Rename from 'rust-ts-mode--fontify-parameter'.  Check the id node's
parent to avoid touching type identifiers.

lisp/progmodes/rust-ts-mode.el

index f7a8a97cc5aaba8158a79bddb4eb5a38ad5ce60b..3beaa741605a2c6b2704d81bf8ac4377e0ad51c7 100644 (file)
      (macro_definition "macro_rules!" @font-lock-constant-face)
      (macro_definition (identifier) @font-lock-preprocessor-face)
      (field_declaration name: (field_identifier) @font-lock-property-face)
-     (parameter) @rust-ts-mode--fontify-parameter)
+     (parameter) @rust-ts-mode--fontify-pattern
+     (let_declaration) @rust-ts-mode--fontify-pattern
+     (for_expression) @rust-ts-mode--fontify-pattern
+     (let_condition) @rust-ts-mode--fontify-pattern
+     (match_arm) @rust-ts-mode--fontify-pattern)
 
    :language 'rust
    :feature 'function
               (scoped_identifier
                name: (identifier) @font-lock-type-face)])
       (:match "^[A-Z]" @font-lock-type-face))
-     (scoped_type_identifier path: (identifier) @font-lock-constant-face)
+     (scoped_type_identifier path: (identifier) @font-lock-type-face)
      (type_identifier) @font-lock-type-face
      (use_as_clause alias: (identifier) @font-lock-type-face)
      (use_list (identifier) @font-lock-type-face))
    '((ERROR) @font-lock-warning-face))
   "Tree-sitter font-lock settings for `rust-ts-mode'.")
 
-(defalias 'rust-ts-mode--fontify-parameter
+(defalias 'rust-ts-mode--fontify-pattern
   (and
    (treesit-available-p)
    `(lambda (node override start end &rest _)
       (let ((captures (treesit-query-capture
                        (treesit-node-child-by-field-name node "pattern")
-                       ,(treesit-query-compile 'rust '((identifier) @id)))))
+                       ,(treesit-query-compile 'rust '((identifier) @id
+                                                       (shorthand_field_identifier) @id)))))
         (pcase-dolist (`(_name . ,id) captures)
-          (treesit-fontify-with-override
-           (treesit-node-start id) (treesit-node-end id)
-           'font-lock-variable-name-face override start end))))))
+          (unless (string-match-p "\\`scoped_\\(?:type_\\)?identifier\\'"
+                                  (treesit-node-type
+                                   (treesit-node-parent id)))
+            (treesit-fontify-with-override
+             (treesit-node-start id) (treesit-node-end id)
+             'font-lock-variable-name-face override start end)))))))
 
 (defun rust-ts-mode--defun-name (node)
   "Return the defun name of NODE.