diff options
author | Dmitry Gutov <dgutov@yandex.ru> | 2023-01-06 16:17:50 +0200 |
---|---|---|
committer | Dmitry Gutov <dgutov@yandex.ru> | 2023-01-06 16:17:50 +0200 |
commit | 5ab03bcc433acbd0ce7126e40746efe092e0805a (patch) | |
tree | 796bbaf12fddd965be6fc98b5a489e3b9855d95a /lisp/progmodes/ruby-ts-mode.el | |
parent | 92e8c0c091cdb67b27fa271814614ba4cab478d6 (diff) | |
download | emacs-5ab03bcc433acbd0ce7126e40746efe092e0805a.tar.gz emacs-5ab03bcc433acbd0ce7126e40746efe092e0805a.tar.bz2 emacs-5ab03bcc433acbd0ce7126e40746efe092e0805a.zip |
Unify the string interpolation delimiters face across ts modes
* lisp/progmodes/js.el (js--treesit-font-lock-settings):
* lisp/progmodes/ruby-ts-mode.el (ruby-ts--font-lock-settings):
* lisp/progmodes/typescript-ts-mode.el
(typescript-ts-mode--font-lock-settings):
Use font-lock-misc-punctuation-face for string interpolation
delimiters.
Diffstat (limited to 'lisp/progmodes/ruby-ts-mode.el')
-rw-r--r-- | lisp/progmodes/ruby-ts-mode.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/progmodes/ruby-ts-mode.el b/lisp/progmodes/ruby-ts-mode.el index 87fd4ae535f..bf09726b34f 100644 --- a/lisp/progmodes/ruby-ts-mode.el +++ b/lisp/progmodes/ruby-ts-mode.el @@ -259,8 +259,8 @@ values of OVERRIDE" :language language :feature 'interpolation - '((interpolation "#{" @font-lock-delimiter-face) - (interpolation "}" @font-lock-delimiter-face)) + '((interpolation "#{" @font-lock-misc-punctuation-face) + (interpolation "}" @font-lock-misc-punctuation-face)) :language language :feature 'type |