From b0b24ad2fc579537e512f0c6654f35d4ca22a1b6 Mon Sep 17 00:00:00 2001 From: Randy Taylor Date: Fri, 10 Mar 2023 21:12:33 -0500 Subject: [PATCH] Add missing rust-ts-mode highlight query for scoped_type_identifiers * lisp/progmodes/rust-ts-mode.el (rust-ts-mode--font-lock-settings): Add missing query. --- lisp/progmodes/rust-ts-mode.el | 1 + 1 file changed, 1 insertion(+) diff --git a/lisp/progmodes/rust-ts-mode.el b/lisp/progmodes/rust-ts-mode.el index 696c2633231..5a4f4dc25c0 100644 --- a/lisp/progmodes/rust-ts-mode.el +++ b/lisp/progmodes/rust-ts-mode.el @@ -235,6 +235,7 @@ "^\\(u8\\|u16\\|u32\\|u64\\|u128\\|usize\\|i8\\|i16\\|i32\\|i64\\|i128\\|isize\\|char\\|str\\)$" @font-lock-type-face)) ((scoped_identifier path: (identifier) @rust-ts-mode--fontify-scope)) + ((scoped_type_identifier path: (identifier) @rust-ts-mode--fontify-scope)) (type_identifier) @font-lock-type-face) :language 'rust -- 2.39.5