]> code.delx.au - gnu-emacs/commitdiff
Fixup the "normal" matcher; highlight global var symbols, too
authorDmitry Gutov <dgutov@yandex.ru>
Fri, 18 Mar 2016 22:37:09 +0000 (00:37 +0200)
committerDmitry Gutov <dgutov@yandex.ru>
Fri, 18 Mar 2016 22:37:54 +0000 (00:37 +0200)
* lisp/progmodes/ruby-mode.el (ruby-font-lock-keywords): Highlight
operator name symbols with the "normal" matcher (it actually
needed updating).  Highlight global variable symbols, too.

lisp/progmodes/ruby-mode.el

index 2389f742937261b3d338b4920097fe652f0a6827..972bf99145e392d8d3380d07d0f3b2a9d031bf4e 100644 (file)
@@ -2173,7 +2173,7 @@ See `font-lock-syntax-table'.")
           'font-lock-string-face)))
     ;; Perl-ish keywords.
     "\\_<\\(?:BEGIN\\|END\\)\\_>\\|^__END__$"
-    ;; Variables.
+    ;; Singleton objects.
     (,(concat ruby-font-lock-keyword-beg-re
               "\\_<\\(nil\\|true\\|false\\)\\_>")
      1 font-lock-constant-face)
@@ -2181,7 +2181,7 @@ See `font-lock-syntax-table'.")
     ("\\_<__\\(?:LINE\\|ENCODING\\|FILE\\)__\\_>"
      (0 font-lock-builtin-face))
     ;; Symbols.
-    ("\\(^\\|[^:]\\)\\(:@?\\(?:\\w\\|_\\)+\\)\\([!?=]\\)?"
+    ("\\(^\\|[^:]\\)\\(:@\\{0,2\\}\\(?:\\sw\\|\\s_\\)+\\)"
      (2 font-lock-constant-face)
      (3 (unless (and (eq (char-before (match-end 3)) ?=)
                      (eq (char-after (match-end 3)) ?>))