]> git.eshelyaron.com Git - emacs.git/commitdiff
Highlight more complex function parameters
authorDmitry Gutov <dgutov@yandex.ru>
Sun, 5 Feb 2023 14:43:59 +0000 (16:43 +0200)
committerDmitry Gutov <dgutov@yandex.ru>
Sun, 5 Feb 2023 14:44:32 +0000 (16:44 +0200)
* lisp/progmodes/rust-ts-mode.el
(rust-ts-mode--fontify-parameter): New function.
(rust-ts-mode--font-lock-settings): Use it.

lisp/progmodes/rust-ts-mode.el

index 5722d037bba0654df8113396eccce2616be1e3a8..e46fa0342dd9b6ba725b8d3a7674cf5640e5322e 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 pattern: (identifier) @font-lock-variable-name-face)
-     (parameter
-      pattern: (reference_pattern (identifier) @font-lock-variable-name-face)))
+     (parameter) @rust-ts-mode--fontify-parameter)
 
    :language 'rust
    :feature 'function
    '((ERROR) @font-lock-warning-face))
   "Tree-sitter font-lock settings for `rust-ts-mode'.")
 
+(defalias 'rust-ts-mode--fontify-parameter
+  (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)))))
+        (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))))))
+
 (defun rust-ts-mode--defun-name (node)
   "Return the defun name of NODE.
 Return nil if there is no name or if NODE is not a defun node."