From: Noah Peart Date: Fri, 19 Apr 2024 01:52:06 +0000 (-0700) Subject: Improve function signature font-lock rust-ts-mode (bug#70465) X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=91552f920782eff23a2c65d57747e2d5f1b19947;p=emacs.git Improve function signature font-lock rust-ts-mode (bug#70465) * lisp/progmodes/rust-ts-mode.el (rust-ts-mode--font-lock-settings): Add font-lock rule for Rust function signatures and missing function modifier keyword 'default'. (cherry picked from commit 91cad6df73e5d64ae5621baa8e01a295433e1e55) --- diff --git a/lisp/progmodes/rust-ts-mode.el b/lisp/progmodes/rust-ts-mode.el index 7112ceced57..92978db64af 100644 --- a/lisp/progmodes/rust-ts-mode.el +++ b/lisp/progmodes/rust-ts-mode.el @@ -129,7 +129,7 @@ to be checked as its standard input." "Rust built-in macros for tree-sitter font-locking.") (defvar rust-ts-mode--keywords - '("as" "async" "await" "break" "const" "continue" "dyn" "else" + '("as" "async" "await" "break" "const" "continue" "default" "dyn" "else" "enum" "extern" "fn" "for" "if" "impl" "in" "let" "loop" "match" "mod" "move" "pub" "ref" "return" "static" "struct" "trait" "type" "union" "unsafe" "use" "where" "while" (crate) (self) (super) @@ -176,6 +176,7 @@ to be checked as its standard input." :language 'rust :feature 'definition '((function_item name: (identifier) @font-lock-function-name-face) + (function_signature_item name: (identifier) @font-lock-function-name-face) (macro_definition "macro_rules!" @font-lock-constant-face) (macro_definition (identifier) @font-lock-preprocessor-face) (field_declaration name: (field_identifier) @font-lock-property-name-face)