ruby-ts-mode: Use font-lock-constant-face for true/false/nil

* lisp/progmodes/ruby-ts-mode.el (ruby-ts--font-lock-settings):
Use font-lock-constant-face for true/false/nil.
This commit is contained in:
Dmitry Gutov 2023-01-19 05:43:10 +02:00
parent 819719330a
commit db72787380

View file

@ -220,9 +220,9 @@ values of OVERRIDE"
:language language
:feature 'constant
'((true) @font-lock-doc-markup-face
(false) @font-lock-doc-markup-face
(nil) @font-lock-doc-markup-face)
'((true) @font-lock-constant-face
(false) @font-lock-constant-face
(nil) @font-lock-constant-face)
;; Before 'operator so (unary) works.
:language language