From 34cfb93992fc07d6dc1d2d9cb27e4d2b264cbcfb Mon Sep 17 00:00:00 2001 From: nverno Date: Sun, 12 Nov 2023 11:36:09 -0800 Subject: [PATCH] Fix font-lock for string escapes in lua-ts--font-lock-settings --- lisp/progmodes/lua-ts-mode.el | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/lisp/progmodes/lua-ts-mode.el b/lisp/progmodes/lua-ts-mode.el index 2193779b759..bb6d5cb8c91 100644 --- a/lisp/progmodes/lua-ts-mode.el +++ b/lisp/progmodes/lua-ts-mode.el @@ -148,10 +148,6 @@ lua-ts--font-lock-settings :feature 'delimiter '(["," ";"] @font-lock-delimiter-face) - :language 'lua - :feature 'escape - '((escape_sequence) @font-lock-escape-face) - :language 'lua :feature 'constant '((variable_list @@ -213,6 +209,11 @@ lua-ts--font-lock-settings :feature 'string '((string) @font-lock-string-face) + :language 'lua + :feature 'escape + :override t + '((escape_sequence) @font-lock-escape-face) + :language 'lua :feature 'comment '((comment) @font-lock-comment-face -- 2.34.1