From e03dfc616430c24ebceeeff1b2dffaa084b5a1a6 Mon Sep 17 00:00:00 2001 From: Shiva Kiran Koninty Date: Mon, 13 Apr 2026 17:40:19 +0530 Subject: [PATCH] Add keyword `raw` Append the keywords list to Include the raw borrow operator, stabilized in Rust 2024. https://doc.rust-lang.org/reference/expressions/operator-expr.html#raw-borrow-operators --- rust-prog-mode.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust-prog-mode.el b/rust-prog-mode.el index f2f3f0b..f2538ab 100644 --- a/rust-prog-mode.el +++ b/rust-prog-mode.el @@ -188,7 +188,7 @@ See `prettify-symbols-compose-predicate'." "let" "loop" "match" "mod" "move" "mut" "priv" "pub" - "ref" "return" + "raw" "ref" "return" "self" "static" "struct" "super" "true" "trait" "type" "try" "use"