branch: elpa/rust-mode
commit ae9cbe81d7dd500f5e3347ad0c9a844173af9a31
Author: Wilfred Hughes <[email protected]>
Commit: GitHub <[email protected]>

    Add syntax highlighting for f16 and f128 types
    
    These types are part of RFC 3453: 
https://github.com/rust-lang/rust/issues/116909
---
 rust-prog-mode.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/rust-prog-mode.el b/rust-prog-mode.el
index 62639499c59..f2f3f0bc3ef 100644
--- a/rust-prog-mode.el
+++ b/rust-prog-mode.el
@@ -204,7 +204,8 @@ See `prettify-symbols-compose-predicate'."
     "u64" "i64"
     "u128" "i128"
 
-    "f32" "f64"
+    "f16" "f32"
+    "f64" "f128"
     "isize" "usize"
     "bool"
     "str" "char"))

Reply via email to