From 27a3375be222aa2e13e0efcba9bbcf2a0c0d7a6b Mon Sep 17 00:00:00 2001 From: Wilhelm Kirschbaum Date: Mon, 30 Dec 2024 12:56:40 +0200 Subject: [PATCH] Update fontification for attribute values in heex-ts-mode Attribute values are strings as with html-ts-mode. * lisp/progmodes/heex-ts-mode.el (heex-ts--font-lock-settings): Change to attribute value to @font-lock-string-face. (Bug#75192) (cherry picked from commit 921f454f5087f16d9afc5574525baa92df91b8d0) --- lisp/progmodes/heex-ts-mode.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/progmodes/heex-ts-mode.el b/lisp/progmodes/heex-ts-mode.el index 2d41cdf4221..65aaa0d488d 100644 --- a/lisp/progmodes/heex-ts-mode.el +++ b/lisp/progmodes/heex-ts-mode.el @@ -118,7 +118,7 @@ `((special_attribute_name) @font-lock-keyword-face) :language 'heex :feature 'heex-string - `([(attribute_value) (quoted_attribute_value)] @font-lock-constant-face) + `([(attribute_value) (quoted_attribute_value)] @font-lock-string-face) :language 'heex :feature 'heex-component `([ -- 2.39.5