diff options
-rw-r--r-- | lisp/progmodes/typescript-ts-mode.el | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lisp/progmodes/typescript-ts-mode.el b/lisp/progmodes/typescript-ts-mode.el index 243f6146ae7..c4a5bd37e05 100644 --- a/lisp/progmodes/typescript-ts-mode.el +++ b/lisp/progmodes/typescript-ts-mode.el @@ -361,8 +361,7 @@ Argument LANGUAGE is either `typescript' or `tsx'." (setq-local treesit-font-lock-settings (typescript-ts-mode--font-lock-settings 'typescript)) (setq-local treesit-font-lock-feature-list - '((comment declaration) - (keyword string) + '((comment declaration keyword string escape-sequence) (constant expression identifier number pattern property) (bracket delimiter))) @@ -396,8 +395,7 @@ Argument LANGUAGE is either `typescript' or `tsx'." (setq-local treesit-font-lock-settings (typescript-ts-mode--font-lock-settings 'tsx)) (setq-local treesit-font-lock-feature-list - '((comment declaration) - (keyword string) + '((comment declaration keyword string escape-sequence) (constant expression identifier jsx number pattern property) (bracket delimiter))) |