* lisp/progmodes/rust-ts-mode.el (rust-ts-mode--font-lock-settings):
Remove the rule that highlighted scope identifier in a function call
as type. The existing rules will handle it when it does look like a
type (capitalized).
:language 'rust
:feature 'type
- `((call_expression
- function: (scoped_identifier
- path: (identifier) @font-lock-type-face))
- (enum_variant name: (identifier) @font-lock-type-face)
+ `((enum_variant name: (identifier) @font-lock-type-face)
(match_arm
pattern: (match_pattern (_ type: (identifier) @font-lock-type-face)))
(match_arm