]> git.eshelyaron.com Git - emacs.git/commitdiff
ruby-ts-mode: Highlight variable assignments
authorPerry Smith <pedz@easesoftware.com>
Fri, 6 Jan 2023 02:20:02 +0000 (04:20 +0200)
committerDmitry Gutov <dgutov@yandex.ru>
Fri, 6 Jan 2023 02:25:05 +0000 (04:25 +0200)
* lisp/progmodes/ruby-ts-mode.el (ruby-ts--font-lock-settings):
Bring back the 'assignment' feature.
(ruby-ts-mode): Replace the unused 'variable' with 'assignment'.  Use
the level 3 for consistency with other ts modes.
Update the Commentary as well.

lisp/progmodes/ruby-ts-mode.el

index e7087e06d85cf5490733c83b9411ea42ea013c35..9416b650eb1668afd1e19bd3b18f982f93df930e 100644 (file)
@@ -55,7 +55,7 @@
 ;;   3: builtin-variable builtin-constant constant
 ;;      delimiter escape-sequence
 ;;      global instance
-;;      interpolation literal symbol variable
+;;      interpolation literal symbol assignment
 ;;   4: bracket error function operator punctuation
 
 ;; Thus if treesit-font-lock-level is set to level 3 which is its
@@ -298,6 +298,15 @@ values of OVERRIDE"
    '((call
       method: (identifier) @font-lock-function-name-face))
 
+   :language language
+   :feature 'assignment
+   '((assignment
+      left: (identifier) @font-lock-variable-name-face)
+     (assignment
+      left: (left_assignment_list (identifier) @font-lock-variable-name-face))
+     (operator_assignment
+      left: (identifier) @font-lock-variable-name-face))
+
    :language language
    :feature 'error
    '((ERROR) @font-lock-warning-face)
@@ -932,7 +941,7 @@ leading double colon is not added."
                 ( builtin-variable builtin-constant constant
                   delimiter escape-sequence
                   global instance
-                  interpolation literal symbol variable)
+                  interpolation literal symbol assignment)
                 ( bracket error function operator punctuation)))
 
   (treesit-major-mode-setup))