From: Jostein Kjønigsen Date: Mon, 28 Nov 2022 15:05:27 +0000 (+0100) Subject: Improve fontification in typescript-ts-mode X-Git-Tag: emacs-29.0.90~1432^2~6 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2661c51953c3255d4e9ba014442ed78a546fd815;p=emacs.git Improve fontification in typescript-ts-mode - Restore method-name fontification. - Fontify all types in class-declarations, extendees too * lisp/progmodes/typescript-ts-mode.el (typescript-ts-mode--font-lock-settings): Change patterns. --- diff --git a/lisp/progmodes/typescript-ts-mode.el b/lisp/progmodes/typescript-ts-mode.el index bf483a31d34..6c926a4e3e0 100644 --- a/lisp/progmodes/typescript-ts-mode.el +++ b/lisp/progmodes/typescript-ts-mode.el @@ -150,12 +150,20 @@ (method_definition name: (property_identifier) @font-lock-function-name-face) + (required_parameter (identifier) @font-lock-variable-name-face) + (optional_parameter (identifier) @font-lock-variable-name-face) (variable_declarator name: (identifier) @font-lock-variable-name-face) (enum_declaration (identifier) @font-lock-type-face) + (extends_clause value: (identifier) @font-lock-type-face) + ;; extends React.Component + (extends_clause value: (member_expression + object: (identifier) @font-lock-type-face + property: (property_identifier) @font-lock-type-face)) + (arrow_function parameter: (identifier) @font-lock-variable-name-face) @@ -267,9 +275,7 @@ :language 'tsx :override t :feature 'property - `(((property_identifier) @font-lock-property-face) - - (pair value: (identifier) @font-lock-variable-name-face) + `((pair value: (identifier) @font-lock-variable-name-face) ((shorthand_property_identifier) @font-lock-property-face)